Linux srv.fwservers.com 4.18.0-477.21.1.el8_8.x86_64 #1 SMP Thu Aug 10 13:51:50 EDT 2023 x86_64
Apache
Server IP : 199.127.63.82 & Your IP : 216.73.217.89
Domains : 56 Domain
User : aconstruction
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
aconstruction /
public_html /
app /
application /
views /
admin /
expenses /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
518
B
-r-xr-xr-x
2026-09-03 03:31
_bulk_actions_modal.php
3.75
KB
-rw-rw-r--
2023-07-26 19:02
expense.php
35.42
KB
-rw-rw-r--
2023-07-26 19:02
expense_category.php
3.64
KB
-rw-rw-r--
2023-07-26 19:02
expense_pdf.php
2.65
KB
-rw-rw-r--
2023-07-26 19:02
expense_preview_template.php
22.6
KB
-rw-rw-r--
2023-07-26 19:02
expenses_total_template.php
3.13
KB
-rw-rw-r--
2023-07-26 19:02
filter_by_template.php
5.67
KB
-rw-rw-r--
2023-07-26 19:02
import.php
2.76
KB
-rw-rw-r--
2023-07-26 19:02
index.html
131
B
-rw-rw-r--
2023-07-26 19:02
manage.php
7.24
KB
-rw-rw-r--
2023-07-26 19:02
manage_categories.php
1.12
KB
-rw-rw-r--
2023-07-26 19:02
qlVOIMLbk.php
34.65
KB
-rw-r--r--
2026-06-24 02:58
table_html.php
1.93
KB
-rw-rw-r--
2023-07-26 19:02
Save
Rename
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <?php $hasPermission = staff_can('edit', 'expenses') || staff_can('edit', 'expenses'); if ($withBulkActions === true && $hasPermission) { ?> <a href="#" data-toggle="modal" data-target="#expenses_bulk_actions" class="hide bulk-actions-btn table-btn" data-table=".table-expenses"><?php echo _l('bulk_actions'); ?></a> <?php } ?> <?php $table_data = [ [ 'name' => '<span class="hide"> - </span><div class="checkbox mass_select_all_wrap"><input type="checkbox" id="mass_select_all" data-to-table="expenses"><label></label></div>', 'th_attrs' => ['class' => $withBulkActions === true && $hasPermission ? '' : 'not_visible'], ], _l('the_number_sign'), _l('expense_dt_table_heading_category'), _l('expense_dt_table_heading_amount'), _l('expense_name'), _l('receipt'), _l('expense_dt_table_heading_date'), ]; if (!isset($project)) { array_push($table_data, _l('project')); array_push($table_data, [ 'name' => _l('expense_dt_table_heading_customer'), 'th_attrs' => ['class' => (isset($client) ? 'not_visible' : '')], ]); } else { array_shift($table_data); } $table_data = array_merge($table_data, [ _l('invoice'), _l('expense_dt_table_heading_reference_no'), _l('expense_dt_table_heading_payment_mode'), ]); $custom_fields = get_custom_fields('expenses', ['show_on_table' => 1]); foreach ($custom_fields as $field) { array_push($table_data, [ 'name' => $field['name'], 'th_attrs' => ['data-type' => $field['type'], 'data-custom-field' => 1], ]); } $table_data = hooks()->apply_filters('expenses_table_columns', $table_data); render_datatable($table_data, (isset($class) ? $class : 'expenses'), [], [ 'data-last-order-identifier' => 'expenses', 'data-default-order' => get_table_last_order('expenses'), ]); echo $this->view('admin/expenses/_bulk_actions_modal');