/wp-content/plugins/wordpress-seo/admin/config-ui/fields/class-field-profile-url-instagram.php

https://bitbucket.org/carloskikea/helpet · PHP · 31 lines · 11 code · 4 blank · 16 comment · 0 complexity · 5d0b0fa2f7c53b686114931719f74e7a MD5 · raw file

  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin\ConfigurationUI
  6. */
  7. /**
  8. * Class WPSEO_Config_Field_Profile_URL_Instagram
  9. */
  10. class WPSEO_Config_Field_Profile_URL_Instagram extends WPSEO_Config_Field {
  11. /**
  12. * WPSEO_Config_Field_Profile_URL_Instagram constructor.
  13. */
  14. public function __construct() {
  15. parent::__construct( 'profileUrlInstagram', 'Input' );
  16. $this->set_property( 'label', __( 'Instagram URL', 'wordpress-seo' ) );
  17. $this->set_property( 'pattern', '^https:\/\/www\.instagram\.com\/([^/]+)\/$' );
  18. }
  19. /**
  20. * Set adapter
  21. *
  22. * @param WPSEO_Configuration_Options_Adapter $adapter Adapter to register lookup on.
  23. */
  24. public function set_adapter( WPSEO_Configuration_Options_Adapter $adapter ) {
  25. $adapter->add_option_lookup( $this->get_identifier(), 'instagram_url' );
  26. }
  27. }