| Linux webm007.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 Path : /home/eglisebaa/www/wp-content/plugins/wordpress-seo/src/conditionals/ |
| Current File : /home/eglisebaa/www/wp-content/plugins/wordpress-seo/src/conditionals/woocommerce-conditional.php |
<?php
namespace Yoast\WP\SEO\Conditionals;
/**
* Conditional that is only met when WooCommerce is active.
*/
class WooCommerce_Conditional implements Conditional {
/**
* Returns `true` when the WooCommerce plugin is installed and activated.
*
* @return bool `true` when the WooCommerce plugin is installed and activated.
*/
public function is_met() {
return \class_exists( 'WooCommerce' );
}
}