Server IP : 192.185.129.71 / Your IP : 13.59.203.127 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/modules/exports/controllers/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php /** * CSV Export Controller * @property CSVExport $CSVExport * @property Exports_module $exports_module */ class Exports extends AdminController { public function __construct() { parent::__construct(); if (!is_admin()) { access_denied('admin'); } $this->load->library(EXPORTS_MODULE_NAME . '/exports_module'); } public function index() { if ($this->input->post()) { $this->exports_module->export($this->input->post()); } $data['features'] = $this->exports_module->getFeaturesWithNames(); $data['title'] = _l('csv_exports'); $this->load->view(EXPORTS_MODULE_NAME . '/manage', $data); } }