| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/onpage.tar |
class-ryte-service.php 0000666 00000001263 15114003413 0010777 0 ustar 00 <?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin\OnPage
*/
// Mark this file as deprecated.
_deprecated_file( __FILE__, 'WPSEO 13.2' );
/**
* Represents the service to be used by the WPSEO_Endpoint_Ryte endpoint.
*
* @deprecated 13.2
* @codeCoverageIgnore
*/
class WPSEO_Ryte_Service {
/**
* Constructs the WPSEO_Ryte_Service class.
*
* @deprecated 13.2
* @codeCoverageIgnore
*/
public function __construct() {
_deprecated_function( __METHOD__, 'WPSEO 13.2' );
}
/**
* Fetches statistics via REST request.
*
* @deprecated 13.2
* @codeCoverageIgnore
*/
public function get_statistics() {
_deprecated_function( __METHOD__, 'WPSEO 13.2' );
}
}
class-onpage.php 0000666 00000001352 15114003413 0007626 0 ustar 00 <?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin
*/
// Mark this file as deprecated.
_deprecated_file( __FILE__, 'WPSEO 13.2' );
/**
* Handles the request for getting the Ryte status.
*
* @deprecated 13.2
* @codeCoverageIgnore
*/
class WPSEO_OnPage extends WPSEO_Ryte implements WPSEO_WordPress_Integration {
/**
* Constructs the object.
*
* @deprecated 13.2
* @codeCoverageIgnore
*/
public function __construct() {
_deprecated_function( __METHOD__, 'WPSEO 13.2', WPSEO_Ryte::class );
}
/**
* Shows a notice when the website is not indexable.
*
* @deprecated 13.2
* @codeCoverageIgnore
*
* @return void
*/
public function show_notice() {
_deprecated_function( __METHOD__, 'WPSEO 13.2' );
}
}
class-onpage-option.php 0000666 00000001236 15114003413 0011135 0 ustar 00 <?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin
*/
// Mark this file as deprecated.
_deprecated_file( __FILE__, 'WPSEO 13.2' );
/**
* This class handles the data for the option where the Ryte data is stored.
*
* @deprecated 13.2
* @codeCoverageIgnore
*/
class WPSEO_OnPage_Option extends WPSEO_Ryte_Option {
/**
* Setting the object by setting the properties.
*
* @deprecated 13.2
* @codeCoverageIgnore
*/
public function __construct() {
// phpcs:ignore WordPress.Security.EscapeOutput -- The WPSEO_Ryte_option::class value does not need to be escaped.
_deprecated_function( __METHOD__, 'WPSEO 13.2', WPSEO_Ryte_Option::class );
}
}
.htaccess 0000666 00000000424 15114003413 0006336 0 ustar 00 <IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
Deny from all
</FilesMatch>
</IfModule>