Spade
Mini Shell
| Directory:~$ /home/lmsyaran/www/administrator/components/com_phocacart/views/phocacartimports/ |
| [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 PhocaCartCpViewPhocaCartImports extends JViewLegacy
{
protected $t;
protected $r;
function display($tpl = null) {
$this->t = PhocacartUtils::setVars('import');
$this->r = new PhocacartRenderAdminviews();
$model = $this->getModel();
$this->t['count'] = $model->getItemsCountImport();
$paramsC = PhocacartUtils::getComponentParameters();
$this->t['import_export_pagination'] = $paramsC->get(
'import_export_pagination', 20 );
$this->t['count_pagination'] = 0;
if ($this->t['count'] > 0) {
if ((int)$this->t['import_export_pagination'] >
(int)$this->t['count'] ||
(int)$this->t['import_export_pagination'] ==
(int)$this->t['count']) {
$this->t['count_pagination'] = 1;
} else if ((int)$this->t['count'] >
(int)$this->t['import_export_pagination'] &&
(int)$this->t['import_export_pagination'] > 0 ) {
$this->t['count_pagination'] =
ceil((int)$this->t['count'] /
(int)$this->t['import_export_pagination']);
}
}
$media = new PhocacartRenderAdminmedia();
JHtml::stylesheet( $this->t['bootstrap'] .
'css/bootstrap.glyphicons-icons-only.min.css' );
Joomla\CMS\HTML\HTMLHelper::_('jquery.framework', false);
PhocacartRenderAdminjs::renderOverlayOnSubmit('phFormUpload');
$this->addToolbar();
parent::display($tpl);
}
function addToolbar() {
require_once
JPATH_COMPONENT.'/helpers/'.$this->t['tasks'].'.php';
$state = $this->get('State');
$class = ucfirst($this->t['tasks']).'Helper';
$canDo = $class::getActions($this->t,
$state->get('filter.import'));
JToolbarHelper::title( JText::_(
$this->t['l'].'_IMPORT' ), 'import' );
// 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.edit')) {
}
JToolbarHelper::divider();
JToolbarHelper::help( 'screen.'.$this->t['c'],
true );
}
protected function getSortFields() {
return array();
}
}
?>