2017-04-03 10:58:41 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
2021-12-21 14:44:50 +00:00
|
|
|
* @gitea Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @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');
|
|
|
|
|
2022-05-25 08:30:55 +00:00
|
|
|
use Joomla\CMS\MVC\Controller\AdminController;
|
2021-03-05 03:08:47 +00:00
|
|
|
use Joomla\Utilities\ArrayHelper;
|
|
|
|
|
|
|
|
/**
|
2022-05-25 08:30:55 +00:00
|
|
|
* Languages Admin Controller
|
2021-03-05 03:08:47 +00:00
|
|
|
*/
|
2022-05-25 08:30:55 +00:00
|
|
|
class ComponentbuilderControllerLanguages extends AdminController
|
2021-03-05 03:08:47 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The prefix to use with controller messages.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected $text_prefix = 'COM_COMPONENTBUILDER_LANGUAGES';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get a model object, loading it if required.
|
|
|
|
*
|
|
|
|
* @param string $name The model name. Optional.
|
|
|
|
* @param string $prefix The class prefix. Optional.
|
|
|
|
* @param array $config Configuration array for model. Optional.
|
|
|
|
*
|
|
|
|
* @return JModelLegacy The model.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
public function getModel($name = 'Language', $prefix = 'ComponentbuilderModel', $config = array('ignore_request' => true))
|
|
|
|
{
|
|
|
|
return parent::getModel($name, $prefix, $config);
|
2017-04-03 10:58:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function exportData()
|
|
|
|
{
|
|
|
|
// Check for request forgeries
|
|
|
|
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
|
|
|
|
// check if export is allowed for this user.
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
if ($user->authorise('language.export', 'com_componentbuilder') && $user->authorise('core.export', 'com_componentbuilder'))
|
|
|
|
{
|
|
|
|
// Get the input
|
|
|
|
$input = JFactory::getApplication()->input;
|
|
|
|
$pks = $input->post->get('cid', array(), 'array');
|
|
|
|
// Sanitize the input
|
2020-12-03 00:13:49 +00:00
|
|
|
$pks = ArrayHelper::toInteger($pks);
|
2017-04-03 10:58:41 +00:00
|
|
|
// Get the model
|
|
|
|
$model = $this->getModel('Languages');
|
|
|
|
// get the data to export
|
|
|
|
$data = $model->getExportData($pks);
|
|
|
|
if (ComponentbuilderHelper::checkArray($data))
|
|
|
|
{
|
|
|
|
// now set the data to the spreadsheet
|
|
|
|
$date = JFactory::getDate();
|
|
|
|
ComponentbuilderHelper::xls($data,'Languages_'.$date->format('jS_F_Y'),'Languages exported ('.$date->format('jS F, Y').')','languages');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Redirect to the list screen with error.
|
|
|
|
$message = JText::_('COM_COMPONENTBUILDER_EXPORT_FAILED');
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_componentbuilder&view=languages', false), $message, 'error');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function importData()
|
|
|
|
{
|
|
|
|
// Check for request forgeries
|
|
|
|
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
|
|
|
|
// check if import is allowed for this user.
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
if ($user->authorise('language.import', 'com_componentbuilder') && $user->authorise('core.import', 'com_componentbuilder'))
|
|
|
|
{
|
|
|
|
// Get the import model
|
|
|
|
$model = $this->getModel('Languages');
|
|
|
|
// get the headers to import
|
|
|
|
$headers = $model->getExImPortHeaders();
|
|
|
|
if (ComponentbuilderHelper::checkObject($headers))
|
|
|
|
{
|
|
|
|
// Load headers to session.
|
|
|
|
$session = JFactory::getSession();
|
|
|
|
$headers = json_encode($headers);
|
|
|
|
$session->set('language_VDM_IMPORTHEADERS', $headers);
|
|
|
|
$session->set('backto_VDM_IMPORT', 'languages');
|
|
|
|
$session->set('dataType_VDM_IMPORTINTO', 'language');
|
|
|
|
// Redirect to import view.
|
|
|
|
$message = JText::_('COM_COMPONENTBUILDER_IMPORT_SELECT_FILE_FOR_LANGUAGES');
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_componentbuilder&view=import', false), $message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Redirect to the list screen with error.
|
|
|
|
$message = JText::_('COM_COMPONENTBUILDER_IMPORT_FAILED');
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_componentbuilder&view=languages', false), $message, 'error');
|
|
|
|
return;
|
2018-09-11 20:28:17 +00:00
|
|
|
}
|
2018-04-15 20:21:34 +00:00
|
|
|
|
|
|
|
public function buildLanguages()
|
|
|
|
{
|
|
|
|
// Check for request forgeries
|
|
|
|
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
|
|
|
|
// check if user has the right
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
if($user->authorise('core.create', 'com_componentbuilder'))
|
|
|
|
{
|
|
|
|
// get the model
|
|
|
|
$model = $this->getModel('languages');
|
|
|
|
if ($model->buildLanguages())
|
|
|
|
{
|
|
|
|
// set success message
|
|
|
|
$message = '<h1>'.JText::_('COM_COMPONENTBUILDER_IMPORT_SUCCESS').'</h1>';
|
|
|
|
$message .= '<p>'.JText::_('COM_COMPONENTBUILDER_ALL_THE_LANGUAGES_FOUND_IN_JOOMLA_WERE_SUCCESSFULLY_IMPORTED').'</p>';
|
|
|
|
// set redirect
|
|
|
|
$redirect_url = JRoute::_('index.php?option=com_componentbuilder&view=languages', false);
|
|
|
|
$this->setRedirect($redirect_url, $message);
|
2019-03-19 15:33:03 +00:00
|
|
|
return true;
|
2018-04-15 20:21:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// set redirect
|
|
|
|
$redirect_url = JRoute::_('index.php?option=com_componentbuilder&view=languages', false);
|
|
|
|
$this->setRedirect($redirect_url);
|
|
|
|
return false;
|
2021-03-05 03:08:47 +00:00
|
|
|
}
|
|
|
|
}
|