| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * WPSEO plugin file.
- *
- * @package WPSEO\Admin\ConfigurationUI
- */
- /**
- * Class WPSEO_Config_Field_Google_Search_Console_Intro
- */
- class WPSEO_Config_Field_Google_Search_Console_Intro extends WPSEO_Config_Field {
- /**
- * WPSEO_Config_Field_Social_Profiles_Intro constructor.
- */
- public function __construct() {
- parent::__construct( 'googleSearchConsoleIntro', 'HTML' );
- $html = sprintf(
- /* translators: %1$s is the plugin name, %2$s is a link start tag to a Yoast help page, %3$s is the link closing tag. */
- esc_html__(
- '%1$s integrates with Google Search Console, a must-have tool for site owners.
- It provides you with information about the health of your site.
- Don\'t have a Google account or is your site not activated yet?
- Find out %2$show to connect Google Search Console to your site.%3$s',
- 'wordpress-seo'
- ),
- 'Yoast SEO',
- '<a href="' . esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/1ex' ) ) . '">',
- '</a>'
- );
- $disclaimer = __( 'Note: we don\'t store your data in any way and don\'t have full access to your account.
- Your privacy is safe with us.', 'wordpress-seo' );
- $html = '<p>' . $html . '</p><small>' . esc_html( $disclaimer ) . '</small>';
- $this->set_property( 'html', $html );
- }
- }
|