Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wordpres.../admin/metabox
File: class-metabox-analysis-readability.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* WPSEO plugin file.
[2] Fix | Delete
*
[3] Fix | Delete
* @package WPSEO\Admin\Metabox
[4] Fix | Delete
*/
[5] Fix | Delete
[6] Fix | Delete
/**
[7] Fix | Delete
* Represents the readability analysis.
[8] Fix | Delete
*/
[9] Fix | Delete
class WPSEO_Metabox_Analysis_Readability implements WPSEO_Metabox_Analysis {
[10] Fix | Delete
[11] Fix | Delete
/**
[12] Fix | Delete
* Whether this analysis is enabled.
[13] Fix | Delete
*
[14] Fix | Delete
* @return bool Whether or not this analysis is enabled.
[15] Fix | Delete
*/
[16] Fix | Delete
public function is_enabled() {
[17] Fix | Delete
return $this->is_globally_enabled() && $this->is_user_enabled();
[18] Fix | Delete
}
[19] Fix | Delete
[20] Fix | Delete
/**
[21] Fix | Delete
* Whether or not this analysis is enabled by the user.
[22] Fix | Delete
*
[23] Fix | Delete
* @return bool Whether or not this analysis is enabled by the user.
[24] Fix | Delete
*/
[25] Fix | Delete
public function is_user_enabled() {
[26] Fix | Delete
return ! get_the_author_meta( 'wpseo_content_analysis_disable', get_current_user_id() );
[27] Fix | Delete
}
[28] Fix | Delete
[29] Fix | Delete
/**
[30] Fix | Delete
* Whether or not this analysis is enabled globally.
[31] Fix | Delete
*
[32] Fix | Delete
* @return bool Whether or not this analysis is enabled globally.
[33] Fix | Delete
*/
[34] Fix | Delete
public function is_globally_enabled() {
[35] Fix | Delete
return WPSEO_Options::get( 'content_analysis_active', true );
[36] Fix | Delete
}
[37] Fix | Delete
}
[38] Fix | Delete
[39] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function