Action_Scheduler\Migration

Controller::init()public staticWC 1.0

Proceed with the migration if the dependencies have been met.

Method of the class: Controller{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = Controller::init();

Controller::init() code WC 8.7.0

public static function init() {
	if ( \ActionScheduler_DataController::dependencies_met() ) {
		self::instance()->hook();
	}
}