2 <?php $ariane_params = array(); ?>
3 <?php $FIRST = true; ?>
5 <?php if(isset($this->out["groupe"]) && $this->out["groupe"]) : $ariane_params["groupe"] = $this->out["groupe"]["id"]; ?>
6 <?php if($FIRST) : $FIRST = false; else : ?>»<?php endif; ?>
7 <a href="<?php echo $this->url("sources/groupe/view", array("id" => $this->out["groupe"]["id"])) ?>"><?php echo $this->out["groupe"]["nom"] ?></a>
9 <?php if(isset($this->out["album"]) && $this->out["album"]) : $ariane_params["album"] = $this->out["album"]["id"]; ?>
10 <?php if($FIRST) : $FIRST = false; else : ?>»<?php endif; ?>
11 <a href="<?php echo $this->url("sources/album/view", $ariane_params) ?>"><?php echo $this->out["album"]["titre"] ?></a>
13 <?php if(isset($this->out["morceau"]) && $this->out["morceau"]) : $ariane_params["morceau"] = $this->out["morceau"]["id"]; ?>
14 <?php if($FIRST) : $FIRST = false; else : ?>»<?php endif; ?>
15 <a href="<?php echo $this->url("sources/morceau/view", $ariane_params) ?>"><?php echo $this->out["morceau"]["titre"] ?></a>
17 <?php if(isset($this->out["piste"]) && $this->out["piste"]) : $ariane_params["piste"] = $this->out["piste"]["id"]; ?>
18 <?php if($FIRST) : $FIRST = false; else : ?>»<?php endif; ?>
19 <a href="<?php echo $this->url("sources/piste/view", $ariane_params) ?>"><?php echo $this->out["piste"]["titre"] ?></a>