class-gsc.php in Yoast SEO – Advanced SEO with real-time guidance and built-in AI 18.7, at admin/google_search_console/class-gsc.php
| 1 | <?php |
| 2 | /** |
| 3 | * WPSEO plugin file. |
| 4 | * |
| 5 | * @package WPSEO\admin\google_search_console |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * Class WPSEO_GSC. |
| 10 | */ |
| 11 | class WPSEO_GSC { |
| 12 | |
| 13 | /** |
| 14 | * The option where data will be stored. |
| 15 | * |
| 16 | * @var string |
| 17 | */ |
| 18 | const OPTION_WPSEO_GSC = 'wpseo-gsc'; |
| 19 | |
| 20 | /** |
| 21 | * Outputs the HTML for the redirect page. |
| 22 | * |
| 23 | * @return void |
| 24 | */ |
| 25 | public function display() { |
| 26 | require_once WPSEO_PATH . 'admin/google_search_console/views/gsc-display.php'; |
| 27 | } |
| 28 | } |
| 29 |