uawdijnntqw1x1x1
IP : 216.73.216.84
Hostname : webm003.cluster107.gra.hosting.ovh.net
Kernel : Linux webm003.cluster107.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
opticamezl
/
www
/
newok
/
tmp
/
..
/
libraries
/
allediaframework
/
..
/
xef
/
.
/
bootstrap.php
/
/
<?php /** * XEF - ThemeXpert Extension Framework * * An extension development framework for ThemeXpert * * @package XEF - ThemeXpert Extension Framework * @author ThemeXpert Team * @copyright Copyright (c) 2010 - 2012, ThemeXpert. * @license GNU General Public License version 3, or later * @link http://www.themexpert.com * @since 1.1 */ // Protect from unauthorized access defined('_JEXEC') or die(); /** * * Bootstrap the framework and provide common functionality * */ /* * ------------------------------------------------------ * Check PHP version and EJECT if older version detected * ------------------------------------------------------ */ if(defined('PHP_VERSION')) { $version = PHP_VERSION; } elseif(function_exists('phpversion')) { $version = phpversion(); } else { // No version info. I'll lie and hope for the best. $version = '5.0.0'; } // Old PHP version detected. EJECT! EJECT! EJECT! if(!version_compare($version, '5.2.7', '>=')) { return; } /* * ------------------------------------------------------ * Set the framework * ------------------------------------------------------ */ if( !defined('XEF_INCLUDED') ) { define('XEF_INCLUDED', 1); } /* * ------------------------------------------------------ * Check Joomla version and set the constant * ------------------------------------------------------ */ if( !defined('XEF_JVERSION') ) { if ( version_compare(JVERSION, '2.5', 'ge') && version_compare(JVERSION, '3.0', 'lt') ) { define('XEF_JVERSION', '25'); }else{ define('XEF_JVERSION', '30'); } } /* * ------------------------------------------------------ * Load the global utilities class * ------------------------------------------------------ */ if( !class_exists('XEFUtility') ) { require_once JPATH_LIBRARIES . '/xef/utility.php'; } // ------------------------------------------------------ if ( ! function_exists('importSource')) { /** * Import source file by given source name * * @params string $name name of the content soruce * * @return string $class_name Name of the class */ function importSource($name) { $path = JPATH_LIBRARIES . '/xef/sources/'; // Class prefix utilize XEF framework $prefix = 'XEFSource'; // Class name based on given source name $class_name = $prefix. ucfirst($name); if( ! class_exists($class_name) ) { require_once ($path . strtolower($name) . '/' . $name . '.php'); } return $class_name; } } // ------------------------------------------------------ if ( ! function_exists('curlExist')) { function curlExist() { } }
/home/opticamezl/www/newok/tmp/../libraries/allediaframework/../xef/./bootstrap.php