Example #1
0
if ($albums) {
    foreach ($albums as $album_id) {
        $album = new Album($album_id);
        $album->format();
        $show_play = true;
        ?>
    <div class="random_album">
        <div class="art_album">
            <?php 
        if (Art::is_enabled()) {
            $thumb = 1;
            if (!UI::is_grid_view('album')) {
                $thumb = 11;
                $show_play = false;
            }
            Art::display_item($album, $thumb, $album->link);
        } else {
            ?>
            <a href="<?php 
            $album->link;
            ?>
">
                <?php 
            echo '[' . $album->f_artist . '] ' . $album->f_name;
            ?>
            </a>
            <?php 
        }
        ?>
        </div>
        <?php