| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/recalculate.tar |
class-recalculate-terms.php 0000666 00000002454 15114073706 0012011 0 ustar 00 <?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin
*/
/**
* This class handles the calculation of the SEO score for all terms.
*
* @deprecated 14.4
* @codeCoverageIgnore
*/
class WPSEO_Recalculate_Terms extends WPSEO_Recalculate {
/**
* Save the scores.
*
* @deprecated 14.4
* @codeCoverageIgnore
*
* @param array $scores The scores to save.
*/
public function save_scores( array $scores ) {
_deprecated_function( __METHOD__, 'WPSEO 14.4' );
}
/**
* Save the score.
*
* @deprecated 14.4
* @codeCoverageIgnore
*
* @param array $score The score to save.
*/
protected function save_score( array $score ) {
_deprecated_function( __METHOD__, 'WPSEO 14.4' );
}
/**
* Get the terms from the database by doing a WP_Query.
*
* @deprecated 14.4
* @codeCoverageIgnore
*
* @param int $paged The page.
*
* @return array
*/
protected function get_items( $paged ) {
_deprecated_function( __METHOD__, 'WPSEO 14.4' );
return [];
}
/**
* Convert the given term into a analyzable object.
*
* @deprecated 14.4
* @codeCoverageIgnore
*
* @param mixed $item The term for which to build the analyzer data.
*
* @return array
*/
protected function item_to_response( $item ) {
_deprecated_function( __METHOD__, 'WPSEO 14.4' );
return [];
}
}
class-recalculate-posts.php 0000666 00000002502 15114073706 0012021 0 ustar 00 <?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin
*/
/**
* This class handles the calculation of the SEO score for all posts with a filled focus keyword.
*
* @deprecated 14.4
* @codeCoverageIgnore
*/
class WPSEO_Recalculate_Posts extends WPSEO_Recalculate {
/**
* Save the scores.
*
* @deprecated 14.4
* @codeCoverageIgnore
*
* @param array $scores The scores for the posts.
*/
public function save_scores( array $scores ) {
_deprecated_function( __METHOD__, 'WPSEO 14.4' );
}
/**
* Save the score.
*
* @deprecated 14.4
* @codeCoverageIgnore
*
* @param array $score The score to save.
*/
protected function save_score( array $score ) {
_deprecated_function( __METHOD__, 'WPSEO 14.4' );
}
/**
* Get the posts from the database by doing a WP_Query.
*
* @deprecated 14.4
* @codeCoverageIgnore
*
* @param int $paged The page.
*
* @return array
*/
protected function get_items( $paged ) {
_deprecated_function( __METHOD__, 'WPSEO 14.4' );
return [];
}
/**
* Map the posts to a response array.
*
* @deprecated 14.4
* @codeCoverageIgnore
*
* @param WP_Post $item The post for which to build the analyzer data.
*
* @return array
*/
protected function item_to_response( $item ) {
_deprecated_function( __METHOD__, 'WPSEO 14.4' );
return [];
}
}
class-recalculate.php 0000666 00000002313 15114073706 0010653 0 ustar 00 <?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin
*/
/**
* Abstract class to force methods in recalculate classes.
*
* @deprecated 14.4
* @codeCoverageIgnore
*/
abstract class WPSEO_Recalculate {
/**
* Gets the items to recalculate.
*
* @deprecated 14.4
* @codeCoverageIgnore
*
* @param int $paged The current page number.
*
* @return array Items that can be recalculated.
*/
public function get_items_to_recalculate( $paged ) {
_deprecated_function( __METHOD__, 'WPSEO 14.4' );
return [];
}
/**
* Parse the posts|terms with the value we need.
*
* @deprecated 14.4
* @codeCoverageIgnore
*
* @param array $items The items to parse.
*
* @return array
*/
protected function parse_items( array $items ) {
_deprecated_function( __METHOD__, 'WPSEO 14.4' );
return [];
}
/**
* Get default from the options for given field.
*
* @deprecated 14.4
* @codeCoverageIgnore
*
* @param string $field The field for which to get the default options.
* @param string $suffix The post type.
*
* @return bool|string
*/
protected function default_from_options( $field, $suffix ) {
_deprecated_function( __METHOD__, 'WPSEO 14.4' );
return false;
}
}
.htaccess 0000666 00000000424 15114431561 0006347 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>