primo commit
This commit is contained in:
@ -0,0 +1 @@
|
||||
<html><body bgcolor="#FFFFFF"></body></html>
|
||||
@ -0,0 +1,137 @@
|
||||
<?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\Language\Text;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Uri\Uri;
|
||||
|
||||
$document = Factory::getDocument();
|
||||
$document->addStyleSheet(Uri::root(true).'/media/com_phocagallery/js/photoswipe/css/photoswipe.css');
|
||||
$document->addStyleSheet(Uri::root(true).'/media/com_phocagallery/js/photoswipe/css/default-skin/default-skin.css');
|
||||
$document->addStyleSheet(Uri::root(true).'/media/com_phocagallery/js/photoswipe/css/photoswipe-style.css');
|
||||
|
||||
$task = 'phocagalleryuser';
|
||||
|
||||
$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 = $user->authorise('core.edit.state', $option);
|
||||
$saveOrder = $listOrder == 'a.ordering';
|
||||
$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, $tasks, '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->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 '<div id="pg-msnr-container" class="pg-photoswipe pg-msnr-container pg-category-items-box" itemscope itemtype="http://schema.org/ImageGallery">';
|
||||
|
||||
echo $r->startTable('categoryList');
|
||||
|
||||
echo $r->startTblHeader();
|
||||
|
||||
echo $r->firstColumnHeader($listDirn, $listOrder);
|
||||
echo $r->secondColumnHeader($listDirn, $listOrder);
|
||||
|
||||
|
||||
echo '<th class="ph-image">'.Text::_('COM_PHOCAGALLERY_AVATAR').'</th>'."\n";
|
||||
echo '<th class="ph-user">'.HTMLHelper::_('searchtools.sort', $OPT.'_USER', 'ua.username', $listDirn, $listOrder ).'</th>'."\n";
|
||||
echo '<th class="ph-user">'.Text::_('COM_PHOCAGALLERY_CATEGORY_COUNT').'</th>'."\n";
|
||||
echo '<th class="ph-user">'.Text::_('COM_PHOCAGALLERY_IMAGE_COUNT').'</th>'."\n";
|
||||
echo '<th class="ph-published">'.HTMLHelper::_('searchtools.sort', $OPT.'_PUBLISHED_AVATAR', 'a.published', $listDirn, $listOrder ).'</th>'."\n";
|
||||
echo '<th class="ph-approved">'.HTMLHelper::_('searchtools.sort', $OPT.'_APPROVED_AVATAR', 'a.approved', $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();
|
||||
$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++;
|
||||
|
||||
$orderkey = array_search($item->id, $this->ordering[0]);
|
||||
$ordering = ($listOrder == 'a.ordering');
|
||||
$canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out==$user->get('id') || $item->checked_out==0;
|
||||
$canChange = $user->authorise('core.edit.state', $option) && $canCheckin;
|
||||
|
||||
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);
|
||||
echo $r->tdImage($item, 'pg-photoswipe-button', 'COM_PHOCAGALLERY_ENLARGE_IMAGE', '', $this->t['avatarpathabs'], $this->t['avatarpathrel']);
|
||||
|
||||
|
||||
$usrO = $item->username;
|
||||
if ($item->usernameno) {$usrO = $usrO . ' ('.$item->usernameno.')';}
|
||||
echo $r->td($usrO, "small");
|
||||
|
||||
if ($item->countcid) {$countCid = $item->countcid;} else {$countCid = '0';}
|
||||
echo $r->td($countCid, "small");
|
||||
|
||||
if ($item->countiid) {$countIid = $item->countiid;} else {$countIid = '0';}
|
||||
echo $r->td($countIid, "small");
|
||||
|
||||
echo $r->td(HTMLHelper::_('jgrid.published', $item->published, $i, $tasks.'.', $canChange), "small");
|
||||
echo $r->td(PhocaGalleryJGrid::approved( $item->approved, $i, $tasks.'.', $canChange), "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();
|
||||
|
||||
// Modal window for images
|
||||
echo PhocaGalleryRenderDetailWindow::loadPhotoswipeBottom();
|
||||
?>
|
||||
@ -0,0 +1 @@
|
||||
<html><body bgcolor="#FFFFFF"></body></html>
|
||||
@ -0,0 +1,140 @@
|
||||
<?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\Factory;
|
||||
use Joomla\CMS\Object\CMSObject;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use Joomla\CMS\Toolbar\Toolbar;
|
||||
use Joomla\CMS\Uri\Uri;
|
||||
|
||||
jimport( 'joomla.application.component.view' );
|
||||
phocagalleryimport('phocagallery.library.library');
|
||||
phocagalleryimport('phocagallery.render.renderdetailwindow');
|
||||
|
||||
jimport( 'joomla.filesystem.file' );
|
||||
class PhocaGalleryCpViewPhocaGalleryUsers extends HtmlView
|
||||
{
|
||||
|
||||
protected $items;
|
||||
protected $pagination;
|
||||
protected $state;
|
||||
protected $t;
|
||||
protected $r;
|
||||
public $filterForm;
|
||||
public $activeFilters;
|
||||
|
||||
|
||||
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('user');
|
||||
|
||||
foreach ($this->items as &$item) {
|
||||
$this->ordering[0][] = $item->id;
|
||||
}
|
||||
|
||||
$path = PhocaGalleryPath::getPath();
|
||||
$this->t['avatarpathabs'] = $path->avatar_abs . '/thumbs/phoca_thumb_s_';
|
||||
$this->t['avatarpathrel'] = $path->avatar_rel . 'thumbs/phoca_thumb_s_';
|
||||
$this->t['avtrpathrel'] = $path->avatar_rel;
|
||||
|
||||
|
||||
$document = Factory::getDocument();
|
||||
|
||||
|
||||
// Button
|
||||
/*
|
||||
$this->button = new CMSObject();
|
||||
$this->button->set('modal', true);
|
||||
$this->button->set('methodname', 'modal-button');
|
||||
//$this->button->set('link', $link);
|
||||
$this->button->set('text', Text::_('COM_PHOCAGALLERY_DISPLAY_IMAGE_DETAIL'));
|
||||
//$this->button->set('name', 'image');
|
||||
$this->button->set('modalname', 'modal_phocagalleryusers');
|
||||
$this->button->set('options', "{handler: 'image', size: {x: 200, y: 150}}");*/
|
||||
|
||||
$library = PhocaGalleryLibrary::getLibrary();
|
||||
$libraries = array();
|
||||
$btn = new PhocaGalleryRenderDetailWindow();
|
||||
$btn->popupWidth = '640';
|
||||
$btn->popupHeight = '480';
|
||||
$btn->backend = 1;
|
||||
|
||||
$btn->setButtons(14, $libraries, $library);
|
||||
$this->button = $btn->getB1();
|
||||
|
||||
// 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/phocagalleryusers.php';
|
||||
$state = $this->get('State');
|
||||
$canDo = PhocaGalleryUsersHelper::getActions($state->get('filter.category_id'));
|
||||
|
||||
ToolbarHelper::title( Text::_( 'COM_PHOCAGALLERY_USERS' ), 'users' );
|
||||
|
||||
if ($canDo->get('core.edit.state')) {
|
||||
|
||||
ToolbarHelper::custom('phocagalleryusers.publish', 'publish.png', 'publish_f2.png','JToolbar_PUBLISH', true);
|
||||
ToolbarHelper::custom('phocagalleryusers.unpublish', 'unpublish.png', 'unpublish_f2.png', 'JToolbar_UNPUBLISH', true);
|
||||
ToolbarHelper::custom( 'phocagalleryusers.approve', 'approve.png', '', 'COM_PHOCAGALLERY_APPROVE' , true);
|
||||
ToolbarHelper::custom( 'phocagalleryusers.disapprove', 'disapprove.png', '', 'COM_PHOCAGALLERY_NOT_APPROVE' , true);
|
||||
ToolbarHelper::divider();
|
||||
}
|
||||
|
||||
if ($canDo->get('core.admin')) {
|
||||
$bar = Toolbar::getInstance('toolbar');
|
||||
/*$bar->appendButton( 'Custom', '<a href="#" onclick="javascript:if(confirm(\''.addslashes(JText::_('COM_PHOCAGALLERY_WARNING_AUTHORIZE_ALL')).'\')){Joomla.submitbutton(\'phocagalleryusers.approveall\');}" class="toolbar"><span class="icon-32-authorizeall" title="'.JText::_('COM_PHOCAGALLERY_APPROVE_ALL').'" type="Custom"></span>'.JText::_('COM_PHOCAGALLERY_APPROVE_ALL').'</a>');*/
|
||||
|
||||
$dhtml = '<button class="btn btn-primary btn-small" onclick="javascript:if(confirm(\''.addslashes(Text::_('COM_PHOCAGALLERY_WARNING_AUTHORIZE_ALL')).'\')){Joomla.submitbutton(\'phocagalleryusers.approveall\');}" ><i class="icon-authorizeall" title="'.Text::_('COM_PHOCAGALLERY_APPROVE_ALL').'"></i> '.Text::_('COM_PHOCAGALLERY_APPROVE_ALL').'</button>';
|
||||
$bar->appendButton('Custom', $dhtml);
|
||||
|
||||
|
||||
ToolbarHelper::divider();
|
||||
}
|
||||
|
||||
if ($canDo->get('core.delete')) {
|
||||
ToolbarHelper::deleteList( 'COM_PHOCAGALLERY_WARNING_DELETE_ITEMS_AVATAR', 'phocagalleryusers.delete', 'COM_PHOCAGALLERY_DELETE');
|
||||
}
|
||||
|
||||
ToolbarHelper::divider();
|
||||
ToolbarHelper::help( 'screen.phocagallery', true );
|
||||
}
|
||||
|
||||
protected function getSortFields() {
|
||||
return array(
|
||||
'a.ordering' => Text::_('JGRID_HEADING_ORDERING'),
|
||||
'ua.username' => Text::_('COM_PHOCAGALLERY_USER'),
|
||||
'a.published' => Text::_('COM_PHOCAGALLERY_PUBLISHED'),
|
||||
'a.approved' => Text::_('COM_PHOCAGALLERY_APPROVED'),
|
||||
'a.id' => Text::_('JGRID_HEADING_ID')
|
||||
);
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user