| 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/administrator/components/com_djcatalog2/controllers/ |
Upload File : |
<?php
/**
* @package DJ-Catalog2
* @copyright Copyright (C) DJ-Extensions.com, All rights reserved.
* @license http://www.gnu.org/licenses GNU/GPL
* @author url: http://dj-extensions.com
* @author email contact@dj-extensions.com
*/
defined('_JEXEC') or die( 'Restricted access' );
use Joomla\CMS\Factory;
use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
jimport('joomla.application.component.controlleradmin');
class Djcatalog2ControllerQueries extends AdminController
{
public function getModel($name = 'Query', $prefix = 'Djcatalog2Model', $config = array())
{
$model = parent::getModel($name, $prefix, array('ignore_request' => true));
return $model;
}
public function export($cid = array()) {
$app = Factory::getApplication();
$jinput = $app->input;
$cid = $jinput->get('cid', array(), 'array');
$file = Djcatalog2ExportHelper::exportQuotes($cid);
if($file['success']) {
$file_link = '<a href="' . Route::_('index.php?option=com_djcatalog2&task=download_file&path=' . base64_encode('media/djcatalog2/export/quotes/' . $file['filename'])) . '">' . $file['filename'] . '</a></br>';
$this->setRedirect('index.php?option=com_djcatalog2&view=queries', Text::_('COM_DJCATALOG2_EXPORT_SUCCESFULL') . ' ' . $file_link);
}
}
public function change_status (){
Session::checkToken() or die(Text::_('JINVALID_TOKEN'));
// Get items to publish from the request.
$cid = Factory::getApplication()->input->get('cid', array(), 'array');
$statuses = Factory::getApplication()->input->get('status_change', array(), 'array');
$notifications = Factory::getApplication()->input->get('status_notify', array(), 'array');
if (empty($cid) || empty($statuses))
{
Log::add(Text::_($this->text_prefix . '_NO_ITEM_SELECTED'), Log::WARNING, 'jerror');
}
else
{
// Make sure the item ids are integers
Joomla\Utilities\ArrayHelper::toInteger($cid);
$cid = $cid[0];
$value = (isset($statuses[$cid])) ? $statuses[$cid] : false;
$notify = (isset($notifications[$cid])) ? (bool)$statuses[$cid] : false;
if (!$value) {
Log::add(Text::_($this->text_prefix . '_NO_ITEM_SELECTED'), Log::WARNING, 'jerror');
} else {
// Get the model.
$model = $this->getModel();
// Publish the items.
try
{
$model->set_status($cid, $value, $notify);
$this->setMessage(Text::_('COM_DJCATALOG2_STATUS_CHANGED'));
}
catch (Exception $e)
{
$this->setMessage(Text::_('JLIB_DATABASE_ERROR_ANCESTOR_NODES_LOWER_STATE'), 'error');
}
}
}
$extension = Factory::getApplication()->input->get('extension');
$extensionURL = ($extension) ? '&extension=' . $extension : '';
$this->setRedirect(Route::_('index.php?option=' . $this->option . '&view=' . $this->view_list . $extensionURL, false));
}
}