| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/aix/administrator/components/com_jce/controller/ |
Upload File : |
<?php
/**
* @package JCE
* @subpackage Admin
*
* @copyright Copyright (C) 2005 - 2023 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (c) 2009-2024 Ryan Demmer. All rights reserved
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('JPATH_PLATFORM') or die;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\CMS\Response\JsonResponse;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
class JceControllerProfiles extends AdminController
{
/**
* Method to import profile data from an XML file.
*
* @since 3.0
*/
public function import()
{
// Check for request forgeries
Session::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
$app = Factory::getApplication();
$model = $this->getModel();
$result = $model->import();
// Get redirect URL
$redirect_url = Route::_('index.php?option=com_jce&view=profiles', false);
// Push message queue to session because we will redirect page by Javascript, not $app->redirect().
// The "application.queue" is only set in redirect() method, so we must manually store it.
$app->getSession()->set('application.queue', $app->getMessageQueue());
header('Content-Type: application/json');
echo new JsonResponse(array('redirect' => $redirect_url), "", !$result);
exit();
}
public function repair()
{
// Check for request forgeries
Session::checkToken('get') or jexit(Text::_('JINVALID_TOKEN'));
$model = $this->getModel('profiles');
try {
$model->repair();
} catch (Exception $e) {
$this->setMessage($e->getMessage(), 'error');
}
$this->setRedirect('index.php?option=com_jce&view=profiles');
}
public function copy()
{
// Check for request forgeries
Session::checkToken() or jexit(Text::_('JINVALID_TOKEN'));
$user = Factory::getUser();
$cid = (array) $this->input->get('cid', array(), 'int');
// Access checks.
if (!$user->authorise('core.create', 'com_jce')) {
throw new Exception(Text::_('JLIB_APPLICATION_ERROR_CREATE_NOT_PERMITTED'));
}
if (empty($cid)) {
throw new Exception(Text::_('No Item Selected'));
} else {
$model = $this->getModel();
// Copy the items.
try {
$model->copy($cid);
$ntext = $this->text_prefix . '_N_ITEMS_COPIED';
$this->setMessage(Text::plural($ntext, count($cid)));
} catch (Exception $e) {
$this->setMessage($e->getMessage(), 'error');
}
}
$this->setRedirect('index.php?option=com_jce&view=profiles');
}
public function export()
{
// Check for request forgeries
Session::checkToken() or jexit(Text::_('JINVALID_TOKEN'));
$user = JFactory::getUser();
$ids = (array) $this->input->get('cid', array(), 'int');
// Access checks.
if (!$user->authorise('core.create', 'com_jce')) {
throw new Exception(Text::_('JLIB_APPLICATION_ERROR_CREATE_NOT_PERMITTED'));
}
if (empty($ids)) {
throw new Exception(Text::_('No Item Selected'));
} else {
$model = $this->getModel();
// Publish the items.
if (!$model->export($ids)) {
throw new Exception($model->getError());
}
}
}
/**
* Proxy for getModel.
*
* @param string $name The model name. Optional
* @param string $prefix The class prefix. Optional
* @param array $config The array of possible config values. Optional
*
* @return object The model
*
* @since 1.6
*/
public function getModel($name = 'Profile', $prefix = 'JceModel', $config = array('ignore_request' => true))
{
return parent::getModel($name, $prefix, $config);
}
}