Files
conservatorio-tomadini/administrator/components/com_phocadownload/controllers/phocadownloadinfo.php
2024-12-17 17:34:10 +01:00

26 lines
653 B
PHP

<?php
/*
* @package Joomla 1.5
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
*
* @component Phoca Component
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die();
class PhocaDownloadCpControllerPhocaDownloadinfo extends PhocaDownloadCpController
{
function __construct() {
parent::__construct();
}
function cancel($key = NULL) {
$this->setRedirect( 'index.php?option=com_phocadownload' );
}
}
?>