| Current Path : /var/www/iplanru/data/old/www/i-plan.ru/administrator/components/com_sef/controllers/ |
| Current File : /var/www/iplanru/data/old/www/i-plan.ru/administrator/components/com_sef/controllers/extension.php |
<?php
/**
* SEF component for Joomla! 1.5
*
* @author ARTIO s.r.o.
* @copyright ARTIO s.r.o., http://www.artio.cz
* @package JoomSEF
* @version 3.1.0
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die();
class SEFControllerExtension extends SEFController
{
/**
* constructor (registers additional tasks to methods)
* @return void
*/
function __construct()
{
parent::__construct();
$this->registerTask('apply', 'save');
}
function display()
{
JRequest::setVar('view', 'extensions');
parent::display();
}
function save()
{
JRequest::checkToken() or jexit( 'Invalid Token' );
$task = JRequest::getCmd('task');
$file = JRequest::getVar('file');
$model = $this->getModel('extension');
if ($model->store()) {
$msg = JText::_( 'Extension Saved' );
} else {
$msg = JText::_( 'Error Saving Extension' );
}
$redir = JRequest::getVar('redirto', '');
if( $task == 'save' ) {
$link = 'index.php?option=com_sef';
if( !empty($redir) ) {
$link .= '&'.$redir;
}
}
elseif( $task == 'apply' ) {
$link = 'index.php?option=com_sef&task=editext&cid[]='.$file;
if( !empty($redir) ) {
$link .= '&redirto='.urlencode($redir);
}
}
$this->setRedirect($link, $msg);
}
function cancel()
{
$redir = JRequest::getVar('redirto', '');
$link = 'index.php?option=com_sef';
if( !empty($redir) ) {
$link .= '&'.$redir;
}
$this->setRedirect($link);
}
}
?>