# wordpress-seo/18.5/src/conditionals/installation-success-conditional.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.5/code/src/conditionals/installation-success-conditional.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.5/raw/src/conditionals/installation-success-conditional.php
- Modified: 2021-12-21T10:29:22+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.5/code/src/conditionals/installation-success-conditional.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Conditionals;

/**
 * Feature flag conditional for the Installation Success screen.
 */
class Installation_Success_Conditional extends Feature_Flag_Conditional {

	/**
	 * Returns the name of the Installation Success feature flag.
	 *
	 * @return string The name of the feature flag.
	 */
	protected function get_feature_flag() {
		return 'INSTALLATION_SUCCESS';
	}
}

```
