forked from joomla/Component-Builder
Robot
737bd03e46
We fixed #972 so that custom code (in the header) will be added after the power namespaces. We added a message to show when a server move failed. We fixed the BaseConfig to not use '_' as separator. We fixed the footable loading issue. We removed the need for passing placeholders by reference. We added the option to generate a CHANGELOG. We fixed the server class to load new client if server details changed. We fixed the readme placeholder issue #978. We fixed the empty server url issue #978. Fixed Package import to now use the phplibsec version 3.
61 lines
1.6 KiB
PHP
61 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.Component.Builder
|
|
*
|
|
* @created 30th April, 2015
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
// No direct access to this file
|
|
defined('_JEXEC') or die('Restricted access');
|
|
?>
|
|
###BOM###
|
|
|
|
// No direct access to this file
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
###IMPORT_CONTROLLER_HEADER###
|
|
|
|
/**
|
|
* ###Component### Import Base Controller
|
|
*/
|
|
class ###Component###ControllerImport extends BaseController
|
|
{
|
|
/**
|
|
* Import an spreadsheet.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function import()
|
|
{
|
|
// Check for request forgeries
|
|
JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
|
|
|
|
$model = $this->getModel('import');
|
|
if ($model->import())
|
|
{
|
|
$cache = JFactory::getCache('mod_menu');
|
|
$cache->clean();
|
|
// TODO: Reset the users acl here as well to kill off any missing bits
|
|
}
|
|
|
|
$app = JFactory::getApplication();
|
|
$redirect_url = $app->getUserState('com_###component###.redirect_url');
|
|
if (empty($redirect_url))
|
|
{
|
|
$redirect_url = JRoute::_('index.php?option=com_###component###&view=import', false);
|
|
}
|
|
else
|
|
{
|
|
// wipe out the user state when we're going to redirect
|
|
$app->setUserState('com_###component###.redirect_url', '');
|
|
$app->setUserState('com_###component###.message', '');
|
|
$app->setUserState('com_###component###.extension_message', '');
|
|
}
|
|
$this->setRedirect($redirect_url);
|
|
}
|
|
}
|