File: //proc/self/cwd/wp-content/plugins/essential-grid/essential-grid.php
<?php
/**
* Essential Grid
*
* @package Essential_Grid
* @author ThemePunch <info@themepunch.com>
* @link https://www.essential-grid.com/
* @copyright 2025 ThemePunch
*
* @wordpress-plugin
* Plugin Name: Essential Grid
* Plugin URI: https://www.essential-grid.com
* Description: Essential Grid - Inject life into your websites using the most impressive WordPress gallery plugin
* Version: 3.1.10
* Requires at least: 6.0
* Requires PHP: 7.4
* Author: ThemePunch
* Author URI: https://themepunch.com
* Text Domain: essential-grid
* Domain Path: /languages
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
if ( class_exists( 'Essential_Grid' ) ) {
die( 'ERROR: It looks like you have more than one instance of Essential Grid installed. Please remove additional instances for this plugin to work again.' );
}
define( 'ESG_REVISION', '3.1.10' );
define( 'ESG_TP_TOOLS', '6.7.36' );
define( 'ESG_PLUGIN_SLUG', 'essential-grid' );
define( 'ESG_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
define( 'ESG_PLUGIN_SLUG_PATH', plugin_basename( __FILE__ ) );
define( 'ESG_PLUGIN_ADMIN_PATH', ESG_PLUGIN_PATH . 'admin/' );
define( 'ESG_PLUGIN_PUBLIC_PATH', ESG_PLUGIN_PATH . 'public/' );
define( 'ESG_PLUGIN_URL', trailingslashit( plugins_url('', __FILE__) ) );
require_once ESG_PLUGIN_PATH . 'includes/init.class.php';
new Essential_Grid_Init( __FILE__ );