'.$block['titre'].''."\n"; }
if( isset($block['class']) && $block['class']!='' ){ $class = ' class='.$block['class']; }else{ $class = ''; }
if( isset($block['ligne']) && count($block['ligne']>0) )
{
$html.='
'."\n";
foreach($block['ligne'] as $ligne)
{
if($ligne!=FALSE)
{
$html.=''."\n";
$html.=' | '."\n";
$html.=''.$ligne['intitule'].' | '."\n";
$html.=''.$ligne['valeur'].' | '."\n";
$html.='
';
}
}
$html.='
'."\n";
}
}
return $html;
}
function theme_block($page)
{
global $firephp;
$blocks = $page['blocks'];
$page_html = '';
if( isset($page['titre']) && $page['titre']!='' ){ $page_html.= ''.$page['titre'].'
'."\n"; }
$firephp->log($page_html, 'page_html');
if( isset($page['blocks']) )
{
$blocks_html = theme_blocks($blocks);
}
$page_html.= $blocks_html;
return $page_html;
}