Doc: Mise a jour doc doxygen

This commit is contained in:
Laurent Destailleur 2004-10-12 22:06:55 +00:00
parent 5c0797e98a
commit aba2c33ed5
3 changed files with 11 additions and 11 deletions

View File

@ -23,8 +23,8 @@
*/
/*!
\file htdocs/account.class.php
\ingroup bank
\file htdocs/compta/bank/account.class.php
\ingroup banque
\brief Fichier de la classe des comptes bancaires
\version $Revision$
*/

View File

@ -22,9 +22,9 @@
*
*/
/*! \file htdocs/compta/facture.php
/*! \file htdocs/compta/facture/apercu.php
\ingroup facture
\brief Page de création d'une facture
\brief Page de l'onglet aperçu d'une facture
\version $Revision$
*/
@ -90,7 +90,7 @@ if ($_GET["facid"] > 0)
/*
* Facture
*/
print '<table class="border" cellspacing="0" cellpadding="2" width="100%">';
print '<table class="border" width="100%">';
print '<tr><td>'.$langs->trans("Customer").'</td>';
print '<td colspan="3">';
print '<b><a href="fiche.php?socid='.$soc->id.'">'.$soc->nom.'</a></b></td>';
@ -137,7 +137,7 @@ if ($_GET["facid"] > 0)
{
$encfile = urlencode($file);
print_titre("Documents");
print '<table class="border" width="100%" cellspacing="0" cellpadding="3">';
print '<table class="border" width="100%">';
print "<tr $bc[0]><td>Facture PDF</td>";

View File

@ -749,11 +749,11 @@ class Form
/*!
\brief Affiche un select à partir d'un tableau
\param nom de la zone select
\param tableau de key+valeur
\param key présélectionnée
\param 1 si il faut un valeur "-" dans la liste, 0 sinon
\param 1 pour afficher la key dans la valeur "[key] value"
\param name nom de la zone select
\param array tableau de key+valeur
\param id key présélectionnée
\param empty 1 si il faut un valeur "-" dans la liste, 0 sinon
\param key_libelle 1 pour afficher la key dans la valeur "[key] value"
*/
function select_array($name, $array, $id='', $empty=0, $key_libelle=0)
{