Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: site_status_tests

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
2417            *             @type bool     $has_rest          Whether the `$test` property points to a REST API endpoint.
2418            *             @type bool     $skip_cron         Whether to skip this test when running as cron.
2419            *             @type callable $async_direct_test A manner of directly calling the test marked as asynchronous,
2420            *                                               as the scheduled event can not authenticate, and endpoints
2421            *                                               may require authentication.
2422            *         }
2423            *     }
2424            * }
2425            */
2426           $tests = apply_filters( 'site_status_tests', $tests );
2427
2428           // Ensure that the filtered tests contain the required array keys.
2429           $tests = array_merge(
2430                array(
2431                     'direct' => array(),
2432                     'async'  => array(),
2433                ),
2434                $tests
2435           );