mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-03 17:59:21 +02:00
Syntax update
Table filters are displayed on link click
This commit is contained in:
parent
339acb2931
commit
017c164f62
20 changed files with 142 additions and 119 deletions
|
@ -18,6 +18,17 @@
|
|||
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
//
|
||||
|
||||
/***********/
|
||||
/* Filters */
|
||||
/***********/
|
||||
|
||||
function showFilters(element) {
|
||||
var link = $('.browse-options-link');
|
||||
link.hide();
|
||||
var content = $('.browse-options-content');
|
||||
content.show();
|
||||
}
|
||||
|
||||
/************************************************************/
|
||||
/* Dialog selection to add song to an existing/new playlist */
|
||||
/************************************************************/
|
||||
|
|
|
@ -77,12 +77,12 @@ if ($limit > 0 && $total > $limit) {
|
|||
?>
|
||||
<div class="list-header">
|
||||
<?php if ($browse->get_use_alpha()) { ?>
|
||||
<div class="list-header-alpha">
|
||||
<?php
|
||||
$alphastr = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
||||
$alphalist = str_split($alphastr);
|
||||
$alphalist[] = '#';
|
||||
foreach ($alphalist as $key => $value) {
|
||||
<div class="list-header-alpha">
|
||||
<?php
|
||||
$alphastr = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
||||
$alphalist = str_split($alphastr);
|
||||
$alphalist[] = '#';
|
||||
foreach ($alphalist as $key => $value) {
|
||||
$filter = '^';
|
||||
if ($value == '#') {
|
||||
$filter .= '[[:digit:]|[:punct:]]';
|
||||
|
@ -93,9 +93,9 @@ foreach ($alphalist as $key => $value) {
|
|||
$value = '<b>' . $value . '</b>';
|
||||
}
|
||||
echo Ajax::text('?page=browse&action=browse&browse_id=' . $browse->id . '&key=regex_match&multi_alpha_filter=' . $filter, $value,'browse_' . $uid . '_alpha_' . $key,'');
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<?php
|
||||
// are there enough items to even need this view?
|
||||
|
@ -173,12 +173,14 @@ if ($pages > 1 && $start > -1) {
|
|||
<?php
|
||||
} // if stuff
|
||||
?>
|
||||
|
||||
<span class="browse-options">
|
||||
|
||||
<span class="browse-options">
|
||||
<a href="#" onClick="showFilters(this);" class="browse-options-link"><?php echo T_("Filters"); ?></a>
|
||||
<span class="browse-options-content">
|
||||
<span><input type="checkbox" id="browse_<?php echo $browse->id; ?>_use_pages_<?php echo $is_header; ?>" value="true" <?php echo (($browse->get_use_pages()) ? 'checked' : ''); ?> onClick="javascript:<?php echo Ajax::action("?page=browse&action=options&browse_id=" . $browse->id . "&option=use_pages&value=' + $('#browse_" . $browse->id . "_use_pages_" . $is_header . "').is(':checked') + '", "browse_" . $browse->id . "_use_pages_" . $is_header); ?>">Pages</span>
|
||||
<span><input type="checkbox" id="browse_<?php echo $browse->id; ?>_use_scroll_<?php echo $is_header; ?>" value="true" <?php echo ((!$browse->get_use_pages()) ? 'checked' : ''); ?> onClick="javascript:<?php echo Ajax::action("?page=browse&action=options&browse_id=" . $browse->id . "&option=use_pages&value=' + !($('#browse_" . $browse->id . "_use_scroll_" . $is_header . "').is(':checked')) + '", "browse_" . $browse->id . "_use_scroll_" . $is_header); ?>">Infinite Scroll</span>
|
||||
<span><input type="checkbox" id="browse_<?php echo $browse->id; ?>_use_alpha_<?php echo $is_header; ?>" value="true" <?php echo (($browse->get_use_alpha()) ? 'checked' : ''); ?> onClick="javascript:<?php echo Ajax::action("?page=browse&action=options&browse_id=" . $browse->id . "&option=use_alpha&value=' + $('#browse_" . $browse->id . "_use_alpha_" . $is_header . "').is(':checked') + '", "browse_" . $browse->id . "_use_alpha_" . $is_header); ?>">Alphabet</span>
|
||||
<?php if ($browse->get_use_pages()) { ?>
|
||||
<?php if ($browse->get_use_pages()) { ?>
|
||||
<span>|</span>
|
||||
<span>
|
||||
<form id="browse_<?php echo $browse->id; ?>_limit_form_<?php echo $is_header; ?>" method="post" action="javascript:void(0);">
|
||||
|
@ -186,8 +188,9 @@ if ($pages > 1 && $start > -1) {
|
|||
<input type="text" id="limit_value_<?php echo $browse->id; ?>_<?php echo $is_header; ?>" name="value" value="<?php echo $browse->get_offset(); ?>" onKeyUp="delayRun(this, '800', 'ajaxState', '<?php echo Ajax::url('?page=browse&action=options&browse_id=' . $browse->id . '&option=limit'); ?>', 'limit_value_<?php echo $browse->id; ?>_<?php echo $is_header; ?>');">
|
||||
</form>
|
||||
</span>
|
||||
<?php } ?>
|
||||
</span>
|
||||
<?php } ?>
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
<?php if (!$browse->get_use_pages() && $is_header) { ?>
|
||||
<div id="browse_<?php echo $browse->id; ?>_scroll">
|
||||
|
|
|
@ -65,23 +65,23 @@ if (AmpConfig::get('show_played_times')) {
|
|||
<ul>
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<li>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=album&album_id=' . $album->id,'play', T_('Play album'),'directplay_full_' . $album->id); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=album&album_id=' . $album->id, T_('Play Album'),'directplay_full_text_' . $album->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=album&album_id=' . $album->id,'play', T_('Play'),'directplay_full_' . $album->id); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=album&album_id=' . $album->id, T_('Play'),'directplay_full_text_' . $album->id); ?>
|
||||
</li>
|
||||
<?php } ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<li>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=album&album_id=' . $album->id . '&append=true','play_add', T_('Play Add Album'),'addplay_album_' . $album->id); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=album&album_id=' . $album->id . '&append=true', T_('Play Add Album'),'addplay_album_text_' . $album->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=album&album_id=' . $album->id . '&append=true','play_add', T_('Play last'),'addplay_album_' . $album->id); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=album&album_id=' . $album->id . '&append=true', T_('Play last'),'addplay_album_text_' . $album->id); ?>
|
||||
</li>
|
||||
<?php } ?>
|
||||
<li>
|
||||
<?php echo Ajax::button('?action=basket&type=album&id=' . $album->id,'add', T_('Add'),'play_full_' . $album->id); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=album&id=' . $album->id, T_('Add Album'), 'play_full_text_' . $album->id); ?>
|
||||
<?php echo Ajax::button('?action=basket&type=album&id=' . $album->id,'add', T_('Add to temporary playlist'),'play_full_' . $album->id); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=album&id=' . $album->id, T_('Add to temporary playlist'), 'play_full_text_' . $album->id); ?>
|
||||
</li>
|
||||
<li>
|
||||
<?php echo Ajax::button('?action=basket&type=album_random&id=' . $album->id,'random', T_('Random'),'play_random_' . $album->id); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=album_random&id=' . $album->id, T_('Add Random from Album'), 'play_random_text_' . $album->id); ?>
|
||||
<?php echo Ajax::button('?action=basket&type=album_random&id=' . $album->id,'random', T_('Random to temporary playlist'),'play_random_' . $album->id); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=album_random&id=' . $album->id, T_('Random to temporary playlist'), 'play_random_text_' . $album->id); ?>
|
||||
</li>
|
||||
<li>
|
||||
<a onclick="submitNewItemsOrder('<?php echo $album->id; ?>', 'reorder_songs_table', 'song_',
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
<span class="cel_play_content"> </span>
|
||||
<div class="cel_play_hover">
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=album&album_id=' . $album->id,'play', T_('Play album'),'play_album_' . $album->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=album&album_id=' . $album->id,'play', T_('Play'),'play_album_' . $album->id); ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=album&album_id=' . $album->id . '&append=true','play_add', T_('Play add album'),'addplay_album_' . $album->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=album&album_id=' . $album->id . '&append=true','play_add', T_('Play last'),'addplay_album_' . $album->id); ?>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
|
|
@ -63,37 +63,38 @@ if (AmpConfig::get('show_played_times')) {
|
|||
<li>
|
||||
<?php if ($object_type == 'album') { ?>
|
||||
<a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&artist=<?php echo $artist->id; ?>">
|
||||
<?php echo UI::get_icon('view', T_("Show All Songs By %s")); ?></a>
|
||||
<?php echo UI::get_icon('view', T_("Show all")); ?></a>
|
||||
<a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&artist=<?php echo $artist->id; ?>">
|
||||
<?php printf(T_("Show All Songs By %s"), $artist->f_name); ?></a>
|
||||
<?php echo T_("Show all"); ?>
|
||||
</a>
|
||||
<?php } else { ?>
|
||||
<a href="<?php echo $web_path; ?>/artists.php?action=show&artist=<?php echo $artist->id; ?>">
|
||||
<?php echo UI::get_icon('view', T_("Show Albums By %s")); ?></a>
|
||||
<?php echo UI::get_icon('view', T_("Show albums")); ?></a>
|
||||
<a href="<?php echo $web_path; ?>/artists.php?action=show&artist=<?php echo $artist->id; ?>">
|
||||
<?php printf(T_("Show Albums By %s"), $artist->f_name); ?></a>
|
||||
<?php echo T_("Show albums"); ?></a>
|
||||
<?php } ?>
|
||||
</li>
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<li>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=artist&artist_id=' . $artist->id,'play', T_('Play artist'),'directplay_full_' . $artist->id); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=artist&artist_id=' . $artist->id, sprintf(T_('Play All Songs By %s'), $artist->f_name),'directplay_full_text_' . $artist->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=artist&artist_id=' . $artist->id,'play', T_('Play all'),'directplay_full_' . $artist->id); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=artist&artist_id=' . $artist->id, T_('Play all'),'directplay_full_text_' . $artist->id); ?>
|
||||
</li>
|
||||
<?php } ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<li>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=artist&artist_id=' . $artist->id . '&append=true','play_add', T_('Play add artist'),'addplay_artist_' . $artist->id); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=artist&artist_id=' . $artist->id . '&append=true', sprintf(T_('Play Add All Songs By %s'), $artist->f_name),'addplay_artist_text_' . $artist->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=artist&artist_id=' . $artist->id . '&append=true','play_add', T_('Play all last'),'addplay_artist_' . $artist->id); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=artist&artist_id=' . $artist->id . '&append=true', T_('Play all last'),'addplay_artist_text_' . $artist->id); ?>
|
||||
</li>
|
||||
<?php } ?>
|
||||
<li>
|
||||
<?php /* HINT: Artist Fullname */ ?>
|
||||
<?php echo Ajax::button('?action=basket&type=artist&id=' . $artist->id,'add', T_('Add'),'add_' . $artist->id); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=artist&id=' . $artist->id, sprintf(T_('Add All Songs By %s'), $artist->f_name),'add_text_' . $artist->id); ?>
|
||||
<?php echo Ajax::button('?action=basket&type=artist&id=' . $artist->id,'add', T_('Add all to temporary playlist'),'add_' . $artist->id); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=artist&id=' . $artist->id, T_('Add all to temporary playlist'),'add_text_' . $artist->id); ?>
|
||||
</li>
|
||||
<li>
|
||||
<?php /* HINT: Artist Fullname */ ?>
|
||||
<?php echo Ajax::button('?action=basket&type=artist_random&id=' . $artist->id,'random', T_('Random'),'random_' . $artist->id); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=artist_random&id=' . $artist->id, sprintf(T_('Add Random Songs By %s'), $artist->f_name),'random_text_' . $artist->id); ?>
|
||||
<?php echo Ajax::button('?action=basket&type=artist_random&id=' . $artist->id,'random', T_('Random all to temporary playlist'),'random_' . $artist->id); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=artist_random&id=' . $artist->id, T_('Random all to temporary playlist'),'random_text_' . $artist->id); ?>
|
||||
</li>
|
||||
<?php if (Access::check('interface','50')) { ?>
|
||||
<li>
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
<span class="cel_play_content"> </span>
|
||||
<div class="cel_play_hover">
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=artist&artist_id=' . $artist->id,'play', T_('Play artist'),'play_artist_' . $artist->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=artist&artist_id=' . $artist->id,'play', T_('Play'),'play_artist_' . $artist->id); ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=artist&artist_id=' . $artist->id . '&append=true','play_add', T_('Play add artist'),'addplay_artist_' . $artist->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=artist&artist_id=' . $artist->id . '&append=true','play_add', T_('Play last'),'addplay_artist_' . $artist->id); ?>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
|
|
@ -53,19 +53,19 @@ if (count($images) > 0 && !empty($images[0]['url'])) {
|
|||
<?php if (AmpConfig::get('echonest_api_key')) { ?>
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<li>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=album_preview&mbid=' . $walbum->mbid,'play_preview', T_('Play Album Preview'),'directplay_full_' . $walbum->mbid); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=album_preview&mbid=' . $walbum->mbid, T_('Play Album Preview'),'directplay_full_text_' . $walbum->mbid); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=album_preview&mbid=' . $walbum->mbid,'play_preview', T_('Play'),'directplay_full_' . $walbum->mbid); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=album_preview&mbid=' . $walbum->mbid, T_('Play'),'directplay_full_text_' . $walbum->mbid); ?>
|
||||
</li>
|
||||
<?php } ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<li>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=album_preview&mbid=' . $walbum->mbid . '&append=true','play_add_preview', T_('Play Add Album Preview'),'addplay_album_' . $walbum->mbid); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=album_preview&mbid=' . $walbum->mbid . '&append=true', T_('Play Add Album Preview'),'addplay_album_text_' . $walbum->mbid); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=album_preview&mbid=' . $walbum->mbid . '&append=true','play_add_preview', T_('Play last'),'addplay_album_' . $walbum->mbid); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=album_preview&mbid=' . $walbum->mbid . '&append=true', T_('Play last'),'addplay_album_text_' . $walbum->mbid); ?>
|
||||
</li>
|
||||
<?php } ?>
|
||||
<li>
|
||||
<?php echo Ajax::button('?action=basket&type=album_preview&mbid=' . $walbum->mbid,'add', T_('Add Album Preview'),'play_full_' . $walbum->mbid); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=album_preview&mbid=' . $walbum->mbid, T_('Add Album Preview'), 'play_full_text_' . $walbum->mbid); ?>
|
||||
<?php echo Ajax::button('?action=basket&type=album_preview&mbid=' . $walbum->mbid,'add', T_('Add to temporary playlist'),'play_full_' . $walbum->mbid); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=album_preview&mbid=' . $walbum->mbid, T_('Add to temporary playlist'), 'play_full_text_' . $walbum->mbid); ?>
|
||||
</li>
|
||||
<?php } ?>
|
||||
<li>
|
||||
|
|
|
@ -26,30 +26,12 @@
|
|||
<a title="<?php echo scrub_out($agent); ?>" href="<?php echo $web_path; ?>/stats.php?action=show_user&user_id=<?php echo $np_user->id; ?>">
|
||||
<?php echo scrub_out($np_user->fullname); ?>
|
||||
<?php
|
||||
if ($np_user->f_avatar_medium) {
|
||||
if ($np_user->f_avatar_medium) {
|
||||
echo '<div>' . $np_user->f_avatar_medium . '</div>';
|
||||
}
|
||||
}
|
||||
?>
|
||||
</a>
|
||||
</div>
|
||||
<br />
|
||||
<?php if (AmpConfig::get('ratings')) { ?>
|
||||
<div class="np_cell cel_rating">
|
||||
<label><?php echo T_('Rating'); ?></label>
|
||||
<div id="rating_<?php echo $media->id; ?>_song">
|
||||
<?php Rating::show($media->id,'song'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if (AmpConfig::get('userflags')) { ?>
|
||||
<div class="np_cell cel_userflag">
|
||||
<label><?php echo T_('Flag'); ?></label>
|
||||
<div id="userflag_<?php echo $media->id; ?>_song">
|
||||
<?php Userflag::show($media->id,'song'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
||||
<div class="np_group" id="np_group_2">
|
||||
|
@ -102,3 +84,20 @@ $(document).ready(function(){
|
|||
});
|
||||
</script>
|
||||
<?php } ?>
|
||||
|
||||
<div class="np_group" id="np_group_4">
|
||||
<?php if (AmpConfig::get('ratings')) { ?>
|
||||
<div class="np_cell cel_rating">
|
||||
<label><?php echo T_('Rating'); ?></label>
|
||||
<div id="rating_<?php echo $media->id; ?>_song">
|
||||
<?php Rating::show($media->id,'song'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="np_cell cel_userflag">
|
||||
<label><?php echo T_('Flag'); ?></label>
|
||||
<div id="userflag_<?php echo $media->id; ?>_song">
|
||||
<?php Userflag::show($media->id,'song'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
|
|
@ -52,23 +52,23 @@ UI::show_box_top('<div id="playlist_row_' . $playlist->id . '">' . $title . '</d
|
|||
<?php } ?>
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<li>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=playlist&playlist_id=' . $playlist->id,'play', T_('Play All'),'directplay_full_' . $playlist->id); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=playlist&playlist_id=' . $playlist->id, T_('Play All'),'directplay_full_text_' . $playlist->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=playlist&playlist_id=' . $playlist->id,'play', T_('Play all'),'directplay_full_' . $playlist->id); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=playlist&playlist_id=' . $playlist->id, T_('Play all'),'directplay_full_text_' . $playlist->id); ?>
|
||||
</li>
|
||||
<?php } ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<li>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=playlist&playlist_id=' . $playlist->id . '&append=true','play_add', T_('Play Add Playlist'),'addplay_playlist_' . $playlist->id); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=playlist&playlist_id=' . $playlist->id . '&append=true', T_('Play Add Playlist'),'addplay_playlist_text_' . $playlist->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=playlist&playlist_id=' . $playlist->id . '&append=true','play_add', T_('Play all last'),'addplay_playlist_' . $playlist->id); ?>
|
||||
<?php echo Ajax::text('?page=stream&action=directplay&playtype=playlist&playlist_id=' . $playlist->id . '&append=true', T_('Play all last'),'addplay_playlist_text_' . $playlist->id); ?>
|
||||
</li>
|
||||
<?php } ?>
|
||||
<li>
|
||||
<?php echo Ajax::button('?action=basket&type=playlist&id=' . $playlist->id,'add', T_('Add All'),'play_playlist'); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=playlist&id=' . $playlist->id, T_('Add All'),'play_playlist_text'); ?>
|
||||
<?php echo Ajax::button('?action=basket&type=playlist&id=' . $playlist->id,'add', T_('Add all to temporary playlist'),'play_playlist'); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=playlist&id=' . $playlist->id, T_('Add all to temporary playlist'),'play_playlist_text'); ?>
|
||||
</li>
|
||||
<li>
|
||||
<?php echo Ajax::button('?action=basket&type=playlist_random&id=' . $playlist->id,'random', T_('Add Random'),'play_playlist_random'); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=playlist_random&id=' . $playlist->id, T_('Add Random'),'play_playlist_random_text'); ?>
|
||||
<?php echo Ajax::button('?action=basket&type=playlist_random&id=' . $playlist->id,'random', T_('Random all to temporary playlist'),'play_playlist_random'); ?>
|
||||
<?php echo Ajax::text('?action=basket&type=playlist_random&id=' . $playlist->id, T_('Random all to temporary playlist'),'play_playlist_random_text'); ?>
|
||||
</li>
|
||||
<?php if ($playlist->has_access()) { ?>
|
||||
<li>
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
<span class="cel_play_content"> </span>
|
||||
<div class="cel_play_hover">
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=playlist&playlist_id=' . $playlist->id,'play', T_('Play playlist'),'play_playlist_' . $playlist->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=playlist&playlist_id=' . $playlist->id,'play', T_('Play'),'play_playlist_' . $playlist->id); ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=playlist&playlist_id=' . $playlist->id . '&append=true','play_add', T_('Play add playlist'),'addplay_playlist_' . $playlist->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=playlist&playlist_id=' . $playlist->id . '&append=true','play_add', T_('Play last'),'addplay_playlist_' . $playlist->id); ?>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
<span class="cel_play_content"><?php echo '<b>'.$playlist_track.'</b>'; ?></span>
|
||||
<div class="cel_play_hover">
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id, 'play', T_('Play song'),'play_playlist_song_' . $song->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id, 'play', T_('Play'),'play_playlist_song_' . $song->id); ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id . '&append=true','play_add', T_('Play add song'),'addplay_song_' . $song->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id . '&append=true','play_add', T_('Play last'),'addplay_song_' . $song->id); ?>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
|
|
@ -89,9 +89,9 @@ UI::show_box_top(T_('Recently Played') . $link, 'box box_recently_played');
|
|||
<span class="cel_play_content"> </span>
|
||||
<div class="cel_play_hover">
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id,'play', T_('Play song'),'play_song_' . $song->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id,'play', T_('Play'),'play_song_' . $song->id); ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id . '&append=true','play_add', T_('Play add song'),'addplay_song_' . $song->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id . '&append=true','play_add', T_('Play last'),'addplay_song_' . $song->id); ?>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
|
|
@ -60,7 +60,8 @@ $thcount = 8;
|
|||
foreach ($missing_objects as $missing) {
|
||||
?>
|
||||
<tr id="missing_artist_<?php echo $missing['mbid']; ?>" class="<?php echo UI::flip_class(); ?>">
|
||||
<td colspan="<?php echo $thcount; ?>"><a class="missing_album" href="<?php echo AmpConfig::get('web_path'); ?>/artists.php?action=show_missing&mbid=<?php echo $missing['mbid']; ?>" title="<?php echo scrub_out($missing['name']); ?>"><?php echo scrub_out($missing['name']); ?></a></td>
|
||||
<td></td>
|
||||
<td colspan="<?php echo ($thcount - 1); ?>"><a class="missing_album" href="<?php echo AmpConfig::get('web_path'); ?>/artists.php?action=show_missing&mbid=<?php echo $missing['mbid']; ?>" title="<?php echo scrub_out($missing['name']); ?>"><?php echo scrub_out($missing['name']); ?></a></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
<?php if ((!$object_ids || !count($object_ids)) && (!$missing_objects || !count($missing_objects))) { ?>
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
<span class="cel_play_content"> </span>
|
||||
<div class="cel_play_hover">
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=smartplaylist&playlist_id=' . $playlist->id,'play', T_('Play playlist'),'play_playlist_' . $playlist->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=smartplaylist&playlist_id=' . $playlist->id,'play', T_('Play'),'play_playlist_' . $playlist->id); ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=smartplaylist&playlist_id=' . $playlist->id . '&append=true','play_add', T_('Play add playlist'),'addplay_playlist_' . $playlist->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=smartplaylist&playlist_id=' . $playlist->id . '&append=true','play_add', T_('Play last'),'addplay_playlist_' . $playlist->id); ?>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
|
|
@ -56,12 +56,12 @@ $button_flip_state_id = 'button_flip_state_' . $song->id;
|
|||
<dt class="<?php echo $rowparity; ?>"><?php echo T_('Action'); ?></dt>
|
||||
<dd class="<?php echo $rowparity; ?>">
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id, 'play', T_('Play song'),'play_song_' . $song->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id, 'play', T_('Play'),'play_song_' . $song->id); ?>
|
||||
<?php } ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id . '&append=true','play_add', T_('Play add song'),'addplay_song_' . $song->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id . '&append=true','play_add', T_('Play last'),'addplay_song_' . $song->id); ?>
|
||||
<?php } ?>
|
||||
<?php echo Ajax::button('?action=basket&type=song&id=' . $song->id,'add', T_('Add'),'add_song_' . $song->id); ?>
|
||||
<?php echo Ajax::button('?action=basket&type=song&id=' . $song->id,'add', T_('Add to temporary playlist'),'add_song_' . $song->id); ?>
|
||||
<?php if (AmpConfig::get('sociable')) { ?>
|
||||
<a href="<?php echo AmpConfig::get('web_path'); ?>/shout.php?action=show_add_shout&type=song&id=<?php echo $song->id; ?>">
|
||||
<?php echo UI::get_icon('comment', T_('Post Shout')); ?>
|
||||
|
|
|
@ -23,9 +23,9 @@
|
|||
<?php if (AmpConfig::get('echonest_api_key')) { ?>
|
||||
<td class="cel_play">
|
||||
<?php if (AmpConfig::get('directplay') && !empty($song->file)) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song_preview&id=' . $song->id,'play_preview', T_('Play song Preview'),'play_song_' . $song->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song_preview&id=' . $song->id,'play_preview', T_('Play'),'play_song_' . $song->id); ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song_preview&id=' . $song->id . '&append=true','play_add_preview', T_('Play Add Song Preview'),'addplay_song_' . $song->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song_preview&id=' . $song->id . '&append=true','play_add_preview', T_('Play last'),'addplay_song_' . $song->id); ?>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</td>
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
<span class="cel_play_content"><?php if (isset($argument) && $argument) { echo '<b>'.$song->f_track.'</b>'; } ?></span>
|
||||
<div class="cel_play_hover">
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id, 'play', T_('Play song'), 'play_song_' . $song->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id, 'play', T_('Play'), 'play_song_' . $song->id); ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id . '&append=true', 'play_add', T_('Play add song'), 'addplay_song_' . $song->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=song&song_id=' . $song->id . '&append=true', 'play_add', T_('Play last'), 'addplay_song_' . $song->id); ?>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
<span class="cel_play_content"> </span>
|
||||
<div class="cel_play_hover">
|
||||
<?php if (AmpConfig::get('directplay')) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=video&video_id=' . $video->id,'play', T_('Play video'),'play_video_' . $video->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=video&video_id=' . $video->id,'play', T_('Play'),'play_video_' . $video->id); ?>
|
||||
<?php if (Stream_Playlist::check_autoplay_append()) { ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=video&video_id=' . $video->id . '&append=true','play_add', T_('Play add video'),'addplay_video_' . $video->id); ?>
|
||||
<?php echo Ajax::button('?page=stream&action=directplay&playtype=video&video_id=' . $video->id . '&append=true','play_add', T_('Play last'),'addplay_video_' . $video->id); ?>
|
||||
<?php } ?>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
|
|
@ -1712,6 +1712,14 @@ ol, ul, #rightbar ul {
|
|||
width: 50px;
|
||||
}
|
||||
|
||||
.browse-options-content {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.browse-options-content span {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.jscroll-next {
|
||||
width:50%;
|
||||
display:block;
|
||||
|
@ -1735,7 +1743,7 @@ ol, ul, #rightbar ul {
|
|||
.missing_album {
|
||||
text-decoration: none;
|
||||
border-bottom:1px dotted;
|
||||
/*color: #DF4949 !important;*/
|
||||
color: #bbb !important;
|
||||
}
|
||||
|
||||
.user_avatar {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue