plusieurs auteurs pour les sources
[mw_sourceml] / app / out / default / views / sources / current_album.php
diff --git a/app/out/default/views/sources/current_album.php b/app/out/default/views/sources/current_album.php
deleted file mode 100644 (file)
index f0af20f..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php if(isset($this->out["album"]) && $this->out["album"]) : $album = $this->out["album"]; ?>
-
-<ul id="album_links">
-  <li><a href="<?php echo $this->url("sources/album/view", array("album" => $album["id"])) ?>">album</a></li>
-</ul>
-
-<ul class="menu_albums">
-  <li><a href="<?php echo $this->url("sources/album/view", array("album" => $album["id"])) ?>" title="<?php echo str_replace("\"", "&quot;", $album["titre"]) ?>">
-
-  <?php
-
-    if
-    (    $album["image_uri"]
-      && file_exists($album["image_uri"])
-      && ($img_size = $data->img_size($album["image_uri"], 90, 90)) !== false
-    ) :
-    $margin_top = floor((90 - $img_size["height"]) / 2);
-
-  ?>
-    <img src="<?php echo $this->path("web").$album["image_uri"]; ?>"
-         width="<?php echo $img_size["width"] ?>"
-         height="<?php echo $img_size["height"] ?>"
-         style="margin-top:<?php echo $margin_top ?>px" />
-  <?php endif; ?>
-  <span><?php echo $album["titre"] ?></span>
-  </a></li>
-</ul>
-
-<div class="clear"><!-- --></div>
-
-<?php endif; ?>