Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/administrator/components/com_phocacart/views/phocacartinfo/ |
| [Home] [System Details] [Kill Me] |
<?php
/* @package Joomla
* @copyright Copyright (C) Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* @extension Phoca Extension
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
*/
defined('_JEXEC') or die();
jimport('joomla.application.component.view');
class PhocaCartCpViewPhocaCartInfo extends JViewLegacy
{
protected $t;
protected $r;
public function display($tpl = null) {
$this->t = PhocacartUtils::setVars();
$this->r = new PhocacartRenderAdminview();
$media = new PhocacartRenderAdminmedia();
$this->t['version'] =
PhocacartUtils::getPhocaVersion('com_phocacart');
$this->t['component_head'] =
$this->t['l'] . '_PHOCA_CART';
$this->t['component_links'] =
$this->r->getLinks(1);
$this->addToolbar();
parent::display($tpl);
}
protected function addToolbar() {
require_once JPATH_COMPONENT . '/helpers/' .
$this->t['c'] . 'cp.php';
$class = $this->t['n'] . 'CpHelper';
$canDo = $class::getActions($this->t['c']);
JToolbarHelper::title(JText::_($this->t['l'] .
'_PM_INFO'), 'info-sign');
// This button is unnecessary but it is displayed because Joomla!
design bug
$bar = JToolbar::getInstance('toolbar');
$dhtml = '<a
href="index.php?option=com_phocacart" class="btn
btn-small"><i class="icon-home-2" title="' .
JText::_('COM_PHOCACART_CONTROL_PANEL') .
'"></i> ' .
JText::_('COM_PHOCACART_CONTROL_PANEL') . '</a>';
$bar->appendButton('Custom', $dhtml);
if ($canDo->get('core.admin')) {
JToolbarHelper::preferences('com_' .
$this->t['c']);
}
JToolbarHelper::divider();
JToolbarHelper::help('screen.' .
$this->t['c'], true);
}
}
?>