class-field-profile-url-googleplus.php 758 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin\ConfigurationUI
  6. */
  7. _deprecated_file( __FILE__, 'WPSEO 10.1' );
  8. /**
  9. * Class WPSEO_Config_Field_Profile_URL_GooglePlus.
  10. *
  11. * @deprecated 10.1
  12. */
  13. class WPSEO_Config_Field_Profile_URL_GooglePlus extends WPSEO_Config_Field {
  14. /**
  15. * WPSEO_Config_Field_Profile_URL_GooglePlus constructor.
  16. *
  17. * @deprecated 10.1
  18. */
  19. public function __construct() {
  20. _deprecated_function( __METHOD__, '10.1' );
  21. }
  22. /**
  23. * Sets adapter.
  24. *
  25. * @deprecated 10.1
  26. *
  27. * @param WPSEO_Configuration_Options_Adapter $adapter Adapter to register lookup on.
  28. *
  29. * @return void
  30. */
  31. public function set_adapter( WPSEO_Configuration_Options_Adapter $adapter ) {
  32. _deprecated_function( __METHOD__, '10.1' );
  33. }
  34. }