primo commit
This commit is contained in:
@ -0,0 +1,155 @@
|
||||
<?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\Language\Text;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Router\Route;
|
||||
$r = $this->r;
|
||||
$user = Factory::getUser();
|
||||
$userId = $user->get('id');
|
||||
$listOrder = $this->escape($this->state->get('list.ordering'));
|
||||
|
||||
$listDirn = $this->escape($this->state->get('list.direction'));
|
||||
$canOrder = $user->authorise('core.edit.state', $this->t['o']);
|
||||
$saveOrder = $listOrder == 'a.ordering';
|
||||
$saveOrderingUrl = '';
|
||||
if ($saveOrder && !empty($this->items)) {
|
||||
$saveOrderingUrl = $r->saveOrder($this->t, $listDirn);
|
||||
}
|
||||
$sortFields = $this->getSortFields();
|
||||
|
||||
|
||||
|
||||
echo $r->jsJorderTable($listOrder);
|
||||
|
||||
|
||||
|
||||
echo $r->startForm($this->t['o'], $this->t['task'], 'adminForm');
|
||||
//echo $r->startFilter();
|
||||
//echo $r->selectFilterPublished('JOPTION_SELECT_PUBLISHED', $this->state->get('filter.published'));
|
||||
//echo $r->selectFilterLanguage('JOPTION_SELECT_LANGUAGE', $this->state->get('filter.language'));
|
||||
//echo $r->selectFilterCategory(PhocaDownloadCategory::options($this->t['o']), 'JOPTION_SELECT_CATEGORY', $this->state->get('filter.category_id'));
|
||||
//echo $r->endFilter();
|
||||
|
||||
echo $r->startMainContainer();
|
||||
|
||||
if (isset($this->tmpl['notapproved']->count) && (int)$this->tmpl['notapproved']->count > 0 ) {
|
||||
echo '<div class="alert alert-danger alert-dismissible">'.Text::_($this->t['l'].'_NOT_APPROVED_FILES_COUNT').': '
|
||||
.(int)$this->tmpl['notapproved']->count.'<button type="button" class="btn-close" data-bs-dismiss="alert"></button></div>';
|
||||
}
|
||||
|
||||
/*
|
||||
echo $r->startFilterBar();
|
||||
echo $r->inputFilterSearch($this->t['l'].'_FILTER_SEARCH_LABEL', $this->t['l'].'_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->endFilterBar();*/
|
||||
echo LayoutHelper::render('joomla.searchtools.default', array('view' => $this));
|
||||
|
||||
echo $r->startTable('categoryList');
|
||||
|
||||
echo $r->startTblHeader();
|
||||
echo $r->firstColumnHeader($listDirn, $listOrder, 'a', true);
|
||||
///echo $r->secondColumnHeader($listDirn, $listOrder, 'a', true);
|
||||
|
||||
|
||||
|
||||
//echo $r->thOrderingXML('JGRID_HEADING_ORDERING', $listDirn, $listOrder);
|
||||
//echo '<th class="nowrap center hidden-phone ph-ordering"></th>';
|
||||
//echo $r->thCheck('JGLOBAL_CHECK_ALL');
|
||||
//echo '<th class="ph-id"></th>'."\n";
|
||||
echo '<th class="ph-user">'.HTMLHelper::_('searchtools.sort', $this->t['l'].'_USER', 'ua.username', $listDirn, $listOrder ).'</th>'."\n";
|
||||
echo '<th class="ph-filename">'.HTMLHelper::_('searchtools.sort', $this->t['l'].'_FILENAME', 'file_title', $listDirn, $listOrder ).'</th>'."\n";
|
||||
echo '<th class="ph-parentcattitle">'.HTMLHelper::_('searchtools.sort', $this->t['l'].'_CATEGORY', 'category_title', $listDirn, $listOrder ).'</th>'."\n";
|
||||
echo '<th class="ph-rating">'.HTMLHelper::_('searchtools.sort', $this->t['l'].'_RATING', 'a.rating', $listDirn, $listOrder ).'</th>'."\n";
|
||||
echo '<th class="ph-id">'.HTMLHelper::_('searchtools.sort', $this->t['l'].'_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++;
|
||||
|
||||
$urlEdit = 'index.php?option='.$this->t['o'].'&task='.$this->t['task'].'.edit&id=';
|
||||
$urlTask = 'index.php?option='.$this->t['o'].'&task='.$this->t['task'];
|
||||
$orderkey = 0;//array_search($item->id, $this->ordering[0]);
|
||||
$ordering = ($listOrder == 'a.ordering');
|
||||
$canCreate = $user->authorise('core.create', $this->t['o']);
|
||||
$canEdit = $user->authorise('core.edit', $this->t['o']);
|
||||
$canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out==$user->get('id') || $item->checked_out==0;
|
||||
$canChange = $user->authorise('core.edit.state', $this->t['o']) && $canCheckin;
|
||||
$linkEdit = Route::_( $urlEdit. $item->id );
|
||||
|
||||
$linkCat = Route::_( 'index.php?option='.$this->t['o'].'&task='.$this->t['c'].'cat.edit&id='.(int) $item->category_id );
|
||||
$canEditCat = $user->authorise('core.edit', $this->t['o']);
|
||||
|
||||
$linkImg = Route::_( 'index.php?option='.$this->t['o'].'&task='.$this->t['c'].'file.edit&id='.(int) $item->file_id );
|
||||
$canEditF = $user->authorise('core.edit', $this->t['o']);
|
||||
|
||||
$orderkey = 0;
|
||||
|
||||
|
||||
echo $r->startTr($i, isset($item->catid) ? (int)$item->catid : 0);
|
||||
echo $r->firstColumn($i, $item->id, $canChange, $saveOrder, $orderkey, $item->ordering);
|
||||
///echo $r->secondColumn($i, $item->id, $canChange, $saveOrder, $orderkey, $item->ordering);
|
||||
|
||||
$usrU = $item->ratingname;
|
||||
if ($item->ratingusername) {$usrU = $usrU . ' ('.$item->ratingusername.')';}
|
||||
echo $r->td($usrU, "small hidden-phone");
|
||||
|
||||
|
||||
|
||||
if ($canEditF) {
|
||||
$imgO = '<a href="'. Route::_($linkImg).'">'. $this->escape($item->file_title).'</a>';
|
||||
} else {
|
||||
$imgO = $this->escape($item->file_title);
|
||||
}
|
||||
echo $r->td($imgO, "small hidden-phone");
|
||||
|
||||
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 hidden-phone");
|
||||
|
||||
//echo $r->td($item->rating, "small hidden-phone");
|
||||
echo $r->tdRating($item->rating);
|
||||
|
||||
echo $r->td($item->id, "small hidden-phone");
|
||||
|
||||
echo $r->endTr();
|
||||
|
||||
//}
|
||||
}
|
||||
}
|
||||
echo $r->endTblBody();
|
||||
|
||||
echo $r->tblFoot($this->pagination->getListFooter(), 7);
|
||||
echo $r->endTable();
|
||||
|
||||
//echo $r->formInputsXML($listOrder, $originalOrders);
|
||||
|
||||
echo $r->formInputsXML($listOrder, $listDirn, $originalOrders);
|
||||
echo $r->endMainContainer();
|
||||
echo $r->endForm();
|
||||
?>
|
||||
@ -0,0 +1 @@
|
||||
<html><body bgcolor="#FFFFFF"></body></html>
|
||||
Reference in New Issue
Block a user