interface-metabox-section.php 320 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin
  6. */
  7. /**
  8. * Generates and displays the HTML for a metabox section.
  9. */
  10. interface WPSEO_Metabox_Section {
  11. /**
  12. * Outputs the section link.
  13. */
  14. public function display_link();
  15. /**
  16. * Outputs the section content.
  17. */
  18. public function display_content();
  19. }