| Current Path : /home/helpink/www/administrator/components/com_jbusinessdirectory/controllers/ |
| Current File : /home/helpink/www/administrator/components/com_jbusinessdirectory/controllers/paymentreports.php |
<?php
/**
* @package J-BusinessDirectory
*
* @author CMSJunkie http://www.cmsjunkie.com/
* @copyright Copyright (C) 2007 - 2022 CMSJunkie. All rights reserved.
* @license https://www.gnu.org/licenses/agpl-3.0.en.html
*/
// No direct access
defined('_JEXEC') or die('Restricted access');
jimport('joomla.application.component.controlleradmin');
/**
* Reports controller
*
* @package JBusinessDirectory
* @since 1.0.0
*/
class JBusinessDirectoryControllerPaymentReports extends JControllerAdmin {
/**
* Proxy for getModel.
*
* @param string $name The model name. Optional.
* @param string $prefix The class prefix. Optional.
* @param array $config Configuration array for model. Optional.
*
* @return object The model.
*
* @since 1.0.0
*/
public function getModel($name = 'PaymentReports', $prefix = 'JBusinessDirectoryModel', $config = array('ignore_request' => true)) {
$model = parent::getModel($name, $prefix, $config);
return $model;
}
/**
* Redirects to main component view
*
* @since 1.0.0
*/
public function back() {
$this->setRedirect('index.php?option=com_jbusinessdirectory');
}
/**
* Method that exports the report to CSV based on the report type.
*
* @since 1.0.0
*/
public function exportReportToCsv() {
// get report type
JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
$model = $this->getModel();
$model->exportReportToCsv();
exit;
}
}