2020-11-02 16:03:39 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package Joomla.CMS
|
|
|
|
* @subpackage com_release_checking
|
|
|
|
*
|
|
|
|
* @copyright (C) 2020 Open Source Matters, Inc. <http://www.joomla.org>
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
2021-03-08 23:41:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
use Joomla\Utilities\ArrayHelper;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Contexts Controller
|
|
|
|
*/
|
|
|
|
class Release_checkingControllerContexts extends JControllerAdmin
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The prefix to use with controller messages.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected $text_prefix = 'COM_RELEASE_CHECKING_CONTEXTS';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 = 'Context', $prefix = 'Release_checkingModel', $config = array('ignore_request' => true))
|
|
|
|
{
|
|
|
|
return parent::getModel($name, $prefix, $config);
|
2020-11-02 16:03:39 +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('context.export', 'com_release_checking') && $user->authorise('core.export', 'com_release_checking'))
|
|
|
|
{
|
|
|
|
// Get the input
|
|
|
|
$input = JFactory::getApplication()->input;
|
|
|
|
$pks = $input->post->get('cid', array(), 'array');
|
|
|
|
// Sanitize the input
|
2020-12-10 16:23:44 +00:00
|
|
|
$pks = ArrayHelper::toInteger($pks);
|
2020-11-02 16:03:39 +00:00
|
|
|
// Get the model
|
|
|
|
$model = $this->getModel('Contexts');
|
|
|
|
// get the data to export
|
|
|
|
$data = $model->getExportData($pks);
|
|
|
|
if (Release_checkingHelper::checkArray($data))
|
|
|
|
{
|
|
|
|
// now set the data to the spreadsheet
|
|
|
|
$date = JFactory::getDate();
|
|
|
|
Release_checkingHelper::xls($data,'Contexts_'.$date->format('jS_F_Y'),'Contexts exported ('.$date->format('jS F, Y').')','contexts');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Redirect to the list screen with error.
|
|
|
|
$message = JText::_('COM_RELEASE_CHECKING_EXPORT_FAILED');
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_release_checking&view=contexts', 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('context.import', 'com_release_checking') && $user->authorise('core.import', 'com_release_checking'))
|
|
|
|
{
|
|
|
|
// Get the import model
|
|
|
|
$model = $this->getModel('Contexts');
|
|
|
|
// get the headers to import
|
|
|
|
$headers = $model->getExImPortHeaders();
|
|
|
|
if (Release_checkingHelper::checkObject($headers))
|
|
|
|
{
|
|
|
|
// Load headers to session.
|
|
|
|
$session = JFactory::getSession();
|
|
|
|
$headers = json_encode($headers);
|
|
|
|
$session->set('context_VDM_IMPORTHEADERS', $headers);
|
|
|
|
$session->set('backto_VDM_IMPORT', 'contexts');
|
|
|
|
$session->set('dataType_VDM_IMPORTINTO', 'context');
|
|
|
|
// Redirect to import view.
|
|
|
|
$message = JText::_('COM_RELEASE_CHECKING_IMPORT_SELECT_FILE_FOR_CONTEXTS');
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_release_checking&view=import', false), $message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Redirect to the list screen with error.
|
|
|
|
$message = JText::_('COM_RELEASE_CHECKING_IMPORT_FAILED');
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_release_checking&view=contexts', false), $message, 'error');
|
|
|
|
return;
|
2021-03-08 23:41:06 +00:00
|
|
|
}
|
|
|
|
}
|