class-metabox-null-tab.php 415 B

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