# wordpress-seo/18.2/src/deprecated/admin/class-recalculate-scores.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 18.2. 48 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.2/code/src/deprecated/admin/class-recalculate-scores.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.2/raw/src/deprecated/admin/class-recalculate-scores.php
- Modified: 2020-09-01T12:27:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wordpress-seo/18.2/code/src/deprecated/admin/class-recalculate-scores.php#L10-L20`.

```php
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Admin
 */

/**
 * Class WPSEO_Recalculate_Scores.
 *
 * This class handles the SEO score recalculation for all posts with a filled focus keyword.
 *
 * @deprecated 14.4
 * @codeCoverageIgnore
 */
class WPSEO_Recalculate_Scores {

	/**
	 * Constructing the object by modalbox, the localization and the totals.
	 *
	 * @deprecated 14.4
	 * @codeCoverageIgnore
	 */
	public function __construct() {
		_deprecated_function( __METHOD__, 'WPSEO 14.4' );
	}

	/**
	 * Run the localize script.
	 *
	 * @deprecated 14.4
	 * @codeCoverageIgnore
	 */
	public function recalculate_assets() {
		_deprecated_function( __METHOD__, 'WPSEO 14.4' );
	}

	/**
	 * Initialize the modal box to be displayed when needed.
	 *
	 * @deprecated 14.4
	 * @codeCoverageIgnore
	 */
	public function modal_box() {
		_deprecated_function( __METHOD__, 'WPSEO 14.4' );
	}
}

```
