%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/tmp/install_542b791cd56cc/packages/module/ |
Upload File : |
<?php // no direct access defined('_JEXEC') or die('Restricted access'); $app = JFactory::getApplication(); // only in Admin and only if the component is enabled if ($app->isSite() || JComponentHelper::getComponent('com_jce', true)->enabled === false) { return; } @include_once(JPATH_ADMINISTRATOR . '/components/com_jce/models/model.php'); // check for class to prevent fatal errors and authorize if (!class_exists('WFModel') || WFModel::authorize('browser') === false) { return; } JHtml::_('behavior.modal'); require_once(JPATH_ADMINISTRATOR . '/components/com_jce/helpers/browser.php'); $language = JFactory::getLanguage(); $language->load('com_jce', JPATH_ADMINISTRATOR); $document = JFactory::getDocument(); $document->addStyleSheet('components/com_jce/media/css/module.css'); $module = JModuleHelper::getModule('mod_jcefilebrowser'); $width = 800; $height = 600; $filter = ''; if ($module) { $params = new JParameter($module->params); $width = $params->get('width', 800); $height = $params->get('height', 600); $filter = $params->get('filter', ''); } $float = $language->isRTL() ? 'right' : 'left'; $link = WFBrowserHelper::getBrowserLink('', $filter); // if no link given, no output if (empty($link)) { return; } ?> <div id="cpanel"> <div class="icon-wrapper" style="float:<?php echo $float; ?>;"> <div class="icon"> <a class="modal" rel="{handler: 'iframe', size: {x: <?php echo $width; ?>, y: <?php echo $height; ?>}}" href="<?php echo $link; ?>"> <span class="jce-file-browser"></span> <span><?php echo JText::_('WF_QUICKICON_BROWSER'); ?></span> </a> </div> </div> </div>