- File: wordproof-plugin-inactive-conditional.php
- Full Path: /home/matthif/www/wp-content/plugins/wordpress-seo/src/conditionals/third-party/wordproof-plugin-inactive-conditional.php
- Date Modified: 02/24/2024 11:29 PM
- File size: 489 bytes
- MIME-type: text/x-php
- Charset: utf-8
<?php
namespace Yoast\WP\SEO\Conditionals\Third_Party;
use Yoast\WP\SEO\Conditionals\Conditional;
/**
* Conditional that is met when the WordProof Timestamp plugin is inactive.
*/
class Wordproof_Plugin_Inactive_Conditional implements Conditional {
/**
* Returns whether or not the WordProof Timestamp plugin is active.
*
* @return bool Whether or not the WordProof Timestamp plugin is active.
*/
public function is_met() {
return ! \defined( 'WORDPROOF_VERSION' );
}
}