1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 01:39:28 +02:00
ampache/templates/show_podcast_episodes.inc.php
Manuel 9399312faa code formatting with php-cs-fixer
I let php-cs-fixer format the code.. seems that they worked on it so the
most ugly line breaks are gone.

And hopefully we Travis won't get angry any more.

:-)
2016-08-07 02:13:33 +02:00

114 lines
4.5 KiB
PHP

<?php
/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
/**
*
* LICENSE: GNU Affero General Public License, version 3 (AGPLv3)
* Copyright 2001 - 2016 Ampache.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
$thcount = 7;
?>
<?php if ($browse->get_show_header()) {
require AmpConfig::get('prefix') . UI::find_template('list_header.inc.php');
} ?>
<table class="tabledata <?php echo $browse->get_css_class() ?>" cellpadding="0" cellspacing="0" data-objecttype="podcast_episode">
<thead>
<tr class="th-top">
<th class="cel_play essential"></th>
<th class="cel_title essential persist"><?php echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=title', T_('Title'), 'podcast_episode_sort_title'); ?></th>
<th class="cel_add essential"></th>
<th class="cel_podcast optional"><?php echo T_('Podcast'); ?></th>
<th class="cel_time optional"><?php echo T_('Time'); ?></th>
<th class="cel_pubdate optional"><?php echo T_('Publication Date'); ?></th>
<th class="cel_state optional"><?php echo T_('State'); ?></th>
<?php if (User::is_registered()) {
?>
<?php if (AmpConfig::get('ratings')) {
++$thcount; ?>
<th class="cel_rating optional"><?php echo T_('Rating'); ?></th>
<?php
} ?>
<?php if (AmpConfig::get('userflags')) {
++$thcount; ?>
<th class="cel_userflag optional"><?php echo T_('Fav.'); ?></th>
<?php
} ?>
<?php
} ?>
<th class="cel_action essential"><?php echo T_('Actions'); ?></th>
</tr>
</thead>
<tbody>
<?php
if (AmpConfig::get('ratings')) {
Rating::build_cache('podcast_episode', $object_ids);
}
if (AmpConfig::get('userflags')) {
Userflag::build_cache('podcast_episode', $object_ids);
}
foreach ($object_ids as $episode_id) {
$libitem = new Podcast_Episode($episode_id);
$libitem->format(); ?>
<tr id="podcast_episode_<?php echo $libitem->id; ?>" class="<?php echo UI::flip_class(); ?>">
<?php require AmpConfig::get('prefix') . UI::find_template('show_podcast_episode_row.inc.php'); ?>
</tr>
<?php
} ?>
<?php if (!count($object_ids)) {
?>
<tr class="<?php echo UI::flip_class(); ?>">
<td colspan="<?php echo $thcount; ?>"><span class="nodata"><?php echo T_('No podcast episode found'); ?></span></td>
</tr>
<?php
} ?>
</tbody>
<tfoot>
<tr class="th-bottom">
<th class="cel_play"></th>
<?php if (Art::is_enabled()) {
?>
<th class="cel_cover"><?php echo T_('Art'); ?></th>
<?php
} ?>
<th class="cel_title"><?php echo Ajax::text('?page=browse&action=set_sort&browse_id=' . $browse->id . '&sort=title', T_('Title'), 'podcast_episode_sort_title_bottom'); ?></th>
<th class="cel_add"></th>
<th class="cel_podcast"><?php echo T_('Podcast'); ?></th>
<th class="cel_time"><?php echo T_('Time'); ?></th>
<th class="cel_pubdate"><?php echo T_('Publication Date'); ?></th>
<th class="cel_state"><?php echo T_('State'); ?></th>
<?php if (User::is_registered()) {
?>
<?php if (AmpConfig::get('ratings')) {
?>
<th class="cel_rating"><?php echo T_('Rating'); ?></th>
<?php
} ?>
<?php if (AmpConfig::get('userflags')) {
?>
<th class="cel_userflag"><?php echo T_('Fav.'); ?></th>
<?php
} ?>
<?php
} ?>
<th class="cel_action"><?php echo T_('Actions'); ?></th>
</tr>
<tfoot>
</table>
<?php show_table_render(); ?>
<?php if ($browse->get_show_header()) {
require AmpConfig::get('prefix') . UI::find_template('list_header.inc.php');
} ?>