📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 09:04:42
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wordpress-seo-premium
/
src
/
conditionals
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wordpress-seo-premium/src/conditionals
🔄 Refresh
✏️
Editing: zapier-enabled-conditional.php
Writable
<?php namespace Yoast\WP\SEO\Premium\Conditionals; use Yoast\WP\SEO\Conditionals\Conditional; use Yoast\WP\SEO\Premium\Helpers\Zapier_Helper; /** * Conditional that is only met when the Zapier integration is enabled. */ class Zapier_Enabled_Conditional implements Conditional { /** * The Zapier helper. * * @var Zapier_Helper */ private $zapier; /** * Zapier_Enabled_Conditional constructor. * * @param Zapier_Helper $zapier The Zapier helper. */ public function __construct( Zapier_Helper $zapier ) { $this->zapier = $zapier; } /** * Returns whether or not this conditional is met. * * @return bool Whether or not the conditional is met. */ public function is_met() { return $this->zapier->is_enabled(); } }
💾 Save Changes
❌ Cancel