class-field-connect-google-search-console.php 582 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin\ConfigurationUI
  6. */
  7. /**
  8. * Class WPSEO_Config_Field_Connect_Google_Search_Console
  9. */
  10. class WPSEO_Config_Field_Connect_Google_Search_Console extends WPSEO_Config_Field {
  11. /**
  12. * WPSEO_Config_Field_Connect_Google_Search_Console constructor.
  13. */
  14. public function __construct() {
  15. parent::__construct( 'connectGoogleSearchConsole', 'ConnectGoogleSearchConsole' );
  16. }
  17. /**
  18. * Get the data
  19. *
  20. * @return array
  21. */
  22. public function get_data() {
  23. return array(
  24. 'profile' => '',
  25. 'profileList' => '',
  26. );
  27. }
  28. }