git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
40 lines
985 B
PHP
40 lines
985 B
PHP
<?php
|
|
/**
|
|
* @package AkeebaBackup
|
|
* @copyright Copyright (c)2006-2010 Nicholas K. Dionysopoulos
|
|
* @license GNU General Public License version 3, or later
|
|
* @version $Id: browser.php 211 2010-08-12 21:34:52Z nikosdion $
|
|
* @since 2.2
|
|
*/
|
|
|
|
// Protect from unauthorized access
|
|
defined('_JEXEC') or die('Restricted Access');
|
|
|
|
// Load framework base classes
|
|
jimport('joomla.application.component.controller');
|
|
|
|
/**
|
|
* Folder bowser controller
|
|
*
|
|
*/
|
|
class AkeebaControllerBrowser extends JController
|
|
{
|
|
public function __construct($config = array()) {
|
|
parent::__construct($config);
|
|
if(AKEEBA_JVERSION=='16')
|
|
{
|
|
// Access check, Joomla! 1.6 style.
|
|
if (!JFactory::getUser()->authorise('akeeba.configure', 'com_akeeba')) {
|
|
$this->setRedirect('index.php?option=com_akeeba');
|
|
return JError::raiseWarning(403, JText::_('JERROR_ALERTNOAUTHOR'));
|
|
$this->redirect();
|
|
}
|
|
}
|
|
}
|
|
|
|
public function display()
|
|
{
|
|
JRequest::setVar('format','raw');
|
|
parent::display();
|
|
}
|
|
} |