PluginProbe
Ultimate Post Kit / trunk
Ultimate Post Kit vtrunk
4.2.1 4.2.2 4.2.3 4.5.0 4.5.2 4.5.3 4.2.0 4.1.18 4.1.17 4.1.16 4.1.15 4.1.14 4.1.13 4.1.12 4.1.11 4.1.10 4.1.9 4.1.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.1.5 All 145 releases
ultimate-post-kit / base / module-base.php

module-base.php in Ultimate Post Kit trunk, at base/module-base.php

22 lines 493 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace UltimatePostKit\Base;
4
5 use Elementor\Widget_Base;
6 use UltimatePostKit\Ultimate_Post_Kit_Loader;
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit; // Exit if accessed directly.
10 }
11
12 abstract class Module_Base extends Widget_Base {
13
14 protected function upk_is_edit_mode(){
15
16 if(Ultimate_Post_Kit_Loader::elementor()->preview->is_preview_mode() || Ultimate_Post_Kit_Loader::elementor()->editor->is_edit_mode() ){
17 return true;
18 }
19
20 return false;
21 }
22 }