/wp-content/plugins/wordpress-seo/admin/config-ui/fields/class-field-social-profiles-intro.php

https://bitbucket.org/carloskikea/helpet · PHP · 33 lines · 16 code · 5 blank · 12 comment · 0 complexity · e9070efdbe9cecb88a8d9a4ce6b17b96 MD5 · raw file

  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin\ConfigurationUI
  6. */
  7. /**
  8. * Class WPSEO_Config_Field_Social_Profiles_Intro
  9. */
  10. class WPSEO_Config_Field_Social_Profiles_Intro extends WPSEO_Config_Field {
  11. /**
  12. * WPSEO_Config_Field_Social_Profiles_Intro constructor.
  13. */
  14. public function __construct() {
  15. parent::__construct( 'socialProfilesIntro', 'HTML' );
  16. $intro_text = sprintf(
  17. /* translators: %1$s is the plugin name, %2$s is a link opening tag, %3$s is a link closing tag. */
  18. __( '%1$s can tell search engines about your social media profiles.
  19. These will be used in Google\'s Knowledge Graph. There are additional
  20. sharing options in the %1$s Social settings. %2$sRead more%3$s about these options.', 'wordpress-seo' ),
  21. 'Yoast SEO',
  22. '<a target="_blank" rel="noopener noreferrer" href="' . WPSEO_Shortlinker::get( 'https://yoa.st/1ey' ) . '">',
  23. '</a>'
  24. );
  25. $html = '<p>' . $intro_text . '</p>';
  26. $this->set_property( 'html', $html );
  27. }
  28. }