26 lines
583 B
PHP
26 lines
583 B
PHP
|
<?php
|
||
|
require(dirname(__FILE__).'/header.php');
|
||
|
|
||
|
if(!empty($body_title))
|
||
|
echo get_html_h1($body_title);
|
||
|
|
||
|
if(!empty($ariane_items))
|
||
|
echo get_html_ariane($ariane_items);
|
||
|
|
||
|
if(!empty($msg_infos))
|
||
|
echo get_html_alerte_msg($msg_infos,"alert-warning");
|
||
|
|
||
|
if(!empty($form))
|
||
|
echo get_html_form($form);
|
||
|
|
||
|
//à virer ! doit être dans chaque formulaire ! ou garder pour formulaire sans js ?
|
||
|
echo "<div id='msg_form'>";
|
||
|
if(!empty($msg_form))
|
||
|
echo get_html_alerte_msg($msg_form);
|
||
|
echo "</div>";
|
||
|
|
||
|
if(!empty($body_content))
|
||
|
echo $body_content;
|
||
|
|
||
|
include(dirname(__FILE__).'/footer.php');
|
||
|
exit();
|