Files
medicalalert-web-reloaded/wp/wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-section.php
Tony Volpe 68dbe860e9 Merged in feature/314-dev-dev01 (pull request #24)
auto-patch  314-dev-dev01-2024-01-25T04_09_02

* auto-patch  314-dev-dev01-2024-01-25T04_09_02
2024-01-25 04:11:47 +00:00

27 lines
362 B
PHP

<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin
*/
/**
* Generates and displays the HTML for a metabox section.
*/
interface WPSEO_Metabox_Section {
/**
* Outputs the section link.
*
* @return void
*/
public function display_link();
/**
* Outputs the section content.
*
* @return void
*/
public function display_content();
}