items = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->state = $this->get('State'); $this->filterForm = $this->get('FilterForm'); $this->activeFilters = $this->get('ActiveFilters'); $this->r = new PhocaGalleryRenderAdminViews(); $this->t = PhocaGalleryUtils::setVars('fb'); foreach ($this->items as &$item) { $this->ordering[0][] = $item->id; } // Check for errors. if (count($errors = $this->get('Errors'))) { throw new Exception(implode("\n", $errors), 500); return false; } $this->addToolbar(); parent::display($tpl); } function addToolbar() { require_once JPATH_COMPONENT.'/helpers/phocagalleryfbs.php'; $state = $this->get('State'); $canDo = phocagalleryfbsHelper::getActions(); ToolbarHelper::title( Text::_( 'COM_PHOCAGALLERY_FB_USERS' ), 'user' ); if ($canDo->get('core.create')) { ToolbarHelper::addNew( 'phocagalleryfb.add','JToolbar_NEW'); } if ($canDo->get('core.edit')) { ToolbarHelper::editList('phocagalleryfb.edit','JToolbar_EDIT'); } if ($canDo->get('core.edit.state')) { ToolbarHelper::divider(); ToolbarHelper::custom('phocagalleryfbs.publish', 'publish.png', 'publish_f2.png','JToolbar_PUBLISH', true); ToolbarHelper::custom('phocagalleryfbs.unpublish', 'unpublish.png', 'unpublish_f2.png', 'JToolbar_UNPUBLISH', true); } if ($canDo->get('core.delete')) { ToolbarHelper::deleteList( Text::_( 'COM_PHOCAGALLERY_WARNING_DELETE_ITEMS' ), 'phocagalleryfbs.delete', 'COM_PHOCAGALLERY_DELETE'); } ToolbarHelper::divider(); ToolbarHelper::help( 'screen.phocagallery', true ); } protected function getSortFields() { return array( 'a.ordering' => Text::_('COM_PHOCAGALLERY_ORDERING'), 'a.name' => Text::_('COM_PHOCAGALLERY_NAME'), 'a.uid' => Text::_('COM_PHOCAGALLERY_FB_USER_ID'), 'a.appid' => Text::_('COM_PHOCAGALLERY_FB_APP_ID'), 'a.published' => Text::_('COM_PHOCAGALLERY_PUBLISHED'), 'a.id' => Text::_('JGRID_HEADING_ID') ); } } ?>