| 1 |
<?php |
| 2 |
/** |
| 3 |
* WPSEO plugin file. |
| 4 |
* |
| 5 |
* @package WPSEO\Admin |
| 6 |
*/ |
| 7 |
|
| 8 |
/** |
| 9 |
* Class WPSEO_Recalculate_Scores. |
| 10 |
* |
| 11 |
* This class handles the SEO score recalculation for all posts with a filled focus keyword. |
| 12 |
* |
| 13 |
* @deprecated 14.4 |
| 14 |
* @codeCoverageIgnore |
| 15 |
*/ |
| 16 |
class WPSEO_Recalculate_Scores { |
| 17 |
|
| 18 |
/** |
| 19 |
* Constructing the object by modalbox, the localization and the totals. |
| 20 |
* |
| 21 |
* @deprecated 14.4 |
| 22 |
* @codeCoverageIgnore |
| 23 |
*/ |
| 24 |
public function __construct() { |
| 25 |
_deprecated_function( __METHOD__, 'WPSEO 14.4' ); |
| 26 |
} |
| 27 |
|
| 28 |
/** |
| 29 |
* Run the localize script. |
| 30 |
* |
| 31 |
* @deprecated 14.4 |
| 32 |
* @codeCoverageIgnore |
| 33 |
*/ |
| 34 |
public function recalculate_assets() { |
| 35 |
_deprecated_function( __METHOD__, 'WPSEO 14.4' ); |
| 36 |
} |
| 37 |
|
| 38 |
/** |
| 39 |
* Initialize the modal box to be displayed when needed. |
| 40 |
* |
| 41 |
* @deprecated 14.4 |
| 42 |
* @codeCoverageIgnore |
| 43 |
*/ |
| 44 |
public function modal_box() { |
| 45 |
_deprecated_function( __METHOD__, 'WPSEO 14.4' ); |
| 46 |
} |
| 47 |
} |
| 48 |
|