Action_Scheduler\Migration

Controller::has_custom_datastore()publicWC 1.0

Get flag indicating whether a custom datastore is in use.

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

Хуков нет.

Возвращает

true|false.

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

$Controller = new Controller();
$Controller->has_custom_datastore();

Код Controller::has_custom_datastore() WC 8.7.0

public function has_custom_datastore() {
	return (bool) $this->store_classname;
}