📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 14:23:49
📂
/ (Root)
/
home
/
apkbfjox
/
shamapk.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
editors
/
domain
/
analysis-features
📍 /home/apkbfjox/shamapk.com/wp-content/plugins/wordpress-seo/src/editors/domain/analysis-features
🔄 Refresh
✏️
Editing: analysis-feature-interface.php
Writable
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\Editors\Domain\Analysis_Features; /** * This interface describes an Analysis feature implementation. */ interface Analysis_Feature_Interface { /** * Returns If the analysis is enabled. * * @return bool */ public function is_enabled(): bool; /** * Returns the name of the object. * * @return string */ public function get_name(): string; /** * Returns the legacy key used in the front-end to determine if the feature is enabled. * * @return string */ public function get_legacy_key(): string; }
💾 Save Changes
❌ Cancel