%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_phocafavicon/views/phocafaviconi/ |
Upload File : |
<?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(); jimport( 'joomla.client.helper' ); jimport( 'joomla.application.component.view'); class PhocaFaviconCpViewPhocaFaviconi extends JViewLegacy { protected $t; protected $folderstate; protected $images; protected $folders; protected $currentFolder; protected $session; protected $field; protected $fce; function display($tpl = null) { // Do not allow cache JResponse::allowCache(false); $this->t = PhocaFaviconUtils::setVars('phocafaviconini'); $this->session = JFactory::getSession(); $this->field = JRequest::getVar('field'); $this->fce = 'phocaSelectFileName_'.$this->field; $this->folderstate = $this->get('FolderState'); $this->images = $this->get('images'); $this->folders = $this->get('folders'); $params = JComponentHelper::getParams('com_phocafavicon'); $this->t['uploadmaxsize'] = $params->get( 'upload_maxsize', 3145728 ); $this->t['uploadmaxsizeread'] = PhocaFaviconHelper::getFileSizeReadable($this->t['uploadmaxsize']); $this->t['uploadmaxreswidth'] = $params->get( 'upload_maxres_width', 3072 ); $this->t['uploadmaxresheight'] = $params->get( 'upload_maxres_height', 2304 ); JHTML::stylesheet( $this->t['s'] ); $this->currentFolder = ''; if (isset($this->folderstate->folder) && $this->folderstate->folder != '') { $this->currentFolder = $this->folderstate->folder; } // - - - - - - - - - - - // Upload // - - - - - - - - - - - $sU = new PhocaFaviconFileUploadSingle(); $sU->returnUrl = 'index.php?option=com_phocafavicon&view=phocafaviconi&t=component&folder='. $this->currentFolder.'&field='. $this->field; $this->t['su_output'] = $sU->getSingleUploadHTML(); $this->t['su_url'] = JURI::base().'index.php?option=com_phocafavicon&task=phocafaviconu.upload&' .$this->session->getName().'='.$this->session->getId().'&' . JSession::getFormToken().'=1&viewback=phocafaviconi&' .'folder='. $this->currentFolder.'&field='. $this->field; $this->t['ftp'] = !JClientHelper::hasCredentials('ftp'); $path = PhocaFaviconHelper::getPathSet(); $path_orig_rel = $path['orig_rel_ds']; $this->assign('path_orig_rel', $path_orig_rel); parent::display($tpl); } function setFolder($index = 0) { if (isset($this->folders[$index])) { $this->_tmp_folder = &$this->folders[$index]; } else { $this->_tmp_folder = new JObject; } } function setImage($index = 0) { if (isset($this->images[$index])) { $this->_tmp_img = &$this->images[$index]; } else { $this->_tmp_img = new JObject; } } }