| Current Path : /home/helpink/www/administrator/components/com_jbusinessdirectory/views/orders/ |
| Current File : /home/helpink/www/administrator/components/com_jbusinessdirectory/views/orders/view.html.php |
<?php
/**
* @package J-BusinessDirectory
*
* @author CMSJunkie http://www.cmsjunkie.com/
* @copyright Copyright (C) 2007 - 2022 CMSJunkie. All rights reserved.
* @license https://www.gnu.org/licenses/agpl-3.0.en.html
*/
defined('_JEXEC') or die('Restricted access');
require_once HELPERS_PATH.'/helper.php';
/**
* The HTML Menus Menu Menus View.
*
* @order Joomlp.Administrator
* @suborder com_jbusinessdirectory
*/
class JBusinessDirectoryViewOrders extends JBusinessDirectoryAdminView {
protected $items;
protected $pagination;
protected $state;
/**
* Display the view
*/
public function display($tpl = null) {
$this->items = $this->get('Items');
$this->pagination = $this->get('Pagination');
$this->state = $this->get('State');
$this->logs = $this->get('Logs');
$this->appSettings = JBusinessUtil::getApplicationSettings();
$this->states = JBusinessDirectoryHelper::getOrderStates();
$this->filterForm = $this->get('FilterForm');
$this->activeFilters = $this->get('ActiveFilters');
JBusinessDirectoryHelper::addSubmenu('orders');
// Check for errors.
if (count($errors = $this->get('Errors'))) {
JFactory::getApplication()->enqueueMessage(implode("\n", $errors), 'error');
return false;
}
$this->addToolbar();
parent::display($tpl);
}
/**
* Add the page title and toolbar.
*
* @since 1.6
*/
protected function addToolbar() {
$canDo = JBusinessDirectoryHelper::getActions();
$bar = JToolBar::getInstance('toolbar');
JToolBarHelper::title('J-BusinessDirectory : '.JText::_('LNG_ORDERS'), 'generic.png');
//JToolbarHelper::addNew('order.add');
if (($canDo->get('core.edit'))) {
JToolbarHelper::editList('order.edit');
}
if ($canDo->get('core.delete')) {
JToolbarHelper::divider();
JToolbarHelper::deleteList('', 'orders.delete');
}
if ($canDo->get('core.admin')) {
JToolbarHelper::preferences('com_jbusinessdirectory');
}
if ($canDo->get('core.create')) {
$dhtml = '<joomla-toolbar-button><button data-toggle="modal" onclick="jQuery( \'#collapseModal\' ).jbdModal({attachTo: \'adminForm\'});" class="btn btn-small">
<i class="icon-checkbox-partial" title="'.JText::_('JTOOLBAR_BATCH').'"></i>'.JText::_('JTOOLBAR_BATCH').'</button></joomla-toolbar-button>';
$bar->appendButton('Custom', $dhtml, 'batch');
}
$dhtml = '<joomla-toolbar-button><button data-toggle="modal" onclick="jQuery( \'#export-model\' ).jbdModal({attachTo: \'adminForm\'});" class="btn btn-small">
<i class="icon-download" title="'.JText::_('LNG_EXPORT_CSV').'"></i>'.JText::_('LNG_EXPORT_CSV').'</button></joomla-toolbar-button>';
$bar->appendButton('Custom', $dhtml, 'orders.showExportCsv');
$dhtml = '<joomla-toolbar-button><button data-toggle="modal" onclick="jQuery( \'#logs-model\' ).jbdModal({attachTo: \'adminForm\'});" class="btn btn-small">
<i class="icon-link" title="'.JText::_('LNG_VIEW_LOGS').'"></i>'.JText::_('LNG_VIEW_LOGS').'</button></joomla-toolbar-button>';
$bar->appendButton('Custom', $dhtml, 'orders.showLogs');
JToolbarHelper::divider();
JToolBarHelper::custom('orders.back', 'dashboard', 'dashboard', JText::_("LNG_CONTROL_PANEL"), false, false);
JToolBarHelper::help('', false, DOCUMENTATION_URL.'businessdiradmin.html#orders');
}
/**
* Returns an array of fields the table can be sorted by
*
* @return array Array containing the field name to sort by as the key and display text as value
*
* @since 3.0
*/
protected function getSortFields() {
return array(
'p.ordering' => JText::_('JGRID_HEADING_ORDERING'),
'p.status' => JText::_('JSTATUS'),
'p.name' => JText::_('JGLOBAL_TITLE'),
'p.id' => JText::_('JGRID_HEADING_ID')
);
}
}