Line | |
---|
1 | <?php |
---|
2 | /* |
---|
3 | --------G.E.N.E.S.P.I.P------- |
---|
4 | ---SITE genealogique & SPIP--- |
---|
5 | ------Christophe RENOU-------- |
---|
6 | */ |
---|
7 | |
---|
8 | include_spip('inc/presentation'); |
---|
9 | |
---|
10 | function exec_fiche_enfant(){ |
---|
11 | global $connect_statut, $connect_toutes_rubriques; |
---|
12 | |
---|
13 | $commencer_page = charger_fonction('commencer_page', 'inc'); |
---|
14 | echo $commencer_page(_T('Fiche'), "", ""); |
---|
15 | $id_individu = $_GET['id_individu'].$_POST['id_individu']; |
---|
16 | |
---|
17 | echo debut_gauche('',true); |
---|
18 | include_spip('inc/boite_info'); |
---|
19 | |
---|
20 | include_spip('inc/raccourcis_fiche'); |
---|
21 | echo debut_droite('',true); |
---|
22 | |
---|
23 | echo debut_cadre_relief( "", false, "", $titre = _T('genespip:fiche enfant')); |
---|
24 | echo debut_boite_info(true); |
---|
25 | |
---|
26 | echo gros_titre(_T(genespip_nom_prenom($id_individu,3)), '', false); |
---|
27 | echo "<br /><fieldset><legend>"._T('genespip:liste des enfants')."</b></i></legend>"; |
---|
28 | echo genespip_nom_prenom($id_individu,2); |
---|
29 | echo "</fieldset>"; |
---|
30 | |
---|
31 | echo fin_boite_info(true); |
---|
32 | |
---|
33 | echo fin_cadre_relief(); |
---|
34 | |
---|
35 | echo fin_page(); |
---|
36 | } |
---|
37 | ?> |
---|
38 | |
---|
39 | |
---|
40 | |
---|
Note: See
TracBrowser
for help on using the repository browser.