Created
February 24, 2013 03:54
-
-
Save joomdonation/5022503 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * @version 1.0 | |
| * @package Joomla | |
| * @subpackage JMVC | |
| * @author Tuan Pham Ngoc | |
| * @copyright Copyright (C) 2012 Ossolution Team | |
| * @license GNU/GPL, see LICENSE.php | |
| */ | |
| // no direct access | |
| defined('_JEXEC') or die(); | |
| class OSViewList extends JViewLegacy | |
| { | |
| var $lang_prefix = OSF_LANG_PREFIX; | |
| function display($tpl = null) | |
| { | |
| $state = $this->get('State'); | |
| $items = $this->get('Data'); | |
| $pagination = $this->get('Pagination'); | |
| $this->state = $state; | |
| $lists = array(); | |
| $lists['order_Dir'] = $state->filter_order_Dir; | |
| $lists['order'] = $state->filter_order; | |
| $lists['filter_state'] = JHTML::_('grid.state', $state->filter_state); | |
| $this->_buildListArray($lists, $state); | |
| $this->assignRef('lists', $lists); | |
| $this->assignRef('items', $items); | |
| $this->assignRef('pagination', $pagination); | |
| $this->_buildToolbar(); | |
| parent::display($tpl); | |
| } | |
| /** | |
| * Build all the lists items used in the form and store it into the array | |
| * @param $lists | |
| * @return boolean | |
| */ | |
| function _buildListArray(&$lists, $state) | |
| { | |
| return true; | |
| } | |
| /** | |
| * Build the toolbar for view list | |
| */ | |
| function _buildToolbar() | |
| { | |
| $viewName = $this->getName(); | |
| $controller = OSInflector::singularize($this->getName()); | |
| JToolBarHelper::title(JText::_($this->lang_prefix . '_' . strtoupper($viewName) . '_MANAGEMENT')); | |
| JToolBarHelper::deleteList(JText::_($this->lang_prefix . '_DELETE_' . strtoupper($this->getName()) . '_CONFIRM'), $controller . '.remove'); | |
| JToolBarHelper::editList($controller . '.edit'); | |
| JToolBarHelper::addNew($controller . '.add'); | |
| JToolBarHelper::custom($controller . '.copy', 'copy.png', 'copy_f2.png', 'Copy', true); | |
| JToolBarHelper::publishList($controller . '.publish'); | |
| JToolBarHelper::unpublishList($controller . '.unpublish'); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment