__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Elementor\Core\Isolation;
class Plugin_Status_Adapter implements Plugin_Status_Adapter_Interface {
public Wordpress_Adapter_Interface $wordpress_adapter;
public function __construct( Wordpress_Adapter_Interface $wordpress_adapter ) {
$this->wordpress_adapter = $wordpress_adapter;
}
public function is_plugin_installed( $plugin_path ): bool {
$installed_plugins = $this->wordpress_adapter->get_plugins();
return isset( $installed_plugins[ $plugin_path ] );
}
public function get_install_plugin_url( $plugin_path ): string {
$slug = dirname( $plugin_path );
$admin_base_url = $this->wordpress_adapter->self_admin_url( 'update.php' );
$admin_url = add_query_arg( [
'action' => 'install-plugin',
'plugin' => $slug,
], $admin_base_url );
return $this->wordpress_adapter->wp_nonce_url( $admin_url, 'install-plugin_' . $slug );
}
public function get_activate_plugin_url( $plugin_path ): string {
$admin_base_url = $this->wordpress_adapter->self_admin_url( 'plugins.php' );
$admin_url = add_query_arg( [
'action' => 'activate',
'plugin' => $plugin_path,
'plugin_status' => 'all',
'paged' => 1,
's' => '',
], $admin_base_url );
return $this->wordpress_adapter->wp_nonce_url( $admin_url, 'activate-plugin_' . $plugin_path );
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| elementor-adapter-interface.php | File | 496 B | 0664 |
|
| elementor-adapter.php | File | 1.56 KB | 0664 |
|
| elementor-counter-adapter-interface.php | File | 324 B | 0664 |
|
| plugin-status-adapter-interface.php | File | 283 B | 0664 |
|
| plugin-status-adapter.php | File | 1.27 KB | 0664 |
|
| wordpress-adapter-interface.php | File | 988 B | 0664 |
|
| wordpress-adapter.php | File | 2.49 KB | 0664 |
|