🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 02:23:53 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
reenrihair.com
/
wp-content
/
plugins
/
wordpress-seo-premium
/
src
/
conditionals
📍 /home/therahul/reenrihair.com/wp-content/plugins/wordpress-seo-premium/src/conditionals
🔄 Refresh
✏️
Editing: cornerstone-enabled-conditional.php
Writable
<?php namespace Yoast\WP\SEO\Premium\Conditionals; use Yoast\WP\SEO\Conditionals\Conditional; use Yoast\WP\SEO\Helpers\Options_Helper; /** * Cornerstone_Enabled_Conditional class. */ class Cornerstone_Enabled_Conditional implements Conditional { /** * The options helper. * * @var Options_Helper */ protected $options_helper; /** * Cornerstone_Enabled_Conditional constructor. * * @codeCoverageIgnore * * @param Options_Helper $options_helper The options helper. */ public function __construct( Options_Helper $options_helper ) { $this->options_helper = $options_helper; } /** * Returns `true` when the cornerstone content feature is enabled. * * @return bool `true` when the cornerstone content feature is enabled. */ public function is_met() { return $this->options_helper->get( 'enable_cornerstone_content' ); } }
💾 Save Changes
❌ Cancel