interface-metabox-tab.php 347 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin
  6. */
  7. /**
  8. * Generates the HTML for a metabox tab.
  9. */
  10. interface WPSEO_Metabox_Tab {
  11. /**
  12. * Returns the html for the tab link.
  13. *
  14. * @return string
  15. */
  16. public function link();
  17. /**
  18. * Returns the html for the tab content.
  19. *
  20. * @return string
  21. */
  22. public function content();
  23. }