Your IP : 216.73.216.162


Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/
Upload File :
Current File : /home/x/b/o/xbodynamge/namtation/wp-content/onpage.tar

class-ryte-service.php000066600000001263151140034130010777 0ustar00<?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.php000066600000001352151140034130007626 0ustar00<?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.php000066600000001236151140034130011135 0ustar00<?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 );
	}
}
.htaccess000066600000000424151140034130006336 0ustar00<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>class-onpage-request.php000066600000001211151140034130011306 0ustar00<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Admin
 */

// Mark this file as deprecated.
_deprecated_file( __FILE__, 'WPSEO 13.2' );

/**
 * This class will fetch a new status from Ryte and if it's necessary it will
 * notify the site admin by email and remove the current meta value to hide the
 * notice for all admin users.
 *
 * @deprecated 13.2
 * @codeCoverageIgnore
 */
class WPSEO_OnPage_Request extends WPSEO_Ryte_Request {

	/**
	 * Setting the request object.
	 *
	 * @deprecated 13.2
	 * @codeCoverageIgnore
	 */
	public function __construct() {
		_deprecated_function( __METHOD__, 'WPSEO 13.2', WPSEO_Ryte_Option::class );
	}
}