class-metabox-null-tab.php in Yoast SEO – Advanced SEO with real-time guidance and built-in AI 18.2, at admin/metabox/class-metabox-null-tab.php
| 1 | <?php |
| 2 | /** |
| 3 | * WPSEO plugin file. |
| 4 | * |
| 5 | * @package WPSEO\Admin |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * Generates the HTML for a metabox tab. |
| 10 | */ |
| 11 | class WPSEO_Metabox_Null_Tab implements WPSEO_Metabox_Tab { |
| 12 | |
| 13 | /** |
| 14 | * Returns the html for the tab link. |
| 15 | * |
| 16 | * @return string|null |
| 17 | */ |
| 18 | public function link() { |
| 19 | return null; |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Returns the html for the tab content. |
| 24 | * |
| 25 | * @return string|null |
| 26 | */ |
| 27 | public function content() { |
| 28 | return null; |
| 29 | } |
| 30 | } |
| 31 |