?
Path : /home/admin/public_html/old/administrator/components/com_jckman/views/list/ |
Current File : /home/admin/public_html/old/administrator/components/com_jckman/views/list/view.html.php |
<?php /*------------------------------------------------------------------------ # Copyright (C) 2005-2012 WebxSolution Ltd. All Rights Reserved. # @license - GPLv2.0 # Author: WebxSolution Ltd # Websites: http://www.webxsolution.com # Terms of Use: An extension that is derived from the JoomlaCK editor will only be allowed under the following conditions: http://joomlackeditor.com/terms-of-use # ------------------------------------------------------------------------*/ // no direct access defined( '_JEXEC' ) or die(); class JCKManViewList extends JViewLegacy { protected $app; protected $user; protected $state; protected $items; protected $pagination; function display( $tpl = null ) { $this->app = JFactory::getApplication(); $this->user = JFactory::getUser(); $this->state = $this->get('State'); $this->items = $this->get('Items'); $this->pagination = $this->get('Pagination'); // Check for errors. if(count($errors = $this->get('Errors'))) { JCKHelper::error( implode("\n", $errors)); return false; } // Check if there are no matching items if(!count($this->items)) { JCKHelper::error( JText::_('COM_JCK_PLUGIN_NO_PLUGINS_FOUND') ); } $this->addToolbar(); parent::display($tpl); } protected function addToolbar() { $bar = JToolBar::getInstance('toolbar'); $canDo = JCKHelper::getActions(); JToolBarHelper::title( JText::_( 'COM_JCKMAN_SUBMENU_PLUGIN_NAME' ), 'plugin.png' ); if($canDo->get('core.edit')) { JToolBarHelper::editList('list.edit'); }//end if if($canDo->get('core.edit.state')) { JToolBarHelper::publishList('list.publish'); JToolBarHelper::unpublishList('list.unpublish'); JToolbarHelper::checkin('list.checkin'); }//end if // Add a Link button for Control Panel $bar->appendButton( 'Link', 'cpanel', JText::_( 'COM_JCKMAN_SUBMENU_CPANEL_NAME' ), 'index.php?option=com_jckman&view=cpanel'); JToolBarHelper::help( $this->app->input->get( 'view' ), false, 'http://www.joomlackeditor.com/installation-guide?start=14#plugin_man_help' ); JCKHelper::addSubmenu( $this->app->input->get( 'view' ) ); JHtmlSidebar::setAction('index.php?option=com_jckman&view=list'); // FILTERS JHtmlSidebar::addFilter( JText::_('JOPTION_SELECT_PUBLISHED'), 'filter_state', JHtml::_('select.options', JCKHelper::getStateOptions(), 'value', 'text', $this->state->get('filter.state')) ); JHtmlSidebar::addFilter( JText::_('- Select Core Type -'), 'filter_iscore', JHtml::_('select.options', array( JHtml::_('select.option', '1', 'Core Plugins'), JHtml::_('select.option', '0', 'Not Core Plugins') ), 'value', 'text', $this->state->get('filter.iscore')) ); $this->sidebar = JHtmlSidebar::render(); }//end function /** * 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.title' => JText::_('JGLOBAL_TITLE'), 'p.published' => JText::_('JSTATUS'), 'p.name' => JText::_('COM_JCKMAN_PLUGIN_LIST_NAME'), 'p.icon' => JText::_('COM_JCKMAN_PLUGIN_LIST_ICON'), 'p.id' => JText::_('JGRID_HEADING_ID') ); } }//end class