1 | <?php if($env->out["nb_downloads"]) : ?> |
---|
2 | <div id="playlists"> |
---|
3 | <h4>10 derniers morceaux</h4> |
---|
4 | <ul> |
---|
5 | <li class="last"><a href="<?= $env->url(array("e" => "last_downloads", "format" => "atom"), "backend.php"); ?>" |
---|
6 | title="fil atom : les 10 derniers morceaux"> |
---|
7 | <img src="<?= $env->out_file("icons/rss.png") ?>" alt="fil atom : les 10 derniers morceaux" /> |
---|
8 | </a></li> |
---|
9 | <li class="sep"><a href="<?= $env->url(array("e" => "last_downloads", "format" => "m3u"), "backend.php"); ?>" |
---|
10 | title="playlist m3u : les 10 derniers morceaux"> |
---|
11 | <img src="<?= $env->out_file("icons/ecouter.png") ?>" alt="playlist m3u : les 10 derniers morceaux" /> |
---|
12 | </a></li> |
---|
13 | <li class="sep"><a href="<?= $env->url(array("e" => "playlist", "action" => "last_downloads")); ?>" |
---|
14 | title="afficher les 10 derniers morceaux"> |
---|
15 | voir |
---|
16 | </a></li> |
---|
17 | </ul> |
---|
18 | <div class="clear"><!-- --></div> |
---|
19 | |
---|
20 | <h4>10 au hasard</h4> |
---|
21 | <ul> |
---|
22 | <li class="last"><a href="<?= $env->url(array("e" => "rand_downloads", "format" => "atom"), "backend.php"); ?>" |
---|
23 | title="fil atom : 10 morceaux au hasard"> |
---|
24 | <img src="<?= $env->out_file("icons/rss.png") ?>" alt="fil atom : 10 morceaux au hasard" /> |
---|
25 | </a></li> |
---|
26 | <li class="sep"><a href="<?= $env->url(array("e" => "rand_downloads", "format" => "m3u"), "backend.php"); ?>" |
---|
27 | title="playlist m3u : 10 morceaux au hasard"> |
---|
28 | <img src="<?= $env->out_file("icons/ecouter.png") ?>" alt="playlist m3u : 10 morceaux au hasard" /> |
---|
29 | </a></li> |
---|
30 | <li class="sep"><a href="<?= $env->url(array("e" => "playlist", "action" => "rand_downloads")); ?>" |
---|
31 | title="afficher 10 morceaux au hasard"> |
---|
32 | voir |
---|
33 | </a></li> |
---|
34 | </ul> |
---|
35 | </div> |
---|
36 | <div class="clear"><!-- --></div> |
---|
37 | <?php endif; ?> |
---|