Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/ptitsanes/administrator/components/com_solidres/controllers/ |
Upload File : |
<?php
/**
------------------------------------------------------------------------
SOLIDRES - Accommodation booking extension for Joomla
------------------------------------------------------------------------
* @author Solidres Team <contact@solidres.com>
* @website https://www.solidres.com
* @copyright Copyright (C) 2013 - 2019 Solidres. All Rights Reserved.
* @license GNU General Public License version 3, or later
------------------------------------------------------------------------
*/
defined('_JEXEC') or die;
/**
* Reservation list controller class.
*
* @package Solidres
* @subpackage Reservation
* @since 0.1.0
*/
class SolidresControllerReservations extends JControllerAdmin
{
public function getModel($name = 'Reservation', $prefix = 'SolidresModel', $config = array())
{
$model = parent::getModel($name, $prefix, array('ignore_request' => true));
return $model;
}
/**
* Export selected reservation to CSV format
*
* @return void
*/
public function export()
{
$ids = $this->input->get('cid', array(), 'array');
$results = array();
$dbo = JFactory::getDbo();
$query = $dbo->getQuery(true);
foreach ($ids as $id)
{
$query->clear();
$query->select('*')->from($dbo->quoteName('#__sr_reservations'))->where('id = ' . $dbo->quote($id));
$results[] = $dbo->setQuery($query)->loadAssoc();
}
// disable caching
$now = gmdate("D, d M Y H:i:s");
header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate");
header("Last-Modified: {$now} GMT");
// force download
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
// disposition / encoding on response body
header("Content-Disposition: attachment;filename=solidres_reservation_export.csv");
header("Content-Transfer-Encoding: binary");
ob_start();
$df = fopen("php://output", 'w');
fputcsv($df, array_keys(reset($results)));
foreach ($results as $row)
{
fputcsv($df, $row);
}
fclose($df);
echo ob_get_clean();
JFactory::getApplication()->close();
}
}