| Current Path : /home/bateauecpx/www/administrator/components/com_timetable/views/columns/ |
| Current File : /home/bateauecpx/www/administrator/components/com_timetable/views/columns/view.html.php |
<?php
/**
* @author QuanticaLabs - http://codecanyon.net/user/QuanticaLabs/portfolio?ref=QuanticaLabs
*
* @link http://codecanyon.net/item/timetable-responsive-schedule-for-joomla/9749539?ref=QuanticaLabs
* @copyright Copyright (C) 2008 - 2014 quanticalabs.com . All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE under Licensing/ directory
*/
defined('_JEXEC') or die('Restricted access');
/**
* Columns View
*/
class TimetableViewColumns extends JViewLegacy
{
protected $items;
protected $pagination;
protected $state;
/**
* Display the view
*/
function display($tpl = null)
{
require_once JPATH_COMPONENT.'/helpers/timetable.php';
// Get data from the model
$this->items = $this->get('Items');
$this->pagination = $this->get('Pagination');
$this->state = $this->get('State');
$this->filterForm = $this->get('FilterForm');
$this->activeFilters= $this->get('ActiveFilters');
TimetableHelper::addSubmenu('columns');
// Check for errors.
if (count($errors = $this->get('Errors')))
{
JError::raiseError(500, implode('<br />', $errors));
return false;
}
// Set the toolbar
$this->addToolBar();
$this->sidebar = JHtmlSidebar::render();
// Display the template
parent::display($tpl);
}
/**
* Setting the toolbar
*/
protected function addToolBar()
{
JToolbarHelper::title(JText::_('COM_TIMETABLE_MANAGER_COLUMNS'), 'columns');
JToolbarHelper::addNew('column.add');
JToolbarHelper::editList('column.edit');
JToolbarHelper::deleteList('', 'columns.delete');
JHtmlSidebar::setAction('index.php?option=com_timetable&view=columns');
}
protected function getSortFields()
{
return array(
'a.ordering' => JText::_('JGRID_HEADING_ORDERING'),
'a.name' => JText::_('JGLOBAL_TITLE'),
'a.id' => JText::_('JGRID_HEADING_ID')
);
}
}