MSM_Sitemap_Builder_Cron::sitemap_create_status PHP Method

sitemap_create_status() public static method

Hooked into the msm_sitemap_create_status filter.
public static sitemap_create_status ( string $status ) : string
$status string The status text to show the user on the admin page.
return string The status text.
    public static function sitemap_create_status($status)
    {
        if (get_option('msm_stop_processing') === true && get_option('msm_sitemap_create_in_progress') === true) {
            return __('Halting', 'metro-sitemaps');
        }
        return $status;
    }