[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: export.js
"use strict"; $(document).ready(function () { /** -------------------------------------------------------------------------------------------------- * [export] - tables to excel files * @source https://github.com/hhurz/tableExport.jquery.plugin * @version 1.27.0 (March 2023) * -------------------------------------------------------------------------------------------------*/ $(document).on('click', '.js-export-table-excel', function (e) { var table_id = $(this).attr('data-table'); var table = $("#" + table_id); // validate the table exists if (table.length == 0) { //error message NX.notification({ type: 'error', message: NXLANG.generic_error }); return; } //loading $(this).addClass('button-loading-annimation'); // Export the table to Excel using tableExport.jquery.plugin table.tableExport({ type: 'xlsx', escape: 'false', fileName: 'Export', onCellData: function (cell, rowIndex, colIndex, data) { // remove the currency symbol from all cell with the class 'data-type-money' if (NX.settings_system_currency_symbol != '') { if ($(cell).hasClass('data-type-money')) { return data.replace(NX.settings_system_currency_symbol, ''); } } return data; } }); //loading $(this).removeClass('button-loading-annimation'); }); /** -------------------------------------------------------------------------------------------------- * [export] - tables to csv files * @source https://github.com/hhurz/tableExport.jquery.plugin * @version 1.27.0 (March 2023) * -------------------------------------------------------------------------------------------------*/ $(document).on('click', '.js-export-table-csv', function (e) { var table_id = $(this).attr('data-table'); var table = $("#" + table_id); // validate the table exists if (table.length == 0) { //error message NX.notification({ type: 'error', message: NXLANG.generic_error }); return; } //loading $(this).addClass('button-loading-annimation'); // Export the table to Excel using tableExport.jquery.plugin table.tableExport({ type: 'csv', escape: 'false', fileName: 'Export', onCellData: function (cell, rowIndex, colIndex, data) { // remove the currency symbol from all cell with the class 'data-type-money' if (NX.settings_system_currency_symbol != '') { if ($(cell).hasClass('data-type-money')) { return data.replace(NX.settings_system_currency_symbol, ''); } } return data; } }); //loading $(this).removeClass('button-loading-annimation'); }); /** -------------------------------------------------------------------------------------------------- * [print] - print a table * @source https://github.com/jasonday/printThis * @version v1.15.0 * -------------------------------------------------------------------------------------------------*/ $(document).on('click', '.js-print-table', function (e) { var table_id = $(this).attr('data-table'); var table = $("#" + table_id); // validate the table exists if (table.length == 0) { //error message NX.notification({ type: 'error', message: NXLANG.generic_error }); return; } //print the table table.printThis({ beforePrint: function () { table.addClass("printing-table-css"); $("body").addClass("printing-css"); }, afterPrint: function () { table.removeClass("printing-table-css"); $("body").removeClass("printing-css"); }, debug:false, }); }); });
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.81 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002