WC_Background_Emailer::__construct() public WC 1.0
Initiate new background process.
{} Это метод класса: WC_Background_Emailer{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$WC_Background_Emailer = new WC_Background_Emailer(); $WC_Background_Emailer->__construct();
Код WC_Background_Emailer::__construct() WC Background Emailer:: construct WC 5.0.0
public function __construct() {
// Uses unique prefix per blog so each blog has separate queue.
$this->prefix = 'wp_' . get_current_blog_id();
$this->action = 'wc_emailer';
// Dispatch queue after shutdown.
add_action( 'shutdown', array( $this, 'dispatch_queue' ), 100 );
parent::__construct();
}