Action_Scheduler\Migration

Controller::init()public staticWC 1.0

Proceed with the migration if the dependencies have been met.

Метод класса: Controller{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = Controller::init();

Код Controller::init() WC 8.7.0

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