PATH:
home
/
lab2454c
/
adenbic.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
services
/
health-check
<?php namespace Yoast\WP\SEO\Services\Health_Check; /** * Runs the Postname_Permalink health check. */ class Postname_Permalink_Runner implements Runner_Interface { /** * Is set to true when permalinks are set to contain the post name * * @var bool */ private $permalinks_contain_postname; /** * Constructor. */ public function __construct() { $this->permalinks_contain_postname = false; } /** * Runs the health check. Checks if permalinks are set to contain the post name. * * @return void */ public function run() { $this->permalinks_contain_postname = ( \strpos( \get_option( 'permalink_structure' ), '%postname%' ) !== false ); } /** * Returns true if permalinks are set to contain the post name. * * @return bool True if permalinks are set to contain the post name. */ public function is_successful() { return $this->permalinks_contain_postname; } }
[-] health-check.php
[edit]
[-] links-table-check.php
[edit]
[-] myyoast-api-request-factory.php
[edit]
[+]
..
[-] report-builder-factory.php
[edit]
[-] page-comments-reports.php
[edit]
[-] reports-trait.php
[edit]
[-] postname-permalink-reports.php
[edit]
[-] report-builder.php
[edit]
[-] runner-interface.php
[edit]
[-] default-tagline-runner.php
[edit]
[-] postname-permalink-check.php
[edit]
[-] postname-permalink-runner.php
[edit]
[-] page-comments-check.php
[edit]
[-] default-tagline-check.php
[edit]
[-] links-table-reports.php
[edit]
[-] default-tagline-reports.php
[edit]
[-] links-table-runner.php
[edit]
[-] page-comments-runner.php
[edit]