PATH:
home
/
letacommog
/
bresse-paysage
/
wp-content
/
plugins
/
wordpress-seo-premium
/
admin
/
metabox
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin */ /** * Generates and displays a section containing metabox tabs that have been added by other plugins through the * `wpseo_tab_header` and `wpseo_tab_content` actions. */ class WPSEO_Metabox_Addon_Tab_Section extends WPSEO_Metabox_Tab_Section { /** * Applies the actions for adding a tab to the metabox. */ public function display_content() { ?> <div id="wpseo-meta-section-addons" class="wpseo-meta-section"> <div class="wpseo-metabox-tabs-div"> <ul class="wpseo-metabox-tabs"> <?php do_action( 'wpseo_tab_header' ); ?> </ul> <?php do_action( 'wpseo_tab_content' ); ?> </div> </div> <?php } /** * `WPSEO_Metabox_Addon_Section` always has "tabs", represented by registered actions. If this is not the case, * it should not be instantiated. * * @return bool */ protected function has_tabs() { return true; } }
[+]
..
[-] interface-metabox-tab.php
[edit]
[-] class-metabox-analysis-readability.php
[edit]
[-] class-metabox.php
[edit]
[-] interface-metabox-section.php
[edit]
[-] class-metabox-analysis-seo.php
[edit]
[-] class-metabox-tab-section.php
[edit]
[-] class-metabox-section-react.php
[edit]
[-] class-metabox-form-tab.php
[edit]
[-] class-metabox-null-tab.php
[edit]
[-] class-metabox-addon-section.php
[edit]
[-] class-metabox-editor.php
[edit]
[-] interface-metabox-analysis.php
[edit]