? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/public_html/old/administrator/modules/mod_jcefilebrowser/
File Upload :
Current File : /home/admin/public_html/old/administrator/modules/mod_jcefilebrowser/mod_jcefilebrowser.php

<?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';
?>
<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 WFBrowserHelper::getBrowserLink('', $filter); ?>">
                <span class="jce-file-browser"></span>
                <span><?php echo JText::_('WF_QUICKICON_BROWSER'); ?></span>
            </a>
        </div>
    </div>
</div>

T1KUS90T
  root-grov@210.1.60.28:~$