diff options
Diffstat (limited to 'templates/show_albums.inc.php')
-rw-r--r-- | templates/show_albums.inc.php | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/templates/show_albums.inc.php b/templates/show_albums.inc.php index a9727634..41d5ccb0 100644 --- a/templates/show_albums.inc.php +++ b/templates/show_albums.inc.php @@ -1,5 +1,5 @@ <?php -/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */ +/* vim:set softtabstop=4 shiftwidth=4 expandtab: */ /** * * LICENSE: GNU General Public License, version 2 (GPLv2) @@ -38,48 +38,48 @@ $web_path = Config::get('web_path'); <col id="col_action" /> </colgroup> <tr class="th-top"> - <th class="cel_add"><?php echo T_('Add'); ?></th> - <?php if (Art::is_enabled()) { ?> - <th class="cel_cover"><?php echo T_('Cover'); ?></th> - <?php } ?> - <th class="cel_album"><?php echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=name', T_('Album'),'album_sort_name'); ?></th> - <th class="cel_artist"><?php echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=artist', T_('Artist'),'album_sort_artist'); ?></th> - <th class="cel_songs"><?php echo T_('Songs'); ?></th> - <th class="cel_year"><?php echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=year', T_('Year'),'album_sort_year'); ?></th> - <th class="cel_tags"><?php echo T_('Tags'); ?></th> - <th class="col_rating"><?php echo T_('Rating'); ?></th> - <th class="cel_action"><?php echo T_('Actions'); ?></th> + <th class="cel_add"><?php echo T_('Add'); ?></th> + <?php if (Art::is_enabled()) { ?> + <th class="cel_cover"><?php echo T_('Cover'); ?></th> + <?php } ?> + <th class="cel_album"><?php echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=name', T_('Album'),'album_sort_name'); ?></th> + <th class="cel_artist"><?php echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=artist', T_('Artist'),'album_sort_artist'); ?></th> + <th class="cel_songs"><?php echo T_('Songs'); ?></th> + <th class="cel_year"><?php echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=year', T_('Year'),'album_sort_year'); ?></th> + <th class="cel_tags"><?php echo T_('Tags'); ?></th> + <th class="col_rating"><?php echo T_('Rating'); ?></th> + <th class="cel_action"><?php echo T_('Actions'); ?></th> </tr> <?php - if (Config::get('ratings')) { - Rating::build_cache('album',$object_ids); - } - /* Foreach through the albums */ - foreach ($object_ids as $album_id) { - $album = new Album($album_id); - $album->format(); + if (Config::get('ratings')) { + Rating::build_cache('album',$object_ids); + } + /* Foreach through the albums */ + foreach ($object_ids as $album_id) { + $album = new Album($album_id); + $album->format(); ?> <tr id="album_<?php echo $album->id; ?>" class="<?php echo UI::flip_class(); ?>"> - <?php require Config::get('prefix') . '/templates/show_album_row.inc.php'; ?> + <?php require Config::get('prefix') . '/templates/show_album_row.inc.php'; ?> </tr> <?php } //end foreach ($albums as $album) ?> <?php if (!count($object_ids)) { ?> <tr class="<?php echo UI::flip_class(); ?>"> - <td colspan="7"><span class="fatalerror"><?php echo T_('Not Enough Data'); ?></span></td> + <td colspan="7"><span class="fatalerror"><?php echo T_('Not Enough Data'); ?></span></td> </tr> <?php } ?> <tr class="th-bottom"> - <th class="cel_add"><?php echo T_('Add'); ?></th> - <?php if (Art::is_enabled()) { ?> - <th class="cel_cover"><?php echo T_('Cover'); ?></th> - <?php } ?> - <th class="cel_album"><?php echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=name', T_('Album'),'album_sort_name_bottom'); ?></th> - <th class="cel_artist"><?php echo T_('Artist'); ?></th> - <th class="cel_songs"><?php echo T_('Songs'); ?></th> - <th class="cel_year"><?php echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=year', T_('Year'),'album_sort_year_bottom'); ?></th> - <th class="cel_tags"><?php echo T_('Tags'); ?></th> - <th class="col_rating"><?php echo T_('Rating'); ?></th> - <th class="cel_action"><?php echo T_('Actions'); ?></th> + <th class="cel_add"><?php echo T_('Add'); ?></th> + <?php if (Art::is_enabled()) { ?> + <th class="cel_cover"><?php echo T_('Cover'); ?></th> + <?php } ?> + <th class="cel_album"><?php echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=name', T_('Album'),'album_sort_name_bottom'); ?></th> + <th class="cel_artist"><?php echo T_('Artist'); ?></th> + <th class="cel_songs"><?php echo T_('Songs'); ?></th> + <th class="cel_year"><?php echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=year', T_('Year'),'album_sort_year_bottom'); ?></th> + <th class="cel_tags"><?php echo T_('Tags'); ?></th> + <th class="col_rating"><?php echo T_('Rating'); ?></th> + <th class="cel_action"><?php echo T_('Actions'); ?></th> </tr> </table> <?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?> |