| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/stirizo/wp-content/plugins/widgetkit-for-elementor/includes/ |
Upload File : |
<?php
if( ! defined( 'ABSPATH' ) ) exit();
class WKFE_Dependency{
private static $instance;
public static function init(){
if(null === self::$instance ){
self::$instance = new self;
}
return self::$instance;
}
public function __construct(){
if (!did_action('elementor/loaded')) {
add_action( 'admin_notices', array($this, 'check_dependend_plugin_elementor') );
}
}
public function check_dependend_plugin_elementor(){
if (!current_user_can('activate_plugins')) {
return;
}
$elementor_main_file = 'elementor/elementor.php';
if(! $this->get_all_plugin_in_my_site($elementor_main_file)){
/**
* if plugin not found
*/
$activation_url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=elementor'), 'install-plugin_elementor');
$message = sprintf(
__('<strong>Widgetkit for Elementor</strong> requires <strong>Elementor</strong> plugin to be installed and activated. Please install <strong>Elementor</strong> to continue.', 'widgetkit-for-elementor'),
'<strong>',
'</strong>'
);
$button_text = __('Install Elementor Now', 'widgetkit-for-elementor');
}else{
/**
* if found
*/
$activation_url = wp_nonce_url('plugins.php?action=activate&plugin=' . $elementor_main_file . '&plugin_status=all&paged=1&s', 'activate-plugin_' . $elementor_main_file);
$message = __('<strong>Widgetkit for Elementor</strong> requires <strong>Elementor</strong> plugin to be active. Please activate Elementor to continue.', 'widgetkit-for-elementor');
$button_text = __('Activate Elementor Now', 'widgetkit-for-elementor');
}
$button = '<p><a href="' . esc_url($activation_url) . '" class="button-primary">' . esc_html($button_text) . '</a></p>';
printf('<div class="error"><p>%1$s</p>%2$s</div>', wp_kses_post($message), wp_kses_post($button));
}
public function get_all_plugin_in_my_site($plugin_base_name){
$installed_plugins = get_plugins();
return isset($installed_plugins[$plugin_base_name]);
}
}