Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 48 | Rev 86 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 48 Rev 58
Line 9... Line 9...
9
 
9
 
10
<div id="saisie_menu">
10
<div id="saisie_menu">
Line 11... Line 11...
11
	<ul class=menu">
11
	<ul class=menu">
12
		
12
		
13
    	<li class="item_menu_station station_ajout <?= ($id_station_en_cours == 'saisie') ? 'station_en_cours' : '' ?>">
13
    	<li class="item_menu_station station_ajout <?= ($id_station_en_cours == 'saisie') ? 'station_en_cours' : '' ?>">
14
    		<a href="<?= aControleur::getUrlFormulaireSaisieStation() ?>"> Nouvelle station </a> 
14
    		<a href="<?= Liens::getUrlFormulaireSaisieStation() ?>"> Nouvelle station </a> 
15
    	</li>
15
    	</li>
16
    <?php if (isset($stations)) : ?>
16
    <?php if (isset($stations)) : ?>
17
    <?php foreach ($stations as $station) : ?>
17
    <?php foreach ($stations as $station) : ?>
18
        <li class="item_menu_station <?= ($station['id'] == $id_station_en_cours) ? 'station_en_cours' : '' ?>">
18
        <li class="item_menu_station <?= ($station['id'] == $id_station_en_cours) ? 'station_en_cours' : '' ?>">
19
        	<a href="<?= $station['url'] ?>"><?=$station['nom']?></a>
19
        	<a href="<?= $station['url'] ?>"><?=$station['nom']?></a>
20
            <?php if (isset($station['especes']) && $station['id'] == $id_station_en_cours) : ?>
20
            <?php if (isset($station['especes']) && $station['id'] == $id_station_en_cours) : ?>
21
	            <ul>
21
	            <ul>
22
	            	<li class="item_menu_espece espece_ajout <?= ($id_espece_en_cours == 'saisie') ? 'espece_en_cours"' : '' ?>">
22
	            	<li class="item_menu_espece espece_ajout <?= ($id_espece_en_cours == 'saisie') ? 'espece_en_cours"' : '' ?>">
23
	            		<a href="<?= aControleur::getUrlFormulaireAjoutEspece($station['id']) ?>"> Nouvelle espece </a>
23
	            		<a href="<?= Liens::getUrlFormulaireAjoutEspece($station['id']) ?>"> Nouvelle espece </a>
24
	            	</li>
24
	            	</li>
25
	            <?php foreach (($station['especes']) as $espece) : ?>
25
	            <?php foreach (($station['especes']) as $espece) : ?>
26
	                <li class="item_menu_espece <?= ($espece['id_espece'] == $id_espece_en_cours) ? 'espece_en_cours' : '' ?>">
26
	                <li class="item_menu_espece <?= ($espece['id_espece'] == $id_espece_en_cours) ? 'espece_en_cours' : '' ?>">