/wp-content/plugins/wordpress-seo/admin/config-ui/fields/class-field-connect-google-search-console.php

https://bitbucket.org/carloskikea/helpet · PHP · 30 lines · 12 code · 2 blank · 16 comment · 0 complexity · fde1ab98f7f490df7e2d06779b67ca2a MD5 · raw file

  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. }