uawdijnntqw1x1x1
IP : 216.73.216.46
Hostname : webm002.cluster123.gra.hosting.ovh.net
Kernel : Linux webm002.cluster123.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
megadansyp
/
www
/
eace8
/
..
/
components
/
com_eventgallery
/
controllers
/
Upload.php
/
/
<?php /** * @package Sven.Bluege * @subpackage com_eventgallery * * @copyright Copyright (C) 2005 - 2019 Sven Bluege All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; class EventgalleryControllerUpload extends EventgalleryController { public function __construct($config = array()) { $language = JFactory::getLanguage(); $extension = 'com_eventgallery'; $language_tag = $language->getTag(); // loads the current language-tag $base_dir = JPATH_ADMINISTRATOR; $language->load($extension, $base_dir, $language_tag, true); $base_dir = JPATH_COMPONENT_ADMINISTRATOR; $language->load($extension, $base_dir, $language_tag, true); parent::__construct($config); } /** * @param string $name * @param string $prefix * @param bool[] $config * @return bool|EventgalleryModelUpload */ public function getModel($name = 'Upload', $prefix ='EventgalleryModel', $config = array('ignore_request' => true)) { return parent::getModel($name, $prefix, $config); } function upload() { $folder = $this->input->getString('folder'); try { $this->getModel()->upload($folder); } catch (EventgalleryLibraryExceptionUnsupportedfileextensionexception $e) { echo "Unsupported file extension"; } die(); } }
/home/megadansyp/www/eace8/../components/com_eventgallery/controllers/Upload.php