enabled ? 'disable' : 'enable';
$button_flip_state_id = 'button_flip_state_' . $song->id;
?>
title . ' ' . _('Details')); ?>
id,'song'); ?>
-
id,'add',_('Add'),'add_song_' . $song->id); ?>
id,$icon,_(ucfirst($icon)),'flip_song_' . $song->id); ?>
title);
$songprops[gettext_noop('Artist')] = $song->f_artist_link;
$songprops[gettext_noop('Album')] = $song->f_album_link . " (" . scrub_out($song->year). ")";
$songprops[gettext_noop('Genre')] = $song->f_genre_link;
$songprops[gettext_noop('Length')] = scrub_out($song->f_time);
$songprops[gettext_noop('Comment')] = scrub_out($song->comment);
$songprops[gettext_noop('Label')] = scrub_out($song->label);
$songprops[gettext_noop('Song Language')]= scrub_out($song->language);
$songprops[gettext_noop('Catalog Number')] = scrub_out($song->catalog_number);
$songprops[gettext_noop('Bitrate')] = scrub_out($song->f_bitrate);
if (Access::check('interface','75')) {
$songprops[gettext_noop('Filename')] = scrub_out($song->file) . " " . $song->f_size . "MB";
}
if ($song->update_time) {
$songprops[gettext_noop('Last Updated')] = date("d/m/Y H:i",$song->update_time);
}
$songprops[gettext_noop('Added')] = date("d/m/Y H:i",$song->addition_time);
foreach ($songprops as $key => $value)
{
if(trim($value))
{
$rowparity = flip_class();
echo "- " . _($key) . "
- " . $value . "
";
}
}
?>