uawdijnntqw1x1x1
IP : 216.73.216.200
Hostname : raton.hozzt.com
Kernel : Linux raton.hozzt.com 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
Disable Function : symlink, show_source, system, virtual, shell_exec,passthru, exec, popen,proc_open, proc_close, proc_nice, proc_terminate,proc_get_status, pfsockopen,allow_url_fopen, posix_getpwuid, eval,posix_setsid, posix_mkfifo, posix_setpgid,posix_setuid, posix_uname,posix_kill,apache_child_terminate, apache_setenv,define_syslog_variables,escapeshellarg, escapeshellcmd, leak, dl, fp, fput,ftp_connect, ftp_exec,ftp_get, ftp_login, ftp_nb_fput, ftp_put, ftp_raw, ftp_rawlist,highlight_file, ini_alter, ini_get_all, ini_restore, inject_code
OS : Linux
PATH:
/
home
/
ledbazaa
/
public_html
/
3s-technologies.com.tr
/
joomla
/
installation-ng
/
models
/
..
/
controller.php
/
/
<?php /** * @package Joomla.Installation * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; jimport('joomla.application.component.helper'); /** * Base controller class for the Joomla Core Installer. * * @package Joomla.Installation * @since 1.6 */ class JInstallationController extends JControllerLegacy { /** * Method to display a view. * * @param boolean $cachable If true, the view output will be cached * @param array $urlparams An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}. * * @return JController This object to support chaining. * @since 1.5 */ public function display($cachable = false, $urlparams = false) { // Get the current URI to redirect to. $uri = JURI::getInstance(); $redirect = base64_encode($uri); // Get the document object. $document = JFactory::getDocument(); // Set the default view name and format from the Request. if (file_exists(JPATH_CONFIGURATION.'/configuration.php') && (filesize(JPATH_CONFIGURATION.'/configuration.php') > 10) && file_exists(JPATH_INSTALLATION.'/index.php')) { $default_view = 'remove'; } else { $default_view = 'language'; } $vName = JRequest::getWord('view', $default_view); $vFormat = $document->getType(); $lName = JRequest::getWord('layout', 'default'); if (strcmp($vName, $default_view) == 0) { JRequest::setVar('view', $default_view); } if ($view = $this->getView($vName, $vFormat)) { switch ($vName) { default: $model = $this->getModel('Setup', 'JInstallationModel', array('dbo' => null)); break; } // Push the model into the view (as default). $view->setModel($model, true); $view->setLayout($lName); // Push document object into the view. $view->document = $document; $view->display(); } return $this; } }
/home/ledbazaa/public_html/3s-technologies.com.tr/joomla/installation-ng/models/../controller.php