PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 18.2
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v18.2
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
wordpress-seo / src / deprecated / admin / class-recalculate-scores.php

class-recalculate-scores.php in Yoast SEO – Advanced SEO with real-time guidance and built-in AI 18.2, at src/deprecated/admin/class-recalculate-scores.php

48 lines 894 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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