????JFIF??x?x????'
Server IP : 104.21.96.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/plugins/easy-image-collage/ |
Upload File : |
<?php /* Plugin Name: Easy Image Collage Plugin URI: Description: Create beautiful responsive image collages for all your posts and pages Version: 1.13.6 Author: Bootstrapped Ventures Author URI: https://bootstrapped.ventures License: GPLv2 Text Domain: easy-image-collage Domain Path: /lang */ define( 'EIC_VERSION', '1.13.6' ); define( 'EIC_POST_TYPE', 'eic_grid' ); class EasyImageCollage { private static $instance; private static $instantiated_by_premium; private static $addons = array(); /** * Return instance of self */ public static function get( $instantiated_by_premium = false ) { // Instantiate self only once if( is_null( self::$instance ) ) { self::$instantiated_by_premium = $instantiated_by_premium; self::$instance = new self; self::$instance->init(); } return self::$instance; } /** * Returns true if we are using the Premium version */ public static function is_premium_active() { return self::$instantiated_by_premium; } /** * Add loaded addon to array of loaded addons */ public static function loaded_addon( $addon, $instance ) { if( !array_key_exists( $addon, self::$addons ) ) { self::$addons[$addon] = $instance; } } /** * Returns true if the specified addon has been loaded */ public static function is_addon_active( $addon ) { return array_key_exists( $addon, self::$addons ); } public static function addon( $addon ) { if( isset( self::$addons[$addon] ) ) { return self::$addons[$addon]; } return false; } /** * Access a VafPress option with optional default value */ public static function option( $name, $default = null ) { $option = vp_option( 'eic_option.' . $name ); return is_null( $option ) ? $default : $option; } public $pluginName = 'easy-image-collage'; public $coreDir; public $corePath; public $coreUrl; public $pluginFile; protected $helper_dirs = array(); protected $helpers = array(); /** * Initialize */ public function init() { // Load external libraries require_once( 'vendor/vafpress/bootstrap.php' ); // Update plugin version update_option( $this->pluginName . '_version', EIC_VERSION ); // Set core directory, URL and main plugin file $this->corePath = str_replace( '/easy-image-collage.php', '', plugin_basename( __FILE__ ) ); $this->coreDir = apply_filters( 'eic_core_dir', WP_PLUGIN_DIR . '/' . $this->corePath ); $this->coreUrl = apply_filters( 'eic_core_url', plugins_url() . '/' . $this->corePath ); $this->pluginFile = apply_filters( 'eic_plugin_file', __FILE__ ); // Load textdomain if( !self::is_premium_active() ) { $domain = 'easy-image-collage'; $locale = apply_filters( 'plugin_locale', get_locale(), $domain ); load_textdomain( $domain, WP_LANG_DIR.'/'.$domain.'/'.$domain.'-'.$locale.'.mo' ); load_plugin_textdomain( $domain, false, basename( dirname( __FILE__ ) ) . '/lang/' ); } // Add core helper directory $this->add_helper_directory( $this->coreDir . '/helpers' ); // Load requires helpers $this->helper( 'assets' ); $this->helper( 'blocks' ); $this->helper( 'marketing' ); $this->helper( 'post_type' ); $this->helper( 'shortcode' ); $this->helper( 'vafpress' ); // Include required helpers but don't instantiate $this->include_helper( 'addons/addon' ); $this->include_helper( 'addons/premium_addon' ); $this->include_helper( 'models/grid' ); // Load required helpers (admin only) if( is_admin() ) { $this->helper( 'ajax' ); $this->helper( 'plugin_action_link' ); $this->helper( 'privacy' ); $this->helper( 'shortcode_button' ); } } /** * Access a helper. Will instantiate if helper hasn't been loaded before. */ public function helper( $helper ) { // Lazy instantiate helper if( !isset( $this->helpers[$helper] ) ) { $this->include_helper( $helper ); // Get class name from filename $class_name = 'EIC'; $dirs = explode( '/', $helper ); $file = end( $dirs ); $name_parts = explode( '_', $file ); foreach( $name_parts as $name_part ) { $class_name .= '_' . ucfirst( $name_part ); } // Instantiate class if exists if( class_exists( $class_name ) ) { $this->helpers[$helper] = new $class_name(); } } // Return helper instance return $this->helpers[$helper]; } /** * Include a helper. Looks through all helper directories that have been added. */ public function include_helper( $helper ) { foreach( $this->helper_dirs as $dir ) { $file = $dir . '/'.$helper.'.php'; if( file_exists( $file ) ) { require_once( $file ); } } } /** * Add a directory to look for helpers. */ public function add_helper_directory( $dir ) { if( is_dir( $dir ) ) { $this->helper_dirs[] = $dir; } } /* * Quick access functions */ } // Premium version is responsible for instantiating if available if( !class_exists( 'EasyImageCollagePremium' ) ) { EasyImageCollage::get(); }