Rev | Line | |
---|
[6] | 1 | <?php $env->aff_emplacement("interne_gauche") ?> |
---|
| 2 | |
---|
| 3 | <?php if(false && $env->out["last_albums"]) : ?> |
---|
| 4 | |
---|
| 5 | <?php foreach($env->out["last_albums"] as $id_album => $album) : ?> |
---|
| 6 | |
---|
| 7 | <br /> |
---|
| 8 | <a class="last_album_link" |
---|
| 9 | title="<?= $album["artiste"] ?> : <?= str_replace("\"", "\\\"", $album["titre"]) ?>" |
---|
| 10 | href="<?= $env->url |
---|
| 11 | ( array |
---|
| 12 | ( "e" => "artistes", |
---|
| 13 | "artiste" => $album["id_artiste"], |
---|
| 14 | "page" => "downloads", |
---|
| 15 | "album" => $id_album |
---|
| 16 | ) |
---|
| 17 | ) ?>"> |
---|
| 18 | <?php if($album["image"]) : ?> |
---|
| 19 | <img src="<?= $album["image"] ?>" width="150" alt="<?= str_replace("\"", "\\\"", $album["titre"]) ?>" /> |
---|
| 20 | <?php endif; ?> |
---|
| 21 | <br/> |
---|
| 22 | <?= $album["artiste"] ?> : <?= $album["titre"] ?> |
---|
| 23 | </a> |
---|
| 24 | |
---|
| 25 | <?php endforeach; ?> |
---|
| 26 | |
---|
| 27 | <?php endif; ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.