Subversion Repositories Sites.obs-saisons.fr

Rev

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

Rev 10 Rev 29
Line 1... Line 1...
1
<!-- ODS_SAISIE - DEBUT MENU NAVIGATION -->
1
<!-- ODS_SAISIE - DEBUT MENU NAVIGATION -->
2
<div id="retour_au_site">
2
<div id="retour_au_site">
3
	<ul>
3
	<ul>
4
		<li> 
4
		<li> 
5
			<a href="http://162.38.234.9/ODS_redesign/node/13"> Retour au site </a>
5
			<a href="http://162.38.234.9/obs_saisons/node/13"> Retour au site </a>
6
		</li>
6
		</li>
7
	</ul>
7
	</ul>
8
</div>
8
</div>
Line 9... Line 9...
9
 
9
 
10
<div id="saisie_menu">
-
 
11
    <?php if (isset($stations)) : ?>
10
<div id="saisie_menu">
12
    <ul class=menu">
11
	<ul class=menu">
-
 
12
    	<li><a href="<?= aControleur::getUrlFormulaireSaisieStation() ?>"> Nouvelle station </a> </li>
13
    	<li><a href="<?= aControleur::getUrlFormulaireSaisieStation() ?>"> Nouvelle station </a> </li>
13
    <?php if (isset($stations)) : ?>
14
    <?php foreach ($stations as $station) : ?>
14
    <?php foreach ($stations as $station) : ?>
15
        <li <?= ($station['id'] == $id_station_en_cours) ? 'class="station_en_cours"' : '' ?>>
15
        <li <?= ($station['id'] == $id_station_en_cours) ? 'class="station_en_cours"' : '' ?>>
16
        	<a href="<?= $station['url'] ?>"><?=$station['nom']?></a>
16
        	<a href="<?= $station['url'] ?>"><?=$station['nom']?></a>
17
            <?php if (isset($station['especes']) && $station['id'] == $id_station_en_cours) : ?>
17
            <?php if (isset($station['especes']) && $station['id'] == $id_station_en_cours) : ?>
Line 23... Line 23...
23
	            <?php endforeach; ?>
23
	            <?php endforeach; ?>
24
	            </ul>
24
	            </ul>
25
            <?php endif; ?>
25
            <?php endif; ?>
26
        </li>
26
        </li>
27
    <?php endforeach; ?>
27
    <?php endforeach; ?>
28
    </ul>
-
 
29
    <?php endif; ?>
28
    <?php endif; ?>
-
 
29
    </ul>
30
</div>
30
</div>
31
<!-- ODS_SAISIE - FIN MENU NAVIGATION --> 
31
<!-- ODS_SAISIE - FIN MENU NAVIGATION --> 
32
32