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