PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
google-site-kit
/
includes
/
Modules
/
Search_Console
<?php /** * Class Google\Site_Kit\Modules\Search_Console\Settings * * @package Google\Site_Kit\Modules\Search_Console * @copyright 2020 Google LLC * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://sitekit.withgoogle.com */ namespace Google\Site_Kit\Modules\Search_Console; use Google\Site_Kit\Core\Modules\Module_Settings; /** * Class for Search Console settings. * * @since 1.3.0 * @access private * @ignore */ class Settings extends Module_Settings { const OPTION = 'googlesitekit_search-console_settings'; /** * Registers the setting in WordPress. * * @since 1.3.0 */ public function register() { parent::register(); // Backwards compatibility with previous dedicated option. add_filter( 'default_option_' . self::OPTION, function ( $default ) { $default['propertyID'] = $this->options->get( 'googlesitekit_search_console_property' ) ?: ''; return $default; } ); } /** * Gets the default value. * * @since 1.3.0 * * @return array */ protected function get_default() { return array( 'propertyID' => '', ); } }
[+]
..
[-] Settings.php
[edit]