ActionScheduler_ActionFactory::store()
Save action to database.
Метод класса: ActionScheduler_ActionFactory{}
Хуков нет.
Возвращает
int
. The ID of the stored action
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->store( $action );
- $action(ActionScheduler_Action) (обязательный)
- Action object to save.
Код ActionScheduler_ActionFactory::store() ActionScheduler ActionFactory::store WC 9.2.3
protected function store( ActionScheduler_Action $action ) { $store = ActionScheduler_Store::instance(); return $store->save_action( $action ); }