| Server IP : 37.27.51.148 / Your IP : 216.73.217.84 Web Server : nginx/1.14.1 System : Linux libra 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 20:24:04 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.31 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/wordpress-seo/src/plans/application/ |
Upload File : |
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Plans\Application;
use WPSEO_Admin_Utils;
/**
* The Yoast SEO Duplicate Post plugin Manager.
*/
class Duplicate_Post_Manager {
/**
* The Duplicate post main file.
*
* @var string
*/
public const PLUGIN_FILE = 'duplicate-post/duplicate-post.php';
/**
* Checks if the plugin is installed and activated in WordPress.
*
* @return bool True when installed and activated.
*/
protected function is_activated() {
return \is_plugin_active( self::PLUGIN_FILE );
}
/**
* Checks if the plugin is installed in WordPress.
*
* @return bool True when installed.
*/
protected function is_installed() {
return \file_exists( \WP_PLUGIN_DIR . '/' . self::PLUGIN_FILE );
}
/**
* Gets the duplicate post plans page params
*
* @return array<string|bool> The list of params.
*/
public function get_params() {
return [
'isInstalled' => $this->is_installed(),
'isActivated' => $this->is_activated(),
'installationUrl' => \html_entity_decode( WPSEO_Admin_Utils::get_install_url( self::PLUGIN_FILE ) ),
'activationUrl' => \html_entity_decode( WPSEO_Admin_Utils::get_activation_url( self::PLUGIN_FILE ) ),
];
}
}