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 /
gf.bdcloud.fr /
compta /
bank /
Delete
Unzip
Name
Size
Permission
Date
Action
class
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
various_payment
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
account_statement_document.php
4.91
KB
-rw-r--r--
2020-10-12 13:36
annuel.php
14.6
KB
-rw-r--r--
2020-10-12 13:36
bankentries_list.php
70.08
KB
-rw-r--r--
2020-10-12 13:36
bilan.php
2.64
KB
-rw-r--r--
2020-10-12 13:36
budget.php
3.24
KB
-rw-r--r--
2020-10-12 13:36
card.php
38.5
KB
-rw-r--r--
2020-10-12 13:36
categ.php
4.93
KB
-rw-r--r--
2020-10-12 13:36
document.php
4.73
KB
-rw-r--r--
2020-10-12 13:36
graph.php
25.72
KB
-rw-r--r--
2020-10-12 13:36
index.html
1
B
-rw-r--r--
2020-10-12 13:36
info.php
2.05
KB
-rw-r--r--
2020-10-12 13:36
line.php
25.87
KB
-rw-r--r--
2020-10-12 13:36
list.php
25.74
KB
-rw-r--r--
2020-10-12 13:36
releve.php
24.03
KB
-rw-r--r--
2020-10-12 13:36
transfer.php
8.98
KB
-rw-r--r--
2020-10-12 13:36
treso.php
11.59
KB
-rw-r--r--
2020-10-12 13:36
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 banque * \brief Onglet info d'une ecriture bancaire */ require '../../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php'; require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php'; // Load translation files required by the page $langs->loadLangs(array('banks', 'categories', 'companies')); $id = GETPOST("rowid"); /* * 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++; dol_fiche_head($head, $hselected, $langs->trans("LineRecord"), -1, 'account'); $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();