????JFIF??x?x????'
Server IP : 104.21.80.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/robo-gallery/ |
Upload File : |
<?php /* Plugin Name: Robo Gallery Plugin URI: https://robosoft.co/gallery Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lightbox, portfolio gallery, responsive gallery Version: 5.0.0 Author: RoboSoft Author URI: https://robosoft.co/gallery License: GPLv3 or later Text Domain: robo-gallery Domain Path: /languages */ if( !defined('WPINC') ) die; define("ROBO_GALLERY_VERSION", '5.0.0'); define("ROBO_GALLERY", 1 ); define("ROBO_GALLERY_DEV", false); // Define the base directory and file of the project define("ROBO_GALLERY_MAIN_FILE", __FILE__ ); define('ROBO_GALLERY_BASE_DIR', __DIR__); // Project root where the "app" folder is located define("ROBO_GALLERY_OPTIONS", 'rbs_opt_' ); define( "ROBO_GALLERY_PREFIX", 'rsg_'); define("ROBO_GALLERY_TYPE_POST", 'robo_gallery_table'); define("ROBO_GALLERY_THEME_POST", 'robo_gallery_theme_type'); define("ROBO_GALLERY_NAMESPACE", 'robo_gallery_'); define("ROBO_GALLERY_ASSETS_PREFIX", 'robo_gallery_assets_'); define("ROBO_GALLERY_PATH", plugin_dir_path( ROBO_GALLERY_MAIN_FILE ) ); define("ROBO_GALLERY_URL", plugin_dir_url( ROBO_GALLERY_MAIN_FILE ) ); define("ROBO_GALLERY_INCLUDES_PATH", ROBO_GALLERY_PATH.'includes/'); define("ROBO_GALLERY_VENDOR_PATH", ROBO_GALLERY_PATH.'vendor/'); define("ROBO_GALLERY_CACHE_CSS_PATH", ROBO_GALLERY_PATH.'cache/css/'); define("ROBO_GALLERY_CACHE_CSS_URL", ROBO_GALLERY_URL.'cache/css/'); define("ROBO_GALLERY_FRONTEND_PATH", ROBO_GALLERY_INCLUDES_PATH.'frontend/'); define("ROBO_GALLERY_FRONTEND_EXT_PATH", ROBO_GALLERY_FRONTEND_PATH.'extensions/'); define("ROBO_GALLERY_FRONTEND_MODULES_PATH",ROBO_GALLERY_FRONTEND_PATH.'modules/'); define("ROBO_GALLERY_OPTIONS_PATH", ROBO_GALLERY_INCLUDES_PATH.'options/'); define("ROBO_GALLERY_EXTENSIONS_PATH", ROBO_GALLERY_INCLUDES_PATH.'extensions/'); /* fields */ define("ROBO_GALLERY_CMB_PATH", ROBO_GALLERY_PATH.'cmbre2/'); define("ROBO_GALLERY_CMB_FIELDS_PATH", ROBO_GALLERY_CMB_PATH.'fields/'); define("ROBO_GALLERY_APP_PATH", ROBO_GALLERY_PATH.'app/'); define("ROBO_GALLERY_APP_EXTENSIONS_PATH", ROBO_GALLERY_APP_PATH.'extensions/'); define('ROBO_GALLERY_URL_ADDONS', admin_url( 'edit.php?post_type='.ROBO_GALLERY_TYPE_POST.'&page=robo_gallery_table-addons' )); define('ROBO_GALLERY_URL_UPDATEPRO', 'https://robosoft.co/go.php?product=gallery&task=gopro'); define('ROBO_GALLERY_URL_UPDATEKEY', 'https://robosoft.co/go.php?product=gallery&task=updatekey'); include_once( ROBO_GALLERY_PATH.'autoload.php' ); /* activation */ new \RoboGallery\app\extensions\activation\Install(); //include_once ROBO_GALLERY_APP_EXTENSIONS_PATH.'activation/init.php'; /* core function */ include_once ROBO_GALLERY_APP_EXTENSIONS_PATH.'core/init.php'; /* key */ include_once ROBO_GALLERY_APP_EXTENSIONS_PATH.'key/init.php'; /* language */ include_once ROBO_GALLERY_APP_EXTENSIONS_PATH.'language/init.php'; /* legacy */ require_once ROBO_GALLERY_INCLUDES_PATH.'rbs_gallery_init.php'; /* app */ require_once ROBO_GALLERY_APP_PATH.'app.php';