2
0
forked from Wavyzz/dolibarr

Massive updates

This commit is contained in:
Rodolphe Quiedeville
2002-05-06 19:10:48 +00:00
parent 632b4662d5
commit 5b4cf5a17e
42 changed files with 1738 additions and 339 deletions

View File

@@ -24,7 +24,31 @@
* $Source$
*
*/
function print_titre($titre) {
global $conf;
print '<table width="100%" border="0" cellpadding="3" cellspacing="0">';
print '<tr><td><div class="titre">'.$titre.'</div></td>';
print '</tr></table>';
}
/*
*
*
*/
function print_barre_liste($titre,$page,$file) {
global $conf;
print '<table width="100%" border="0" cellpadding="3" cellspacing="0">';
print '<tr><td><div class="titre">'.$titre.'</div></td>';
print '<td align="right">';
if ($page > 0) {
print '<a href="'.$file.'?page='.($page-1).'"><img src="/theme/'.$conf->theme.'/img/1leftarrow.png" border="0"></a>';
}
print '<a href="'.$file.'?page='.($page+1).'"><img src="/theme/'.$conf->theme.'/img/1rightarrow.png" border="0"></a>';
print '</td></tr></table>';
}
/*
*
*
*/
function print_date_select() {
$strmonth[1] = "Janvier";
$strmonth[2] = "F&eacute;vrier";