PATH:
home
/
letacommog
/
lenazen
/
wp-content
/
plugins
/
wordpress-seo
/
admin
/
metabox
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin */ /** * Generates and displays the React root element for a metabox section. */ class WPSEO_Metabox_Section_Readability implements WPSEO_Metabox_Section { /** * Name of the section, used as an identifier in the HTML. * * @var string */ public $name = 'readability'; /** * Outputs the section link. */ public function display_link() { printf( '<li role="tab"><a href="#wpseo-meta-section-%1$s" class="wpseo-meta-section-link">%2$s</a></li>', esc_attr( $this->name ), '<div class="wpseo-score-icon-container" id="wpseo-readability-score-icon"></div><span>' . __( 'Readability', 'wordpress-seo' ) . '</span>' ); } /** * Outputs the section content. */ public function display_content() { $html = sprintf( '<div id="%1$s" class="wpseo-meta-section">', esc_attr( 'wpseo-meta-section-' . $this->name ) ); $html .= '<div id="wpseo-metabox-readability-root" class="wpseo-metabox-root"></div>'; $html .= '</div>'; echo $html; } }
[+]
..
[-] class-metabox-form-tab.php
[edit]
[-] class-metabox-addon-section.php
[edit]
[-] class-metabox-null-tab.php
[edit]
[-] class-metabox-section-readability.php
[edit]
[-] class-metabox.php
[edit]
[-] interface-metabox-analysis.php
[edit]
[-] class-metabox-analysis-readability.php
[edit]
[-] interface-metabox-tab.php
[edit]
[-] class-metabox-tab-section.php
[edit]
[-] class-metabox-section-react.php
[edit]
[-] interface-metabox-section.php
[edit]
[-] class-metabox-analysis-seo.php
[edit]
[-] class-metabox-editor.php
[edit]