PluginProbe
Pixel Gallery Addons for Elementor – Easy Grid, Creative Gallery, Drag and Drop Grid, Custom Grid Layout, Portfolio Gallery / trunk
Pixel Gallery Addons for Elementor – Easy Grid, Creative Gallery, Drag and Drop Grid, Custom Grid Layout, Portfolio Gallery vtrunk
2.1.14 2.1.13 2.1.12 2.1.11 2.1.10 2.1.9 2.1.8 2.1.7 trunk 1.2.2 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.4.0 1.4.1 1.4.10 1.4.11 1.4.2 1.4.3 1.4.5 1.4.6 All 74 releases
pixel-gallery / base / module-base.php

module-base.php in Pixel Gallery Addons for Elementor – Easy Grid, Creative Gallery, Drag and Drop Grid, Custom Grid Layout, Portfolio Gallery trunk, at base/module-base.php

24 lines 477 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace PixelGallery\Base;
4
5 use Elementor\Widget_Base;
6 use PixelGallery\Pixel_Gallery_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 pg_is_edit_mode() {
15
16 if ( Pixel_Gallery_Loader::elementor()->preview->is_preview_mode() || Pixel_Gallery_Loader::elementor()->editor->is_edit_mode() ) {
17 return true;
18 }
19
20 return false;
21 }
22 }
23
24