"; if(count($_POST)) { foreach ($_POST as $name=>$value) { if(is_string($value)) { $loginform .= ""; } } } $loginform.="

"; if($opac_password_forgotten_show) $loginform.="".$msg["mdp_forgotten"].""; if ($opac_websubscribe_show) $loginform .= "
".$msg["subs_not_yet_subscriber"].""; return $loginform ; } function genere_compte_empr(){ global $msg, $empr_prenom, $empr_nom; $loginform ="".$empr_prenom." ".$empr_nom."
".$msg["empr_my_account"]."
".$msg["empr_logout"].""; return $loginform ; } function affichage_onglet_compte_empr(){ global $msg; global $loginform ; if (!$_SESSION["user_code"]) { $info = genere_form_connexion_empr() ; $loginform=str_replace('','

'.$msg['common_tpl_login_invite'].'

',$loginform); } else { $loginform=str_replace('',$msg["empr_my_account"],$loginform); $info = genere_compte_empr() ; } return str_replace("!!login_form!!",$info,$loginform); }