1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 01:39:28 +02:00
ampache/templates/show_playlist_medias.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

111 lines
4.1 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/>.
*
*/
$web_path = AmpConfig::get('web_path');
?>
<?php if ($browse->get_show_header()) {
require AmpConfig::get('prefix') . UI::find_template('list_header.inc.php');
} ?>
<form method="post" id="reorder_playlist_<?php echo $playlist->id; ?>">
<table id="reorder_playlist_table" class="tabledata <?php echo $browse->get_css_class() ?>" cellpadding="0" cellspacing="0" data-objecttype="media">
<thead>
<tr class="th-top">
<th class="cel_play essential"></th>
<?php if (Art::is_enabled()) {
?>
<th class="cel_cover optional"><?php echo T_('Art') ?></th>
<?php
} ?>
<th class="cel_title essential persist"><?php echo T_('Title'); ?></th>
<th class="cel_add essential"></th>
<th class="cel_time optional"><?php echo T_('Time'); ?></th>
<?php if (User::is_registered()) {
?>
<?php if (AmpConfig::get('ratings')) {
; ?>
<th class="cel_rating optional"><?php echo T_('Rating'); ?></th>
<?php
} ?>
<?php if (AmpConfig::get('userflags')) {
?>
<?php
} ?>
<th class="cel_userflag optional"><?php echo T_('Fav.'); ?></th>
<?php
} ?>
<th class="cel_action essential"><?php echo T_('Action'); ?></th>
<th class="cel_drag essential"></th>
</tr>
</thead>
<tbody id="sortableplaylist_<?php echo $playlist->id; ?>">
<?php foreach ($object_ids as $object) {
if (!is_array($object)) {
$object = (array) $object;
}
$object_type = $object['object_type'];
if (Core::is_library_item($object_type)) {
$libitem = new $object_type($object['object_id']);
$libitem->format();
$playlist_track = $object['track']; ?>
<tr class="<?php echo UI::flip_class() ?>" id="track_<?php echo $object['track_id'] ?>">
<?php require AmpConfig::get('prefix') . UI::find_template('show_playlist_media_row.inc.php'); ?>
</tr>
<?php
}
} ?>
</tbody>
<tfoot>
<tr class="th-bottom">
<th class="cel_play"><?php echo T_('Play'); ?></th>
<?php if (Art::is_enabled()) {
?>
<th class="cel_cover"><?php echo T_('Art') ?></th>
<?php
} ?>
<th class="cel_title"><?php echo T_('Title'); ?></th>
<th class="cel_add"></th>
<th class="cel_time"><?php echo T_('Time'); ?></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_('Action'); ?></th>
<th class="cel_drag"></th>
</tr>
</tfoot>
</table>
</form>
<?php show_table_render($argument); ?>
<?php if ($browse->get_show_header()) {
require AmpConfig::get('prefix') . UI::find_template('list_header.inc.php');
} ?>