🏠 Root
/
home
/
artorgp
/
parankhoit
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
conditionals
/
Editing: breadcrumbs-enabled-conditional.php
<?php /** * Yoast SEO plugin file. * * @package Yoast\YoastSEO\Conditionals */ namespace Yoast\WP\SEO\Conditionals; use Yoast\WP\SEO\Helpers\Options_Helper; /** * Conditional that is only met when breadcrumbs are enabled. */ class Breadcrumbs_Enabled_Conditional implements Conditional { /** * The options helper. * * @var Options_Helper */ private $options; /** * Breadcrumbs_Enabled_Conditional constructor. * * @param Options_Helper $options The options helper. * * @codeCoverageIgnore */ public function __construct( Options_Helper $options ) { $this->options = $options; } /** * @inheritDoc */ public function is_met() { return $this->options->get( 'breadcrumbs-enable' ); } }
Save
Cancel