primo commit
This commit is contained in:
		| @ -0,0 +1 @@ | ||||
| <html><body bgcolor="#FFFFFF"></body></html> | ||||
| @ -0,0 +1,122 @@ | ||||
| <?php | ||||
| /* | ||||
|  * @package Joomla | ||||
|  * @copyright Copyright (C) Open Source Matters. All rights reserved. | ||||
|  * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php | ||||
|  * @component Phoca Gallery | ||||
|  * @copyright Copyright (C) Jan Pavelka www.phoca.cz | ||||
|  * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL | ||||
|  */ | ||||
| defined('_JEXEC') or die; | ||||
| use Joomla\CMS\Factory; | ||||
| use Joomla\CMS\Layout\LayoutHelper; | ||||
| use Joomla\CMS\HTML\HTMLHelper; | ||||
| use Joomla\CMS\Router\Route; | ||||
|  | ||||
| $task		= 'phocagalleryra'; | ||||
|  | ||||
| $r 			= $this->r; | ||||
| $app		= Factory::getApplication(); | ||||
| $option 	= $app->input->get('option'); | ||||
| $tasks		= $task . 's'; | ||||
| $OPT		= strtoupper($option); | ||||
| $user		= Factory::getUser(); | ||||
| $userId		= $user->get('id'); | ||||
| $listOrder	= $this->escape($this->state->get('list.ordering')); | ||||
| $listDirn	= $this->escape($this->state->get('list.direction')); | ||||
| $canOrder	= 0; | ||||
| $canChange 	= 0; | ||||
| $saveOrder	= 0; | ||||
| $saveOrderingUrl = ''; | ||||
| if ($saveOrder && !empty($this->items)) { | ||||
| 	$saveOrderingUrl = $r->saveOrder($this->t, $listDirn); | ||||
| } | ||||
| $sortFields = $this->getSortFields(); | ||||
|  | ||||
| echo $r->startHeader(); | ||||
| echo $r->jsJorderTable($listOrder); | ||||
|  | ||||
| echo $r->startForm($option, $task, 'adminForm'); | ||||
| //echo $r->startFilter(); | ||||
| //echo $r->endFilter(); | ||||
|  | ||||
| echo $r->startMainContainer(); | ||||
| /* | ||||
| echo $r->startFilterBar(); | ||||
| echo $r->inputFilterSearch($OPT.'_FILTER_SEARCH_LABEL', $OPT.'_FILTER_SEARCH_DESC', | ||||
| 							$this->escape($this->state->get('filter.search'))); | ||||
| echo $r->inputFilterSearchClear('JSEARCH_FILTER_SUBMIT', 'JSEARCH_FILTER_CLEAR'); | ||||
| echo $r->inputFilterSearchLimit('JFIELD_PLG_SEARCH_SEARCHLIMIT_DESC', $this->pagination->getLimitBox()); | ||||
| echo $r->selectFilterDirection('JFIELD_ORDERING_DESC', 'JGLOBAL_ORDER_ASCENDING', 'JGLOBAL_ORDER_DESCENDING', $listDirn); | ||||
| echo $r->selectFilterSortBy('JGLOBAL_SORT_BY', $sortFields, $listOrder); | ||||
|  | ||||
| echo $r->startFilterBar(2); | ||||
| echo $r->selectFilterCategory(PhocaGalleryCategory::options($option), 'JOPTION_SELECT_CATEGORY', $this->state->get('filter.category_id')); | ||||
| echo $r->endFilterBar(); | ||||
|  | ||||
| echo $r->endFilterBar();*/ | ||||
| echo LayoutHelper::render('joomla.searchtools.default', array('view' => $this)); | ||||
|  | ||||
| echo $r->startTable('categoryList'); | ||||
|  | ||||
| echo $r->startTblHeader(); | ||||
|  | ||||
| echo $r->firstColumnHeader($listDirn, $listOrder); | ||||
| echo $r->secondColumnHeader($listDirn, $listOrder); | ||||
|  | ||||
|  | ||||
| echo '<th class="ph-user">'.HTMLHelper::_('searchtools.sort',  		$OPT.'_USER', 'ua.username', $listDirn, $listOrder ).'</th>'."\n"; | ||||
| echo '<th class="ph-parentcattitle">'.HTMLHelper::_('searchtools.sort', $OPT.'_CATEGORY', 'category_title', $listDirn, $listOrder ).'</th>'."\n"; | ||||
| echo '<th class="ph-rating">'.HTMLHelper::_('searchtools.sort',  	$OPT.'_RATING', 'a.rating', $listDirn, $listOrder ).'</th>'."\n"; | ||||
| echo '<th class="ph-id">'.HTMLHelper::_('searchtools.sort',  		$OPT.'_ID', 'a.id', $listDirn, $listOrder ).'</th>'."\n"; | ||||
|  | ||||
| echo $r->endTblHeader(); | ||||
| echo $r->startTblBody($saveOrder, $saveOrderingUrl, $listDirn); | ||||
|  | ||||
| $originalOrders = array(); | ||||
| $parentsStr 	= ""; | ||||
| $j 				= 0; | ||||
|  | ||||
| if (is_array($this->items)) { | ||||
| 	foreach ($this->items as $i => $item) { | ||||
| 		//if ($i >= (int)$this->pagination->limitstart && $j < (int)$this->pagination->limit) { | ||||
| 			$j++; | ||||
|  | ||||
| $linkCat	= Route::_( 'index.php?option=com_phocagallery&task=phocagalleryc.edit&id='.(int) $item->category_id ); | ||||
| $canEditCat	= $user->authorise('core.edit', $option); | ||||
|  | ||||
|  | ||||
| echo $r->startTr($i, isset($item->catid) ? (int)$item->catid : 0); | ||||
| echo $r->firstColumn($i, $item->id, $canChange, $saveOrder, 0, $item->ordering); | ||||
| echo $r->secondColumn($i, $item->id, $canChange, $saveOrder, 0, $item->ordering); | ||||
|  | ||||
|  | ||||
| $usrU = $item->ratingname; | ||||
| if ($item->ratingusername) {$usrU = $usrU . ' ('.$item->ratingusername.')';} | ||||
| echo $r->td($usrU, "small"); | ||||
|  | ||||
|  | ||||
| if ($canEditCat) { | ||||
| 	$catO = '<a href="'. Route::_($linkCat).'">'. $this->escape($item->category_title).'</a>'; | ||||
| } else { | ||||
| 	$catO = $this->escape($item->category_title); | ||||
| } | ||||
| echo $r->td($catO, "small"); | ||||
| echo $r->td($item->rating, "small"); | ||||
| echo $r->td($item->id, "small"); | ||||
|  | ||||
| echo $r->endTr(); | ||||
|  | ||||
| 		//} | ||||
| 	} | ||||
| } | ||||
| echo $r->endTblBody(); | ||||
|  | ||||
| echo $r->tblFoot($this->pagination->getListFooter(), 15); | ||||
| echo $r->endTable(); | ||||
|  | ||||
|  | ||||
| echo $r->formInputsXML($listOrder, $listDirn, $originalOrders); | ||||
| echo $r->endMainContainer(); | ||||
| echo $r->endForm(); | ||||
| ?> | ||||
| @ -0,0 +1 @@ | ||||
| <html><body bgcolor="#FFFFFF"></body></html> | ||||
| @ -0,0 +1,84 @@ | ||||
| <?php | ||||
| /* | ||||
|  * @package		Joomla.Framework | ||||
|  * @copyright	Copyright (C) 2005 - 2010 Open Source Matters, Inc. All rights reserved. | ||||
|  * @license		GNU General Public License version 2 or later; see LICENSE.txt | ||||
|  * | ||||
|  * @component Phoca Component | ||||
|  * @copyright Copyright (C) Jan Pavelka www.phoca.cz | ||||
|  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License version 2 or later; | ||||
|  */ | ||||
| defined('_JEXEC') or die(); | ||||
| use Joomla\CMS\MVC\View\HtmlView; | ||||
| use Joomla\CMS\Toolbar\ToolbarHelper; | ||||
| use Joomla\CMS\Language\Text; | ||||
| jimport( 'joomla.application.component.view' ); | ||||
|  | ||||
| class PhocaGalleryCpViewPhocaGalleryRa extends HtmlView | ||||
| { | ||||
| 	protected $items; | ||||
| 	protected $pagination; | ||||
| 	protected $state; | ||||
| 	protected $r; | ||||
| 	protected $t; | ||||
| 	public $filterForm; | ||||
| 	public $activeFilters; | ||||
|  | ||||
|  | ||||
| 	//var $_context 	= 'com_phocagallery.phocagalleryra'; | ||||
|  | ||||
| 	function display($tpl = null) { | ||||
|  | ||||
| 		$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'); | ||||
|  | ||||
| 		$this->r = new PhocaGalleryRenderAdminViews(); | ||||
| 		$this->t			= PhocaGalleryUtils::setVars('raimg'); | ||||
|  | ||||
|  | ||||
|  | ||||
| 		// 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/phocagalleryra.php'; | ||||
|  | ||||
| 		$state	= $this->get('State'); | ||||
| 		$canDo	= PhocaGalleryRaHelper::getActions($state->get('filter.category_id')); | ||||
|  | ||||
| 		ToolbarHelper::title( Text::_( 'COM_PHOCAGALLERY_CATEGORY_RATING' ), 'star' ); | ||||
|  | ||||
| 		// This button is unnecessary but it is displayed because Joomla! design bug | ||||
| 		/*$bar = JToolbar::getInstance( 'toolbar' ); | ||||
| 		$dhtml = '<a href="index.php?option=com_phocagallery" class="btn btn-small"><i class="icon-home-2" title="'.Text::_('COM_PHOCAGALLERY_CONTROL_PANEL').'"></i> '.Text::_('COM_PHOCAGALLERY_CONTROL_PANEL').'</a>'; | ||||
| 		$bar->appendButton('Custom', $dhtml);*/ | ||||
|  | ||||
| 		if ($canDo->get('core.delete')) { | ||||
| 			ToolbarHelper::deleteList(  Text::_( 'COM_PHOCAGALLERY_WARNING_DELETE_ITEMS' ), 'phocagalleryra.delete', 'COM_PHOCAGALLERY_DELETE'); | ||||
| 		} | ||||
| 		ToolbarHelper::divider(); | ||||
| 		ToolbarHelper::help( 'screen.phocagallery', true ); | ||||
| 	} | ||||
|  | ||||
| 	protected function getSortFields() { | ||||
| 		return array( | ||||
| 			'category_title' => Text::_('COM_PHOCAGALLERY_CATEGORY'), | ||||
| 			'ua.username' 	=> Text::_('COM_PHOCAGALLERY_USER'), | ||||
| 			'a.rating' 		=> Text::_('COM_PHOCAGALLERY_RATING'), | ||||
| 			'a.id' 			=> Text::_('JGRID_HEADING_ID') | ||||
| 		); | ||||
| 	} | ||||
| } | ||||
| ?> | ||||
		Reference in New Issue
	
	Block a user