Submit
Path:
~
/
home
/
getwphos
/
public_html
/
ccma
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
integrations
/
admin
/
File Content:
health-check-integration.php
<?php namespace Yoast\WP\SEO\Integrations\Admin; use Yoast\WP\SEO\Conditionals\Admin_Conditional; use Yoast\WP\SEO\Integrations\Integration_Interface; use Yoast\WP\SEO\Services\Health_Check\Health_Check; /** * Integrates health checks with WordPress' Site Health. */ class Health_Check_Integration implements Integration_Interface { /** * Contains all the health check implementations. * * @var Health_Check[] */ private $health_checks = []; /** * Uses the dependency injection container to obtain all available implementations of the Health_Check interface. * * @param Health_Check ...$health_checks The available health checks implementations. */ public function __construct( Health_Check ...$health_checks ) { $this->health_checks = $health_checks; } /** * Hooks the health checks into WordPress' site status tests. * * @return void */ public function register_hooks() { \add_filter( 'site_status_tests', [ $this, 'add_health_checks' ] ); } /** * Returns the conditionals based on which this loadable should be active. * * In this case: only when on an admin page. * * @return array The conditionals. */ public static function get_conditionals() { return [ Admin_Conditional::class ]; } /** * Checks if the input is a WordPress site status tests array, and adds Yoast's health checks if it is. * * @param string[] $tests Array containing WordPress site status tests. * @return string[] Array containing WordPress site status tests with Yoast's health checks. */ public function add_health_checks( $tests ) { if ( ! $this->is_valid_site_status_tests_array( $tests ) ) { return $tests; } return $this->add_health_checks_to_site_status_tests( $tests ); } /** * Checks if the input array is a WordPress site status tests array. * * @param mixed $tests Array to check. * @return bool Returns true if the input array is a WordPress site status tests array. */ private function is_valid_site_status_tests_array( $tests ) { if ( ! \is_array( $tests ) ) { return false; } if ( ! \array_key_exists( 'direct', $tests ) ) { return false; } if ( ! \is_array( $tests['direct'] ) ) { return false; } return true; } /** * Adds the health checks to WordPress' site status tests. * * @param string[] $tests Array containing WordPress site status tests. * @return string[] Array containing WordPress site status tests with Yoast's health checks. */ private function add_health_checks_to_site_status_tests( $tests ) { foreach ( $this->health_checks as $health_check ) { $tests['direct'][ $health_check->get_test_identifier() ] = [ 'test' => [ $health_check, 'run_and_get_result' ], ]; } return $tests; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
addon-installation
---
0755
activation-cleanup-integration.php
1520 bytes
0644
admin-columns-cache-integration.php
7778 bytes
0644
background-indexing-integration.php
13491 bytes
0644
crawl-settings-integration.php
11152 bytes
0644
cron-integration.php
1005 bytes
0644
deactivated-premium-integration.php
4338 bytes
0644
disable-concatenate-scripts-integration.php
1027 bytes
0644
first-time-configuration-integration.php
15506 bytes
0644
first-time-configuration-notice-integration.php
5140 bytes
0644
fix-news-dependencies-integration.php
1589 bytes
0644
health-check-integration.php
2750 bytes
0644
helpscout-beacon.php
13077 bytes
0644
import-integration.php
8838 bytes
0644
indexables-exclude-taxonomy-integration.php
1419 bytes
0644
indexing-notification-integration.php
7112 bytes
0644
indexing-tool-integration.php
7460 bytes
0644
installation-success-integration.php
4031 bytes
0644
integrations-page.php
9493 bytes
0644
link-count-columns-integration.php
7819 bytes
0644
menu-badge-integration.php
916 bytes
0644
migration-error-integration.php
1379 bytes
0644
old-configuration-integration.php
1655 bytes
0644
redirect-integration.php
1763 bytes
0644
redirects-page-integration.php
1456 bytes
0644
unsupported-php-version-notice.php
4951 bytes
0644
workouts-integration.php
11286 bytes
0644
N4ST4R_ID | Naxtarrr