* * 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 2 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * or see http://www.gnu.org/ */ /** * \file htdocs/lib/report.lib.php * \brief Set of functions for reporting * \version $Id$ */ /** * Show header of a VAT report * @param nom Name of report * @param variante Link for alternate report * @param period Period of report * @param periodlink Link to switch period * @param description Description * @param builddate Date generation * @param exportlink Link for export or '' */ function report_header($nom,$variante='',$period,$periodlink,$description,$builddate,$exportlink='') { global $langs; print "\n\n\n"; $h=0; $head[$h][0] = $_SERVER["PHP_SELF"]; $head[$h][1] = $langs->trans("Report"); dol_fiche_head($head, $hselected, $societe->nom); print '
'; print ''; // Ligne de titre print ''; print ''; if (! $variante) print ''; print ''; // Ligne de la periode d'analyse du rapport print ''; print ''; if (! $periodlink) print ''; print ''; // Ligne de description print ''; print ''; print ''; print ''; // Ligne d'export print ''; print ''; if (! $exportlink) print ''; print ''; print ''; print ''; print '
'.$langs->trans("ReportName").''; else print ''; print $nom; if ($variante) print ''.$variante; print '
'.$langs->trans("ReportPeriod").''; else print ''; if ($period) print $period; if ($periodlink) print ''.$periodlink; print '
'.$langs->trans("ReportDescription").''.$description.'
'.$langs->trans("GeneratedOn").''; else print ''; print dol_print_date($builddate); if ($exportlink) print ''.$langs->trans("Export").''.$exportlink; print '
'; print '
'; print ''; print "\n\n\n"; } ?>