Yoast\WP\SEO\Plans\Application
Duplicate_Post_Manager{}
The Yoast SEO Duplicate Post plugin Manager.
Хуков нет.
Использование
$Duplicate_Post_Manager = new Duplicate_Post_Manager(); // use class methods
Методы
- public get_params()
- protected is_activated()
- protected is_installed()
Код Duplicate_Post_Manager{} Duplicate Post Manager{} Yoast 27.7
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 ) ),
];
}
}