controls
1 year ago
pa-display-conditions
1 year ago
templates
1 year ago
acf-helper.php
1 year ago
addons-cross-cp.php
1 year ago
addons-integration.php
1 year ago
assets-manager.php
1 year ago
class-pa-core.php
1 year ago
class-premium-template-tags.php
1 year ago
helper-functions.php
1 year ago
live-editor-modal.php
1 year ago
module-base.php
1 year ago
pa-nav-menu-walker.php
1 year ago
class-pa-core.php
269 lines
| 1 | <?php |
| 2 | /** |
| 3 | * PA Core. |
| 4 | */ |
| 5 | |
| 6 | namespace PremiumAddons\Includes; |
| 7 | |
| 8 | if ( ! class_exists( 'PA_Core' ) ) { |
| 9 | |
| 10 | /** |
| 11 | * Intialize and Sets up the plugin |
| 12 | */ |
| 13 | class PA_Core { |
| 14 | |
| 15 | /** |
| 16 | * Member Variable |
| 17 | * |
| 18 | * @var instance |
| 19 | */ |
| 20 | private static $instance = null; |
| 21 | |
| 22 | /** |
| 23 | * Sets up needed actions/filters for the plug-in to initialize. |
| 24 | * |
| 25 | * @since 1.0.0 |
| 26 | * @access public |
| 27 | * |
| 28 | * @return void |
| 29 | */ |
| 30 | public function __construct() { |
| 31 | |
| 32 | // Autoloader. |
| 33 | spl_autoload_register( array( $this, 'autoload' ) ); |
| 34 | |
| 35 | // Load plugin textdomain. |
| 36 | add_action( 'init', array( $this, 'i18n' ) ); |
| 37 | |
| 38 | // Run plugin and require the necessary files. |
| 39 | add_action( 'plugins_loaded', array( $this, 'premium_addons_elementor_setup' ) ); |
| 40 | |
| 41 | // Load Elementor files. |
| 42 | add_action( 'elementor/init', array( $this, 'elementor_init' ) ); |
| 43 | |
| 44 | add_action( 'elementor/elements/categories_registered', array( $this, 'register_widgets_category' ), 9 ); |
| 45 | add_action( 'init', array( $this, 'init' ), -999 ); |
| 46 | |
| 47 | // Register Activation hooks. |
| 48 | register_activation_hook( PREMIUM_ADDONS_FILE, array( $this, 'handle_activation' ) ); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * AutoLoad |
| 53 | * |
| 54 | * @since 3.20.9 |
| 55 | * @param string $class class. |
| 56 | */ |
| 57 | public function autoload( $class ) { |
| 58 | |
| 59 | if ( 0 !== strpos( $class, 'PremiumAddons' ) ) { |
| 60 | return; |
| 61 | } |
| 62 | |
| 63 | $class_to_load = $class; |
| 64 | |
| 65 | if ( ! class_exists( $class_to_load ) ) { |
| 66 | $filename = strtolower( |
| 67 | preg_replace( |
| 68 | array( '/^PremiumAddons\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ), |
| 69 | array( '', '$1-$2', '-', DIRECTORY_SEPARATOR ), |
| 70 | $class_to_load |
| 71 | ) |
| 72 | ); |
| 73 | |
| 74 | $filename = PREMIUM_ADDONS_PATH . $filename . '.php'; |
| 75 | |
| 76 | if ( is_readable( $filename ) ) { |
| 77 | include $filename; |
| 78 | } |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Installs translation text domain and checks if Elementor is installed |
| 84 | * |
| 85 | * @since 1.0.0 |
| 86 | * @access public |
| 87 | * |
| 88 | * @return void |
| 89 | */ |
| 90 | public function premium_addons_elementor_setup() { |
| 91 | |
| 92 | // load plugin necessary files. |
| 93 | $this->load_files(); |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Set transient for admin review notice |
| 98 | * |
| 99 | * @since 3.1.7 |
| 100 | * @access public |
| 101 | * |
| 102 | * @return void |
| 103 | */ |
| 104 | public function handle_activation() { |
| 105 | |
| 106 | $cache_key = 'premium_notice_' . PREMIUM_ADDONS_VERSION; |
| 107 | |
| 108 | $expiration = DAY_IN_SECONDS * 7; |
| 109 | |
| 110 | set_transient( $cache_key, true, $expiration ); |
| 111 | |
| 112 | $install_time = get_option( 'pa_install_time' ); |
| 113 | |
| 114 | if ( ! $install_time ) { |
| 115 | |
| 116 | $current_time = gmdate( 'j F, Y', time() ); |
| 117 | |
| 118 | update_option( 'pa_install_time', $current_time ); |
| 119 | |
| 120 | $api_url = 'https://feedbackpa.leap13.com/wp-json/install/v2/add'; |
| 121 | |
| 122 | $response = wp_safe_remote_request( |
| 123 | $api_url, |
| 124 | array( |
| 125 | 'headers' => array( |
| 126 | 'Content-Type' => 'application/json', |
| 127 | ), |
| 128 | 'body' => wp_json_encode( |
| 129 | array( |
| 130 | 'time' => $current_time, |
| 131 | ) |
| 132 | ), |
| 133 | 'timeout' => 20, |
| 134 | 'method' => 'POST', |
| 135 | 'httpversion' => '1.1', |
| 136 | ) |
| 137 | ); |
| 138 | |
| 139 | set_transient( 'pa_activation_redirect', true, 30 ); |
| 140 | |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | |
| 145 | /** |
| 146 | * Require initial necessary files |
| 147 | * |
| 148 | * @since 2.6.8 |
| 149 | * @access public |
| 150 | * |
| 151 | * @return void |
| 152 | */ |
| 153 | public function load_files() { |
| 154 | |
| 155 | \PremiumAddons\Admin\Includes\Admin_Helper::get_instance(); |
| 156 | |
| 157 | $check_dynamic_assets = \PremiumAddons\Admin\Includes\Admin_Helper::check_element_by_key( 'premium-assets-generator' ); |
| 158 | |
| 159 | if ( $check_dynamic_assets ) { |
| 160 | \PremiumAddons\Includes\Assets_Manager::get_instance(); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | /** |
| 165 | * Load plugin translated strings using text domain |
| 166 | * |
| 167 | * @since 2.6.8 |
| 168 | * @access public |
| 169 | * |
| 170 | * @return void |
| 171 | */ |
| 172 | public function i18n() { |
| 173 | |
| 174 | load_plugin_textdomain( 'premium-addons-for-elementor' ); |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * Elementor Init |
| 179 | * |
| 180 | * Initialize plugin after Elementor is run. |
| 181 | * |
| 182 | * @since 2.6.8 |
| 183 | * @access public |
| 184 | * |
| 185 | * @return void |
| 186 | */ |
| 187 | public function elementor_init() { |
| 188 | |
| 189 | require_once PREMIUM_ADDONS_PATH . 'includes/class-premium-template-tags.php'; |
| 190 | |
| 191 | // Outdated WPML compatibility. |
| 192 | // Compatibility\Premium_Addons_Wpml::get_instance(); |
| 193 | |
| 194 | Addons_Integration::get_instance(); |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * Register Widgets Category |
| 199 | * |
| 200 | * Register a new category for Premium Addons widgets |
| 201 | * |
| 202 | * @since 4.0.0 |
| 203 | * @access public |
| 204 | * |
| 205 | * @param object $elements_manager elements manager. |
| 206 | */ |
| 207 | public function register_widgets_category( $elements_manager ) { |
| 208 | |
| 209 | $elements_manager->add_category( |
| 210 | 'premium-elements', |
| 211 | array( |
| 212 | 'title' => Helper_Functions::get_category(), |
| 213 | ), |
| 214 | 1 |
| 215 | ); |
| 216 | } |
| 217 | |
| 218 | /** |
| 219 | * Init |
| 220 | * |
| 221 | * @since 3.4.0 |
| 222 | * @access public |
| 223 | * |
| 224 | * @return void |
| 225 | */ |
| 226 | public function init() { |
| 227 | |
| 228 | if ( is_user_logged_in() && \PremiumAddons\Admin\Includes\Admin_Helper::check_premium_templates() ) { |
| 229 | require_once PREMIUM_ADDONS_PATH . 'includes/templates/templates.php'; |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | |
| 234 | /** |
| 235 | * Creates and returns an instance of the class |
| 236 | * |
| 237 | * @since 2.6.8 |
| 238 | * @access public |
| 239 | * |
| 240 | * @return object |
| 241 | */ |
| 242 | public static function get_instance() { |
| 243 | |
| 244 | if ( ! isset( self::$instance ) ) { |
| 245 | |
| 246 | self::$instance = new self(); |
| 247 | |
| 248 | } |
| 249 | |
| 250 | return self::$instance; |
| 251 | } |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | if ( ! function_exists( 'pa_core' ) ) { |
| 256 | |
| 257 | /** |
| 258 | * Returns an instance of the plugin class. |
| 259 | * |
| 260 | * @since 1.0.0 |
| 261 | * @return object |
| 262 | */ |
| 263 | function pa_core() { |
| 264 | return PA_Core::get_instance(); |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | pa_core(); |
| 269 |