/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
- <?php
- /**
- * WPSEO plugin file.
- *
- * @package WPSEO\Admin\ConfigurationUI
- */
- /**
- * Class WPSEO_Config_Field_Connect_Google_Search_Console
- */
- class WPSEO_Config_Field_Connect_Google_Search_Console extends WPSEO_Config_Field {
- /**
- * WPSEO_Config_Field_Connect_Google_Search_Console constructor.
- */
- public function __construct() {
- parent::__construct( 'connectGoogleSearchConsole', 'ConnectGoogleSearchConsole' );
- }
- /**
- * Get the data
- *
- * @return array
- */
- public function get_data() {
- return array(
- 'profile' => '',
- 'profileList' => '',
- );
- }
- }