'."\n";
if ($title!='')
$res .= "\t".'
'.$title.'
'."\n";
$res .=
"\t\t".''."\n".
"\t\t\t".'
'."\n";
echo $res;
$i++;
}
/**
@function endBloc
Affiche le HTML de la fin d'un bloc.
*/
function endBloc()
{
echo
"\t\t\t".'
'."\n".
"\t\t".'
'."\n".
"\t".'';
}
/**
@function headJsIe
Affiche le javascript pour IE.
*/
function headJsIe()
{
$user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? strtolower($_SERVER['HTTP_USER_AGENT']) : '';
if (strpos($user_agent, 'msie') !== false && strpos($user_agent, 'windows') !== false && strpos($user_agent, 'opera') === false)
echo '';
}
/**
@function startBlocStatic
Affiche le HTML du début d'un bloc.
@param string title Le titre du bloc ('')
@param string id L'identifiant du bloc ('')
*/
function startBlocStatic($title='',$id='')
{
// un compteur si jamais il y a pas d'identifiant de spécifié
static $i;
$id = $id != '' ? $id : $i;
$res = '';
$res .= "\t".''."\n";
if ($title!='')
$res .= "\t".'
'.$title.'
'."\n";
$res .=
"\t\t".'
'."\n".
"\t\t\t".'
'."\n";
return $res;
$i++;
}
/**
@function endBlocStatic
Affiche le HTML de la fin d'un bloc.
*/
function endBlocStatic()
{
return
"\t\t\t".'
'."\n".
"\t\t".'
'."\n".
"\t".'
';
}
?>