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.bak /
compta /
bank /
Delete
Unzip
Name
Size
Permission
Date
Action
class
[ DIR ]
drwxr-xr-x
2025-11-25 13:09
various_payment
[ DIR ]
drwxr-xr-x
2025-11-25 13:09
annuel.php
14.38
KB
-rw-r--r--
2025-11-25 13:09
bankentries_list.php
64.31
KB
-rw-r--r--
2025-11-25 13:09
bilan.php
2.62
KB
-rw-r--r--
2025-11-25 13:09
budget.php
3.24
KB
-rw-r--r--
2025-11-25 13:09
card.php
37.44
KB
-rw-r--r--
2025-11-25 13:09
categ.php
4.08
KB
-rw-r--r--
2025-11-25 13:09
document.php
4.64
KB
-rw-r--r--
2025-11-25 13:09
graph.php
25.04
KB
-rw-r--r--
2025-11-25 13:09
info.php
2.03
KB
-rw-r--r--
2025-11-25 13:09
ligne.php
24.97
KB
-rw-r--r--
2025-11-25 13:09
list.php
23.41
KB
-rw-r--r--
2025-11-25 13:09
releve.php
29.9
KB
-rw-r--r--
2025-11-25 13:09
transfer.php
8.72
KB
-rw-r--r--
2025-11-25 13:09
treso.php
10.28
KB
-rw-r--r--
2025-11-25 13:09
Save
Rename
<?php /* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org> * Copyright (C) 2004-2013 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com> * Copyright (C) 2013 Charles-Fr BENKE <charles.fr@benke.fr> * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr> * Copyright (C) 2016 Marcos García <marcosgdf@gmail.com> * * 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 <http://www.gnu.org/licenses/>. */ /** * \file htdocs/compta/bank/categ.php * \ingroup compta * \brief Page ajout de categories bancaires */ require('../../main.inc.php'); require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php'; require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/bankcateg.class.php'; // Load translation files required by the page $langs->loadLangs(array('banks', 'categories')); $action=GETPOST('action','aZ09'); if (!$user->rights->banque->configurer) accessforbidden(); $bankcateg = new BankCateg($db); $categid = GETPOST('categid'); $label = GETPOST("label"); /* * Add category */ if (GETPOST('add')) { if ($label) { $bankcateg = new BankCateg($db); $bankcateg->label = GETPOST('label'); $bankcateg->create($user); } } if ($categid) { $bankcateg = new BankCateg($db); if ($bankcateg->fetch($categid) > 0) { //Update category if (GETPOST('update') && $label) { $bankcateg->label = $label; $bankcateg->update($user); } //Delete category if ($action == 'delete') { $bankcateg->delete($user); } } } /* * View */ llxHeader(); print load_fiche_titre($langs->trans("RubriquesTransactions"), '', 'title_bank.png'); print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">'; print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">'; print '<table class="noborder" width="100%">'; print '<tr class="liste_titre">'; print '<td>'.$langs->trans("Ref").'</td><td colspan="2">'.$langs->trans("Label").'</td>'; print "</tr>\n"; $sql = "SELECT rowid, label"; $sql.= " FROM ".MAIN_DB_PREFIX."bank_categ"; $sql.= " WHERE entity = ".$conf->entity; $sql.= " ORDER BY label"; $result = $db->query($sql); if ($result) { $num = $db->num_rows($result); $i = 0; $total = 0; while ($i < $num) { $objp = $db->fetch_object($result); print '<tr class="oddeven">'; print '<td><a href="'.DOL_URL_ROOT.'/compta/bank/budget.php?bid='.$objp->rowid.'">'.$objp->rowid.'</a></td>'; if (GETPOST('action','aZ09') == 'edit' && GETPOST("categid")== $objp->rowid) { print "<td colspan=2>"; print '<input type="hidden" name="categid" value="'.$objp->rowid.'">'; print '<input name="label" type="text" size=45 value="'.$objp->label.'">'; print '<input type="submit" name="update" class="button" value="'.$langs->trans("Edit").'">'; print "</td>"; } else { print "<td >".$objp->label."</td>"; print '<td style="text-align: center;">'; print '<a href="'.$_SERVER["PHP_SELF"].'?categid='.$objp->rowid.'&action=edit">'.img_edit().'</a> '; print '<a href="'.$_SERVER["PHP_SELF"].'?categid='.$objp->rowid.'&action=delete">'.img_delete().'</a></td>'; } print "</tr>"; $i++; } $db->free($result); } /* * Line to add category */ if ($action != 'edit') { print '<tr class="oddeven">'; print '<td> </td><td><input name="label" type="text" size="45"></td>'; print '<td align="center"><input type="submit" name="add" class="button" value="'.$langs->trans("Add").'"></td>'; print '</tr>'; } print '</table></form>'; llxFooter();