📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 14:51:54
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
deprecated
/
admin
/
endpoints
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wordpress-seo/src/deprecated/admin/endpoints
🔄 Refresh
✏️
Editing: class-endpoint-ryte.php
Writable
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin\OnPage */ /** * Represents an implementation of the WPSEO_Endpoint interface to register one or multiple endpoints. * * @deprecated 13.2 * @codeCoverageIgnore */ class WPSEO_Endpoint_Ryte implements WPSEO_Endpoint { /** * The namespace of the REST route. * * @var string */ const REST_NAMESPACE = 'yoast/v1'; /** * The route of the ryte endpoint. * * @var string */ const ENDPOINT_RETRIEVE = 'ryte'; /** * The name of the capability needed to retrieve data using the endpoints. * * @var string */ const CAPABILITY_RETRIEVE = 'manage_options'; /** * Constructs the WPSEO_Endpoint_Ryte class and sets the service to use. * * @deprecated 13.2 * @codeCoverageIgnore */ public function __construct() { _deprecated_function( __METHOD__, 'WPSEO 13.2' ); } /** * Registers the REST routes that are available on the endpoint. * * @deprecated 13.2 * @codeCoverageIgnore */ public function register() { _deprecated_function( __METHOD__, 'WPSEO 13.2' ); } /** * Determines whether or not data can be retrieved for the registered endpoints. * * @deprecated 13.2 * @codeCoverageIgnore */ public function can_retrieve_data() { _deprecated_function( __METHOD__, 'WPSEO 13.2' ); } }
💾 Save Changes
❌ Cancel