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 /
don /
Delete
Unzip
Name
Size
Permission
Date
Action
admin
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
class
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
payment
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
stats
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
tpl
[ DIR ]
drwxr-xr-x
2025-11-08 11:17
card.php
32.45
KB
-rw-r--r--
2020-10-12 13:32
document.php
7.05
KB
-rw-r--r--
2020-10-12 13:32
index.html
0
B
-rw-r--r--
2020-10-12 13:32
index.php
8.13
KB
-rw-r--r--
2020-10-12 13:32
info.php
4.34
KB
-rw-r--r--
2020-10-12 13:32
list.php
11.46
KB
-rw-r--r--
2020-10-12 13:32
note.php
5.11
KB
-rw-r--r--
2020-10-12 13:32
Save
Rename
<?php /* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org> * Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com> * Copyright (C) 2019 Nicolas ZABOURI <info@inovea-conseil.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/don/index.php * \ingroup donations * \brief Home page of donation module */ require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/don/class/don.class.php'; $hookmanager = new HookManager($db); // Initialize technical object to manage hooks. Note that conf->hooks_modules contains array $hookmanager->initHooks(array('donationindex')); $langs->load("donations"); // Security check $result = restrictedArea($user, 'don'); $donation_static = new Don($db); /* * Actions */ // None /* * View */ $donstatic = new Don($db); $help_url = 'EN:Module_Donations|FR:Module_Dons|ES:Módulo_Donaciones'; llxHeader('', $langs->trans("Donations"), $help_url); $nb = array(); $somme = array(); $total = 0; $sql = "SELECT count(d.rowid) as nb, sum(d.amount) as somme , d.fk_statut"; $sql .= " FROM ".MAIN_DB_PREFIX."don as d WHERE d.entity IN (".getEntity('donation').")"; $sql .= " GROUP BY d.fk_statut"; $sql .= " ORDER BY d.fk_statut"; $result = $db->query($sql); if ($result) { $i = 0; $num = $db->num_rows($result); while ($i < $num) { $objp = $db->fetch_object($result); $somme[$objp->fk_statut] = $objp->somme; $nb[$objp->fk_statut] = $objp->nb; $total += $objp->somme; $i++; } $db->free($result); } else { dol_print_error($db); } print load_fiche_titre($langs->trans("DonationsArea"), '', 'object_donation'); print '<div class="fichecenter"><div class="fichethirdleft">'; if (!empty($conf->global->MAIN_SEARCH_FORM_ON_HOME_AREAS)) // This is useless due to the global search combo { if (!empty($conf->don->enabled) && $user->rights->don->lire) { $listofsearchfields['search_donation'] = array('text'=>'Donation'); } if (count($listofsearchfields)) { print '<form method="post" action="'.DOL_URL_ROOT.'/core/search.php">'; print '<input type="hidden" name="token" value="'.newToken().'">'; print '<table class="noborder nohover centpercent">'; $i = 0; foreach ($listofsearchfields as $key => $value) { if ($i == 0) print '<tr class="liste_titre"><td colspan="3">'.$langs->trans("Search").'</td></tr>'; print '<tr '.$bc[false].'>'; print '<td class="nowrap"><label for="'.$key.'">'.$langs->trans($value["text"]).'</label></td><td><input type="text" class="flat inputsearch" name="'.$key.'" id="'.$key.'"></td>'; if ($i == 0) print '<td rowspan="'.count($listofsearchfields).'"><input type="submit" value="'.$langs->trans("Search").'" class="button"></td>'; print '</tr>'; $i++; } print '</table>'; print '</form>'; print '<br>'; } } $dataseries = array(); $colorseries = array(); include_once DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/theme_vars.inc.php'; print '<table class="noborder nohover centpercent">'; print '<tr class="liste_titre">'; print '<th colspan="4">'.$langs->trans("Statistics").'</th>'; print "</tr>\n"; $listofstatus = array(0, 1, -1, 2); foreach ($listofstatus as $status) { $dataseries[] = array($donstatic->LibStatut($status, 1), (isset($nb[$status]) ? (int) $nb[$status] : 0)); if ($status == Don::STATUS_DRAFT) $colorseries[$status] = '-'.$badgeStatus0; if ($status == Don::STATUS_VALIDATED) $colorseries[$status] = $badgeStatus1; if ($status == Don::STATUS_CANCELED) $colorseries[$status] = $badgeStatus9; if ($status == Don::STATUS_PAID) $colorseries[$status] = $badgeStatus6; } if ($conf->use_javascript_ajax) { print '<tr><td class="center" colspan="4">'; include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php'; $dolgraph = new DolGraph(); $dolgraph->SetData($dataseries); $dolgraph->SetDataColor(array_values($colorseries)); $dolgraph->setShowLegend(2); $dolgraph->setShowPercent(1); $dolgraph->SetType(array('pie')); $dolgraph->setHeight('200'); $dolgraph->draw('idgraphstatus'); print $dolgraph->show($total ? 0 : 1); print '</td></tr>'; } print '<tr class="liste_titre">'; print '<td>'.$langs->trans("Status").'</td>'; print '<td class="right">'.$langs->trans("Number").'</td>'; print '<td class="right">'.$langs->trans("Total").'</td>'; print '<td class="right">'.$langs->trans("Average").'</td>'; print '</tr>'; $total = 0; $totalnb = 0; foreach ($listofstatus as $status) { print '<tr class="oddeven">'; print '<td><a href="list.php?search_status='.$status.'">'.$donstatic->LibStatut($status, 4).'</a></td>'; print '<td class="right">'.(!empty($nb[$status]) ? $nb[$status] : ' ').'</td>'; print '<td class="right">'.(!empty($nb[$status]) ?price($somme[$status], 'MT') : ' ').'</td>'; print '<td class="right">'.(!empty($nb[$status]) ?price(price2num($somme[$status] / $nb[$status], 'MT')) : ' ').'</td>'; $totalnb += (!empty($nb[$status]) ? $nb[$status] : 0); $total += (!empty($somme[$status]) ? $somme[$status] : 0); print "</tr>"; } print '<tr class="liste_total">'; print '<td>'.$langs->trans("Total").'</td>'; print '<td class="right">'.$totalnb.'</td>'; print '<td class="right">'.price($total, 'MT').'</td>'; print '<td class="right">'.($totalnb ?price(price2num($total / $totalnb, 'MT')) : ' ').'</td>'; print '</tr>'; print "</table>"; print '</div><div class="fichetwothirdright"><div class="ficheaddleft">'; $max = 10; /* * Last modified donations */ $sql = "SELECT c.rowid, c.ref, c.fk_statut, c.societe, c.lastname, c.firstname, c.tms as datem, c.amount"; $sql .= " FROM ".MAIN_DB_PREFIX."don as c"; $sql .= " WHERE c.entity = ".$conf->entity; //$sql.= " AND c.fk_statut > 2"; $sql .= " ORDER BY c.tms DESC"; $sql .= $db->plimit($max, 0); $resql = $db->query($sql); if ($resql) { print '<table class="noborder centpercent">'; print '<tr class="liste_titre">'; print '<th colspan="5">'.$langs->trans("LastModifiedDonations", $max).'</th></tr>'; $num = $db->num_rows($resql); if ($num) { $i = 0; while ($i < $num) { $obj = $db->fetch_object($resql); print '<tr class="oddeven">'; $donation_static->id = $obj->rowid; $donation_static->ref = $obj->ref ? $obj->ref : $obj->rowid; print '<td width="96" class="nobordernopadding nowrap">'; print $donation_static->getNomUrl(1); print '</td>'; print '<td class="nobordernopadding">'; print $obj->societe; print ($obj->societe && ($obj->lastname || $obj->firstname) ? ' / ' : ''); print dolGetFirstLastname($obj->lastname, $obj->firstname); print '</td>'; print '<td class="right nobordernopadding">'; print price($obj->amount, 1); print '</td>'; // Date print '<td class="center">'.dol_print_date($db->jdate($obj->datem), 'day').'</td>'; print '<td class="right">'.$donation_static->LibStatut($obj->fk_statut, 5).'</td>'; print '</tr>'; $i++; } } print "</table><br>"; } else dol_print_error($db); print '</div></div></div>'; $parameters = array('user' => $user); $reshook = $hookmanager->executeHooks('dashboardDonation', $parameters, $object); // Note that $action and $object may have been modified by hook llxFooter(); $db->close();