%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/components/com_phocadownload/views/phocadownloadlinkcats/ |
Upload File : |
<?php /* * @package Joomla 1.5 * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * * @component Phoca Component * @copyright Copyright (C) Jan Pavelka www.phoca.cz * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL */ defined('_JEXEC') or die(); jimport( 'joomla.application.component.view' ); class phocaDownloadViewphocaDownloadLinkCats extends JViewLegacy { function display($tpl = null) { $app = JFactory::getApplication(); JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); JHtml::_('behavior.keepalive'); JHtml::_('formbehavior.chosen', 'select'); //Frontend Changes $tUri = ''; if (!$app->isAdmin()) { $tUri = JURI::base(); } $document = JFactory::getDocument(); $uri = JFactory::getURI(); JHTML::stylesheet( 'media/com_phocadownload/css/administrator/phocadownload.css' ); $eName = $app->input->get('e_name'); $this->t['ename'] = preg_replace( '#[^A-Z0-9\-\_\[\]]#i', '', $eName ); $this->t['backlink'] = $tUri.'index.php?option=com_phocadownload&view=phocadownloadlinks&tmpl=component&e_name='.$this->t['ename']; // Category Tree $db = JFactory::getDBO(); $query = 'SELECT a.title AS text, a.id AS value, a.parent_id as parentid' . ' FROM #__phocadownload_categories AS a' // . ' WHERE a.published = 1' You can hide not published and not authorized categories too // . ' AND a.approved = 1' . ' ORDER BY a.ordering'; $db->setQuery( $query ); $categories = $db->loadObjectList(); $tree = array(); $text = ''; $tree = PhocaDownloadCategory::CategoryTreeOption($categories, $tree, 0, $text, -1); //----------------------------------------------------------------------- // Multiple $ctrl = 'hidecategories'; $attribs = ' '; $attribs .= ' size="5"'; //$attribs .= 'class="'.$v.'"'; $attribs .= ' class="inputbox"'; $attribs .= ' multiple="multiple"'; $ctrl .= ''; //$value = implode( '|', ) $categoriesOutput = JHTML::_('select.genericlist', $tree, $ctrl, $attribs, 'value', 'text', 0, 'hidecategories' ); $this->assignRef('categoriesoutput', $categoriesOutput); $this->assignRef('tmpl', $this->t); parent::display($tpl); } } ?>