primo commit
This commit is contained in:
@ -0,0 +1,153 @@
|
||||
<?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
|
||||
* @extension Phoca Extension
|
||||
* @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\Language\Text;
|
||||
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 '<div class="clearfix"></div>';
|
||||
|
||||
echo $r->startForm($this->t['o'], $this->t['tasks'], '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(PhocaMapsSelectMap::options($this->t['o']), 'COM_PHOCAMAPS_SELECT_MAP', $this->state->get('filter.map_id'));
|
||||
//echo $r->endFilter();
|
||||
|
||||
echo $r->startMainContainer();
|
||||
/*
|
||||
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->startFilterBar(2);
|
||||
echo $r->selectFilterPublished('JOPTION_SELECT_PUBLISHED', $this->state->get('filter.published'));
|
||||
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 $r->thOrdering('JGRID__HEADING_ORDERING', $listDirn, $listOrder);
|
||||
echo $r->thCheck('JGLOBAL_CHECK_ALL');*/
|
||||
echo '<th class="">'.Text::_('COM_PHOCAMAPS_ICON').'</th>'."\n";
|
||||
echo '<th class="ph-title-short">'.HTMLHelper::_('searchtools.sort', $this->t['l'].'_TITLE', 'a.title', $listDirn, $listOrder ).'</th>'."\n";
|
||||
echo '<th class="ph-published">'.HTMLHelper::_('searchtools.sort', $this->t['l'].'_PUBLISHED', 'a.published', $listDirn, $listOrder ).'</th>'."\n";
|
||||
echo '<th class="ph-url">'.HTMLHelper::_('searchtools.sort', $this->t['l'].'_URL', 'a.url', $listDirn, $listOrder ).'</th>'."\n";
|
||||
//echo '<th class="ph-language">'.HtmlHelper::_('searchtools.sort', 'JGRID_HEADING_LANGUAGE', 'a.language', $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=';
|
||||
$orderkey = 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.(int) $item->id );
|
||||
|
||||
|
||||
/*$iD = $i % 2;
|
||||
echo "\n\n";
|
||||
//echo '<tr class="row'.$iD.'" sortable-group-id="0" item-id="'.$item->id.'" parents="0" level="0">'. "\n";
|
||||
echo '<tr class="row'.$iD.'" sortable-group-id="0" >'. "\n";
|
||||
echo $r->tdOrder($canChange, $saveOrder, $orderkey, $item->ordering);
|
||||
echo $r->td(HtmlHelper::_('grid.id', $i, $item->id), "small ");*/
|
||||
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);
|
||||
$imgU = '';
|
||||
if ($item->url != '') {
|
||||
$imgU = '<img src="'.$item->url.'" alt="" />';
|
||||
}
|
||||
echo $r->td($imgU, "small ");
|
||||
|
||||
$checkO = '';
|
||||
if ($item->checked_out) {
|
||||
$checkO .= HTMLHelper::_('jgrid.checkedout', $i, $item->editor, $item->checked_out_time, $this->t['tasks'].'.', $canCheckin);
|
||||
}
|
||||
if ($canCreate || $canEdit) {
|
||||
$checkO .= '<a href="'. Route::_($linkEdit).'">'. $this->escape($item->title).'</a>';
|
||||
} else {
|
||||
$checkO .= $this->escape($item->title);
|
||||
}
|
||||
$checkO .= ' <span class="smallsub">(<span>'.Text::_($this->t['l'].'_FIELD_ALIAS_LABEL').':</span>'. $this->escape($item->alias).')</span>';
|
||||
echo $r->td($checkO, "small");
|
||||
echo $r->td(HTMLHelper::_('jgrid.published', $item->published, $i, $this->t['tasks'].'.', $canChange), "small");
|
||||
|
||||
|
||||
$url = '';
|
||||
if ($item->url != '') {
|
||||
$url .= '<span>'.$item->url.'</span>';
|
||||
}
|
||||
if ($item->urls != '') {
|
||||
$url .= '<br /><span>'.$item->urls.'</span>';
|
||||
}
|
||||
echo $r->td($url, "small");
|
||||
|
||||
//echo $r->tdLanguage($item->language, $item->language_title, $this->escape($item->language_title));
|
||||
echo $r->td($item->id, "small");
|
||||
|
||||
echo '</tr>'. "\n";
|
||||
|
||||
//}
|
||||
}
|
||||
}
|
||||
echo '</tbody>'. "\n";
|
||||
|
||||
echo $r->tblFoot($this->pagination->getListFooter(), 8);
|
||||
echo $r->endTable();
|
||||
|
||||
|
||||
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