Server IP : 195.201.23.43 / Your IP : 3.144.252.138 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/kdecoratie/public_html/media/fef/ |
Upload File : |
<?php /** * @package AkeebaFEF * @copyright Copyright (c)2017-2019 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ // Protect from unauthorized access defined('_JEXEC') or die(); if (!defined('FOF30_INCLUDED') && !@include_once(JPATH_LIBRARIES . '/fof30/include.php')) { throw new RuntimeException('FOF 3.x is required by Akeeba FEF but it is not currently installed', 500); } if (!@include_once (__DIR__ . '/version.php') && !defined('AKEEBAFEF_VERSION')) { define('AKEEBAFEF_VERSION', 'dev'); define('AKEEBAFEF_DATE', gmdate('Y-m-d')); } class AkeebaFEFHelper { /** * Media versioning tag * * @var string */ public static $tag = null; /** * Is FEF already loaded? * * @var bool */ public static $loaded = false; /** * Loads Akeeba Frontend Framework, both CSS and JS * * @param bool $withReset Should I also load the CSS reset for the FEF container? * * @return void */ public static function load($withReset = true) { if (self::$loaded) { return; } if ($withReset) { self::loadCSS('fef/reset.min.css'); } self::loadCSS('fef/style.min.css'); self::loadJS('fef/tabs.min.js'); self::loadJS('fef/dropdown.min.js'); self::$loaded = true; } /** * Helper method to load a JavaScript file using the ever-changing Joomla! API. * * Special considerations: * * Always use the minified version of the file. Joomla! will autoamtically use the non-minified one if Debug Site is * enabled. If you use a .min.js extension the non-minified file is expected to have a .js extension. If your * minified file has a plain .js extension then the non-minified file will be called <original name>-uncompressed.js * * You can have browser-specific files, e.g. foo_firefox.min.js, foo_firefox_57.min.js etc. These are loaded * automatically instead of the foo.js file as needed. * * This method goes through Joomla's script loader, thus allowing template media overrides. The media overrides are * supposed to be in the templates/YOUR_TEMPLATE/js/fef folder for FEF. * * @param string $file The Joomla!-coded path of the file, e.g. 'foo/bar.min.js' for the JavaScript file * media/foo/js/bar.min.js * * @return void */ protected static function loadJS($file) { if (version_compare(JVERSION, '3.6.999', 'le')) { JHtml::_('script', $file, [ 'version' => self::getMediaVersion(), 'relative' => true, 'detectDebug' => true, ], false, false, false, true); } // Joomla! 3.7 is broken. We have to use the new method AND MAKE SURE $attribs IS NOT EMPTY. else { JHtml::_('script', $file, [ 'version' => self::getMediaVersion(), 'relative' => true, 'detectDebug' => true, 'framework' => false, 'pathOnly' => false, 'detectBrowser' => true, ], [ 'defer' => false, 'async' => false, ]); } } /** * Helper method to load a CSS file using the ever-changing Joomla! API. * * Special considerations: * * Always use the minified version of the file. Joomla! will autoamtically use the non-minified one if Debug Site is * enabled. If you use a .min.css extension the non-minified file is expected to have a .css extension. If your * minified file has a plain .css extension then the non-minified file will be called * <original name>-uncompressed.css * * You can have browser-specific files, e.g. foo_firefox.min.css, foo_firefox_57.min.css etc. These are loaded * automatically instead of the foo.css file as needed. * * This method goes through Joomla's script loader, thus allowing template media overrides. The media overrides are * supposed to be in the templates/YOUR_TEMPLATE/css/fef folder for FEF. * * @param string $file The Joomla!-coded path of the file, e.g. 'foo/bar.min.js' for the JavaScript file * media/foo/js/bar.min.js * * @return void */ protected static function loadCSS($file) { if (version_compare(JVERSION, '3.6.999', 'le')) { JHtml::_('stylesheet', $file, [ 'version' => self::getMediaVersion(), 'relative' => true, 'detectDebug' => true, ], true, false, false, true); } // Joomla! 3.7 is broken. We have to use the new method AND MAKE SURE $attribs IS NOT EMPTY. else { JHtml::_('stylesheet', $file, [ 'version' => self::getMediaVersion(), 'relative' => true, 'detectDebug' => true, 'pathOnly' => false, 'detectBrowser' => true, ], [ 'type' => 'text/css', ]); } } /** * Get the media versioning tag. If it's not set, create one first. * * @return string */ protected static function getMediaVersion() { if (empty(self::$tag)) { self::$tag = md5(AKEEBAFEF_VERSION . AKEEBAFEF_DATE . self::getApplicationSecret()); } return self::$tag; } /** * Return the secret key for the Joomla! installation. If we cannot get access to it we return the MD5 of the * current file's modification date and time. This is enough to obfuscate the media version enough to make sure that * two identical versions on two different sites will yield a different media version. * * @return mixed|string */ protected static function getApplicationSecret() { // Get the site's secret try { $app = \JFactory::getApplication(); if (method_exists($app, 'get')) { $secret = $app->get('secret'); } } catch (\Exception $e) { $secret = md5(filemtime(__FILE__)); } return $secret; } }Private