Admin_Apple_Settings_Section_API::get_async_description PHP Метод

get_async_description() приватный Метод

Generates the description for the async field since this varies by environment.
private get_async_description ( ) : string
Результат string
    private function get_async_description()
    {
        if (defined('WPCOM_IS_VIP_ENV') && true === WPCOM_IS_VIP_ENV) {
            $system = __('the WordPress VIP jobs system', 'apple-news');
        } else {
            $system = __('a single scheduled event', 'apple-news');
        }
        return sprintf(__('This will cause publishing to happen asynchronously using %s.', 'apple_news'), $system);
    }