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

71 lines
3.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/>.
*
*/
?>
<?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="catalog">
<thead>
<tr class="th-top">
<th class="cel_catalog essential persist"><?php echo T_('Name'); ?></th>
<th class="cel_info essential"><?php echo T_('Info'); ?></th>
<th class="cel_lastverify optional"><?php echo T_('Last Verify'); ?></th>
<th class="cel_lastadd optional"><?php echo T_('Last Add'); ?></th>
<th class="cel_lastclean optional "><?php echo T_('Last Clean'); ?></th>
<th class="cel_action cel_action_text essential"><?php echo T_('Actions'); ?></th>
</tr>
</thead>
<tbody>
<?php
foreach ($object_ids as $catalog_id) {
$libitem = Catalog::create_from_id($catalog_id);
$libitem->format(); ?>
<tr class="<?php echo UI::flip_class(); ?>" id="catalog_<?php echo $libitem->id; ?>">
<?php require AmpConfig::get('prefix') . UI::find_template('show_catalog_row.inc.php'); ?>
</tr>
<?php
} ?>
<tr class="<?php echo UI::flip_class(); ?>">
<td colspan="6">
<?php if (!count($object_ids)) {
?>
<span class="nodata"><?php echo T_('No catalog found'); ?></span>
<?php
} ?>
</td>
</tr>
</tbody>
<tfoot>
<tr class="th-bottom">
<th class="cel_catalog"><?php echo T_('Name'); ?></th>
<th class="cel_info"><?php echo T_('Info'); ?></th>
<th class="cel_lastverify"><?php echo T_('Last Verify'); ?></th>
<th class="cel_lastadd"><?php echo T_('Last Add'); ?></th>
<th class="cel_lastclean"><?php echo T_('Last Clean'); ?></th>
<th class="cel_action cel_action_text"><?php echo T_('Actions'); ?></th>
</tr>
</tfoot>
</table>
<script src="<?php echo AmpConfig::get('web_path'); ?>/lib/javascript/tabledata.js" language="javascript" type="text/javascript"></script>
<?php if ($browse->get_show_header()) {
require AmpConfig::get('prefix') . UI::find_template('list_header.inc.php');
} ?>