# wordpress-seo/19.0/admin/metabox/interface-metabox-analysis.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/19.0/code/admin/metabox/interface-metabox-analysis.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/19.0/raw/admin/metabox/interface-metabox-analysis.php
- Modified: 2019-04-18T08:44:36+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/19.0/code/admin/metabox/interface-metabox-analysis.php#L10-L20`.

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

/**
 * Describes an interface for an analysis that can either be enabled or disabled.
 */
interface WPSEO_Metabox_Analysis {

	/**
	 * Whether this analysis is enabled.
	 *
	 * @return bool Whether or not this analysis is enabled.
	 */
	public function is_enabled();

	/**
	 * Whether or not this analysis is enabled by the user.
	 *
	 * @return bool Whether or not this analysis is enabled by the user.
	 */
	public function is_user_enabled();

	/**
	 * Whether or not this analysis is enabled globally.
	 *
	 * @return bool Whether or not this analysis is enabled globally.
	 */
	public function is_globally_enabled();
}

```
