PHP 8.2.31
Preview: builders.class.php Size: 1.24 KB
/home/nshryvcy/taramarriagebureau.com/wp-content/plugins/essential-grid/admin/includes/builders.class.php

<?php
/**
 * @package   Essential_Grid
 * @author    ThemePunch <info@themepunch.com>
 * @link      https://www.essential-grid.com/
 * @copyright 2025 ThemePunch
 */

if( !defined( 'ABSPATH') ) exit();

/**
 * Add Builders support
 */
class Essential_Grid_Builders {

	/**
	 * Instance of this class.
	 * @var null|object
	 */
	protected static $instance = null;

	/**
	 * Return an instance of this class.
	 * @return    object    A single instance of this class.
	 */
	public static function get_instance() {
		if ( null == self::$instance ) {
			self::$instance = new self;
		}

		return self::$instance;
	}

	private function __construct() {
		new Essential_Grid_Builders_WPBakery();
		new Essential_Grid_Builders_Elementor();
		new Essential_Grid_Builders_Gutenberg();

		if ( $this->check_pagenow() ) {
			add_action( 'in_admin_footer', [ 'Essential_Grid_Dialogs', 'essgrid_add_shortcode_builder' ] );
			add_action( 'customize_controls_print_footer_scripts', [ 'Essential_Grid_Dialogs', 'essgrid_add_shortcode_builder' ] );
		}
	}

	/**
	 * check if current page should have shortcode builder
	 *
	 * @return bool
	 */
	public function check_pagenow() {
		global $pagenow;

		return in_array( $pagenow, [ 'widgets.php', 'customize.php', 'site-editor.php' ] );
	}
}

Directory Contents

Dirs: 1 × Files: 15

Name Size Perms Modified Actions
builders DIR
- drwxr-xr-x 2025-04-30 03:18:09
Edit Download
11.49 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
1.24 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
61.32 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
8.07 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
1.67 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
7.58 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
8.26 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
17.20 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
26 B lrw-r--r-- 2025-04-30 03:18:09
Edit Download
16.63 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
1.61 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
3.94 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
1.67 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
64.89 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download
6.03 KB lrw-r--r-- 2025-04-30 03:18:09
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).