-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskin.php
57 lines (46 loc) · 1.58 KB
/
skin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
* Plugin Name: Elementor Skin Widgets
* Description: Elementor widget collection.
* Version: 1.0.0
* Author: Plou
* Author URI: https://plou.io/
* Text Domain: skin
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
define( 'ELEMENTOR_SKIN__FILE__', __FILE__ );
/**
* Load Skin
*
* Load the plugin after Elementor (and other plugins) are loaded.
*
* @since 1.0.0
*/
function skin_load() {
// Load localization file
load_plugin_textdomain( 'skin' );
// Notice if the Elementor is not active
if ( ! did_action( 'elementor/loaded' ) ) {
add_action( 'admin_notices', 'skin_fail_load' );
return;
}
// Check required version
$elementor_version_required = '1.8.0';
if ( ! version_compare( ELEMENTOR_VERSION, $elementor_version_required, '>=' ) ) {
add_action( 'admin_notices', 'skin_fail_load_out_of_date' );
return;
}
// Require the main plugin file
require( __DIR__ . '/plugin.php' );
}
add_action( 'plugins_loaded', 'skin_load' );
function skin_fail_load_out_of_date() {
if ( ! current_user_can( 'update_plugins' ) ) {
return;
}
$file_path = 'elementor/elementor.php';
$upgrade_link = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file_path, 'upgrade-plugin_' . $file_path );
$message = '<p>' . __( 'Elementor Skin widgets is not working because you are using an old version of Elementor.', 'skin' ) . '</p>';
$message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $upgrade_link, __( 'Update Elementor Now', 'skin' ) ) . '</p>';
echo '<div class="error">' . $message . '</div>';
}