25 if (!defined(
'NOLOGIN')) define(
'NOLOGIN',
'1');
26 if (!defined(
'NOCSRFCHECK')) define(
'NOCSRFCHECK',
'1');
27 if (!defined(
'NOBROWSERNOTIF')) define(
'NOBROWSERNOTIF',
'1');
28 if (!defined(
'NOIPCHECK')) define(
'NOIPCHECK',
'1');
38 print '<html><title>List of donators</title><body>';
47 print '</body></html>';
50 require
'../../main.inc.php';
51 require_once DOL_DOCUMENT_ROOT.
'/don/class/don.class.php';
57 $langs->load(
"donations");
66 $sql =
"SELECT d.datedon as datedon, d.lastname, d.firstname, d.amount, d.public, d.societe";
67 $sql .=
" FROM ".MAIN_DB_PREFIX.
"don as d";
68 $sql .=
" WHERE d.fk_statut in (2, 3) ORDER BY d.datedon DESC";
73 $num = $db->num_rows(
$resql);
76 print "<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"4\">";
79 print "<td>".$langs->trans(
"Name").
" / ".$langs->trans(
"Company").
"</td>";
80 print "<td>Date</td>";
81 print '<td class="right">'.$langs->trans(
"Amount").
'</td>';
86 $objp = $db->fetch_object(
$resql);
88 print '<tr class="oddeven">';
91 print "<td>".dolGetFirstLastname($objp->firstname, $objp->lastname).
" ".
dol_escape_htmltag($objp->societe).
"</td>\n";
93 print "<td>".$langs->trans(
"Anonymous").
"</td>\n";
95 print "<td>".dol_print_date($db->jdate($objp->datedon)).
"</td>\n";
96 print '<td class="right">'.number_format($objp->amount, 2,
'.',
' ').
' '.$langs->trans(
"Currency".$conf->currency).
'</td>';
102 print $langs->trans(
"Donation");
accessforbidden($message= '', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
llxHeaderVierge()
Header function.
print
Draft customers invoices.
llxFooterVierge()
Footer function.
if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) if(!empty($conf->don->enabled)&&$user->rights->don->lire) if(!empty($conf->tax->enabled)&&$user->rights->tax->charges->lire) if(!empty($conf->facture->enabled)&&!empty($conf->commande->enabled)&&$user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) $resql
Social contributions to pay.
dol_print_error($db= '', $error= '', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $keepmoretags= '', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields...