Refactor initialization flow to accommodate future scalability and integration with all designated areas. Refactor the Creator Builders class. Refactor the FieldString and FieldXML classes.
65 lines
1.9 KiB
PHP
65 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.Component.Builder
|
|
*
|
|
* @created 30th April, 2015
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
* @git Joomla Component Builder <https://git.vdm.dev/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
|
|
*/
|
|
namespace VDM\Component\Componentbuilder\Administrator\Controller;
|
|
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\CMS\Language\Text;
|
|
use Joomla\CMS\MVC\Controller\BaseController;
|
|
use Joomla\CMS\Router\Route;
|
|
use Joomla\CMS\Session\Session;
|
|
use Joomla\Utilities\ArrayHelper;
|
|
use VDM\Component\Componentbuilder\Administrator\Helper\ComponentbuilderHelper;
|
|
|
|
// No direct access to this file
|
|
\defined('_JEXEC') or die;
|
|
|
|
/**
|
|
* Componentbuilder Import_joomla_components Base Controller
|
|
*
|
|
* @since 1.6
|
|
*/
|
|
class Import_joomla_componentsimportController extends BaseController
|
|
{
|
|
/**
|
|
* Import an spreadsheet.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function import()
|
|
{
|
|
// Check for request forgeries
|
|
Session::checkToken() or jexit(Text::_('JINVALID_TOKEN'));
|
|
|
|
$model = $this->getModel('Import_joomla_components');
|
|
if ($model->import())
|
|
{
|
|
$cache = Factory::getCache('mod_menu');
|
|
$cache->clean();
|
|
// TODO: Reset the users acl here as well to kill off any missing bits
|
|
}
|
|
|
|
$app = Factory::getApplication();
|
|
$redirect_url = $app->getUserState('com_componentbuilder.redirect_url');
|
|
if (empty($redirect_url))
|
|
{
|
|
$redirect_url = Route::_('index.php?option=com_componentbuilder&view=import_joomla_components', false);
|
|
}
|
|
else
|
|
{
|
|
// wipe out the user state when we're going to redirect
|
|
$app->setUserState('com_componentbuilder.redirect_url', '');
|
|
$app->setUserState('com_componentbuilder.message', '');
|
|
$app->setUserState('com_componentbuilder.extension_message', '');
|
|
}
|
|
$this->setRedirect($redirect_url);
|
|
}
|
|
}
|