4 isset($this->out["groupe"])
5 && $this->out["groupe"]
6 && $this->out["albums"]["list"]
11 <li><a href="<?php echo $this->url("sources/album", array("groupe" => $this->out["groupe"]["id"])) ?>">albums</a></li>
13 <ul class="menu_albums">
14 <?php foreach($this->out["albums"]["list"] as $id_album => $album) : ?>
15 <li><a href="<?php echo $this->url("sources/album/view", array("album" => $id_album)) ?>" title="<?php echo str_replace("\"", """, $album["titre"]) ?>">
21 && file_exists($album["image_uri"])
22 && ($img_size = $data->img_size($album["image_uri"], 90, 90)) !== false
24 $margin_top = floor((90 - $img_size["height"]) / 2);
27 <img src="<?php echo $this->path("web").$album["image_uri"]; ?>"
28 width="<?php echo $img_size["width"] ?>"
29 height="<?php echo $img_size["height"] ?>"
30 style="margin-top:<?php echo $margin_top ?>px" />
32 <span><?php echo $album["titre"] ?></span>
36 <div class="clear"><!-- --></div>