PATH:
home
/
letacommog
/
rachat-or-bourgenbresse
/
wp-content
/
plugins
/
wordpress-seo
/
admin
/
config-ui
/
fields
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin\ConfigurationUI */ /** * Class WPSEO_Config_Field_Tracking. */ class WPSEO_Config_Field_Tracking extends WPSEO_Config_Field_Choice { /** * WPSEO_Config_Field_Tracking constructor. */ public function __construct() { parent::__construct( 'tracking' ); $this->set_property( 'label', __( 'Can we collect anonymous information about your website and its usage?', 'wordpress-seo' ) ); $this->add_choice( 'no', __( 'No, I don\'t want to allow you to track my site data.', 'wordpress-seo' ) ); $this->add_choice( 'yes', __( 'Yes, you can track my site\'s data!', 'wordpress-seo' ) ); } /** * Set adapter. * * @param WPSEO_Configuration_Options_Adapter $adapter Adapter to register lookup on. */ public function set_adapter( WPSEO_Configuration_Options_Adapter $adapter ) { $adapter->add_custom_lookup( $this->get_identifier(), [ $this, 'get_data' ], [ $this, 'set_data' ] ); } /** * Gets the option that is set for this field. * * @return string The value for the environment_type wpseo option. */ public function get_data() { $tracking = WPSEO_Options::get( 'tracking' ); if ( $tracking ) { return 'yes'; } return 'no'; } /** * Set new data. * * @param string $tracking The site's environment type. * * @return bool Returns whether the value is successfully set. */ public function set_data( $tracking ) { $return = true; if ( $this->get_data() !== $tracking ) { $return = WPSEO_Options::set( 'tracking', $tracking ); } return $return; } }
[+]
..
[-] class-field-profile-url-facebook.php
[edit]
[-] class-field-profile-url-pinterest.php
[edit]
[-] class-field-person.php
[edit]
[-] class-field-suggestions.php
[edit]
[-] class-field-tracking-intro.php
[edit]
[-] class-field-profile-url-instagram.php
[edit]
[-] class-field-company-name.php
[edit]
[-] class-field-multiple-authors.php
[edit]
[-] class-field-company-info-missing.php
[edit]
[-] class-field-tracking.php
[edit]
[-] class-field-company-logo.php
[edit]
[-] class-field-choice-post-type.php
[edit]
[-] class-field-profile-url-wikipedia.php
[edit]
[-] class-field-profile-url-twitter.php
[edit]
[-] class-field-mailchimp-signup.php
[edit]
[-] class-field-choice.php
[edit]
[-] class-field-success-message.php
[edit]
[-] class-field-environment.php
[edit]
[-] class-field-profile-url-youtube.php
[edit]
[-] class-field-title-intro.php
[edit]
[-] class-field-site-name.php
[edit]
[-] class-field-site-type.php
[edit]
[-] class-field.php
[edit]
[-] class-field-company-or-person.php
[edit]
[-] class-field-profile-url-myspace.php
[edit]
[-] .htaccess
[edit]
[-] class-field-post-type-visibility.php
[edit]
[-] class-field-profile-url-linkedin.php
[edit]
[-] class-field-separator.php
[edit]