%PDF- %PDF-
| Direktori : /home1/lightco1/www/lightcolab.com/administrator/components/com_jce/views/cpanel/ |
| Current File : //home1/lightco1/www/lightcolab.com/administrator/components/com_jce/views/cpanel/view.html.php |
<?php
/**
* @copyright Copyright (c) 2009-2017 Ryan Demmer. All rights reserved
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses
*/
defined('_JEXEC') or die('RESTRICTED');
wfimport('admin.classes.view');
class WFViewCpanel extends WFView
{
public function display($tpl = null)
{
wfimport('admin.models.updates');
$mainframe = JFactory::getApplication();
$model = $this->getModel();
$version = $model->getVersion();
$component = WFExtensionHelper::getComponent();
// get params definitions
$params = new WFParameter($component->params, '', 'preferences');
$canUpdate = WFModelUpdates::canUpdate() && WFModel::authorize('installer');
$options = array(
'feed' => (int) $params->get('feed', 0),
'updates' => (int) $params->get('updates', $canUpdate ? 1 : 0),
'labels' => array(
'feed' => WFText::_('WF_CPANEL_FEED_LOAD'),
'updates' => WFText::_('WF_UPDATES'),
'updates_available' => WFText::_('WF_UPDATES_AVAILABLE'),
),
);
JHtml::_('behavior.modal');
$this->addScript('components/com_jce/media/js/cpanel.js');
$this->addScriptDeclaration('Wf.cpanel.options = '.json_encode($options).';');
// load styles
$this->addStyleSheet(JURI::root(true).'/administrator/components/com_jce/media/css/cpanel.css');
if (WFModel::authorize('preferences')) {
WFToolbarHelper::preferences();
}
if ($canUpdate) {
WFToolbarHelper::updates($canUpdate);
}
WFToolbarHelper::help('cpanel.about');
$views = array('config', 'profiles', 'browser', 'mediabox');
$icons = array();
$map = array(
'profiles' => 'users',
'config' => 'equalizer',
'installer' => 'puzzle',
'browser' => 'picture',
'mediabox' => 'pictures',
);
foreach ($views as $view) {
// check if its allowed...
if (WFModel::authorize($view) === false) {
continue;
}
$attribs = array('target="_self"');
$title = 'WF_'.strtoupper($view);
$description = 'WF_'.strtoupper($view).'_DESC';
$link = 'index.php?option=com_jce&view='.$view;
if ($view == 'browser') {
$link = WFModel::getBrowserLink();
$component = WFExtensionHelper::getComponent();
// get params definitions
$params = new WFParameter($component->params, '', 'preferences');
$width = (int) $params->get('browser_width', 1024);
$height = (int) $params->get('browser_height', 768);
if (empty($link)) {
continue;
}
$attribs = array('target="_blank"', 'class="browser"', 'onclick="Joomla.modal(this, \''.$link.'\', 974, 708);return false;"');
$title = 'WF_'.strtoupper($view).'_TITLE';
$description = 'WF_CPANEL_'.strtoupper($view);
}
// if its mediabox, check the plugin is installed and enabled
if ($view == 'mediabox' && !JPluginHelper::isEnabled('system', 'jcemediabox')) {
continue;
}
if ($view === 'installer') {
$link = 'index.php?option=com_installer';
}
$icons[] = '<li class="span2"><a id="wf-browser-link" class="thumbnail" title="'.WFText::_($description).'" href="'.$link.'"'.implode(' ', $attribs).'><i class="icon-'.$map[$view].'"></i><h6 class="thumbnail-title text-center">'.WFText::_($title).'</h6></a></li>';
}
$this->assign('icons', $icons);
$this->assign('model', $model);
$this->assign('params', $params);
if (WF_EDITOR_PRO) {
$version = '<span class="label label-info">Pro</span> '.$version;
}
$this->assign('version', $version);
parent::display($tpl);
}
}