__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Yoast\WP\SEO\Services\Health_Check;
/**
* Abstract class for all health checks. Provides a uniform interface for the Health_Check_Integration.
*/
abstract class Health_Check {
/**
* The prefix to add to the test identifier. Used to differentiate between Yoast's health checks, and other health checks.
*/
public const TEST_IDENTIFIER_PREFIX = 'yoast-';
/**
* The object that runs the actual health check.
*
* @var Runner_Interface
*/
private $runner;
/**
* The health check implementation sets the runner so this class can start a health check.
*
* @param Runner_Interface $runner The health check runner.
* @return void
*/
protected function set_runner( $runner ) {
$this->runner = $runner;
}
/**
* Returns the identifier of health check implementation. WordPress needs this to manage the health check (https://developer.wordpress.org/reference/hooks/site_status_tests/).
*
* @return string The identifier that WordPress requires.
*/
public function get_test_identifier() {
$full_class_name = static::class;
$class_name_backslash_index = \strrpos( $full_class_name, '\\' );
$class_name = $full_class_name;
if ( $class_name_backslash_index ) {
$class_name_index = ( $class_name_backslash_index + 1 );
$class_name = \substr( $full_class_name, $class_name_index );
}
$lowercase = \strtolower( $class_name );
$whitespace_as_dashes = \str_replace( '_', '-', $lowercase );
$with_prefix = self::TEST_IDENTIFIER_PREFIX . $whitespace_as_dashes;
return $with_prefix;
}
/**
* Returns the name of health check implementation that the user can see. WordPress needs this to manage the health check (https://developer.wordpress.org/reference/hooks/site_status_tests/).
*
* @return string A human-readable label for the health check.
*/
abstract public function get_test_label();
/**
* Runs the health check, and returns its result in the format that WordPress requires to show the results to the user (https://developer.wordpress.org/reference/hooks/site_status_test_result/).
*
* @return string[] The array containing a WordPress site status report.
*/
public function run_and_get_result() {
$this->runner->run();
return $this->get_result();
}
/**
* Gets the result from the health check implementation.
*
* @return string[] The array containing a WordPress site status report.
*/
abstract protected function get_result();
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| default-tagline-check.php | File | 1.42 KB | 0775 |
|
| default-tagline-reports.php | File | 2.26 KB | 0775 |
|
| default-tagline-runner.php | File | 1.11 KB | 0775 |
|
| health-check.php | File | 2.42 KB | 0775 |
|
| links-table-check.php | File | 1.41 KB | 0775 |
|
| links-table-reports.php | File | 3.41 KB | 0775 |
|
| links-table-runner.php | File | 2 KB | 0775 |
|
| myyoast-api-request-factory.php | File | 489 B | 0775 |
|
| page-comments-check.php | File | 1.39 KB | 0775 |
|
| page-comments-reports.php | File | 2.38 KB | 0775 |
|
| page-comments-runner.php | File | 835 B | 0775 |
|
| postname-permalink-check.php | File | 1.43 KB | 0775 |
|
| postname-permalink-reports.php | File | 2.66 KB | 0775 |
|
| postname-permalink-runner.php | File | 908 B | 0775 |
|
| report-builder-factory.php | File | 464 B | 0775 |
|
| report-builder.php | File | 4.93 KB | 0775 |
|
| reports-trait.php | File | 927 B | 0775 |
|
| runner-interface.php | File | 277 B | 0775 |
|