Admin_Apple_Async::__construct PHP Метод

__construct() публичный Метод

Constructor.
public __construct ( $settings )
    function __construct($settings)
    {
        $this->settings = $settings;
        // If async mode is enabled create the action hook
        if ('yes' === $settings->get('api_async')) {
            add_action(self::ASYNC_PUSH_HOOK, array($this, 'async_push'), 10, 2);
            // If we're on VIP, set async mode to use the jobs system
            if (defined('WPCOM_IS_VIP_ENV') && true === WPCOM_IS_VIP_ENV) {
                add_filter('wpcom_vip_passthrough_cron_to_jobs', array($this, 'passthrough_cron_to_jobs'));
            }
        }
    }