WP_Background_Process::__construct() public WC 1.0
Initiate new background process
{} Это метод класса: WP_Background_Process{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$WP_Background_Process = new WP_Background_Process(); $WP_Background_Process->__construct();
Код WP_Background_Process::__construct() WP Background Process:: construct WC 5.0.0
public function __construct() {
parent::__construct();
$this->cron_hook_identifier = $this->identifier . '_cron';
$this->cron_interval_identifier = $this->identifier . '_cron_interval';
add_action( $this->cron_hook_identifier, array( $this, 'handle_cron_healthcheck' ) );
add_filter( 'cron_schedules', array( $this, 'schedule_cron_healthcheck' ) );
}