diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-22 18:32:09 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-22 18:32:09 +0000 |
commit | ff606dbefca94580b56a081c5d3089037a2d033d (patch) | |
tree | bdc9cb8ea8d3b5d8e9b1ebe313ce163990a75d0c /templates/show_song_row.inc.php | |
parent | 472072028560aa178211ae248fc0dad4526533c7 (diff) | |
download | ampache-ff606dbefca94580b56a081c5d3089037a2d033d.tar.gz ampache-ff606dbefca94580b56a081c5d3089037a2d033d.tar.bz2 ampache-ff606dbefca94580b56a081c5d3089037a2d033d.zip |
removed some old/legacy functions fixed download and merged it into the /play
Diffstat (limited to 'templates/show_song_row.inc.php')
-rw-r--r-- | templates/show_song_row.inc.php | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/templates/show_song_row.inc.php b/templates/show_song_row.inc.php new file mode 100644 index 00000000..cc6668ec --- /dev/null +++ b/templates/show_song_row.inc.php @@ -0,0 +1,41 @@ +<?php +/* + + Copyright (c) 2001 - 2007 Ampache.org + All rights reserved. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License v2 + as published by the Free Software Foundation. + + 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ +?> +<td> + <?php echo Ajax::button('?action=basket&atype=song&id=' . $song->id,'add',_('Add'),'add_' . $song->id); ?> +</td> +<td><?php echo $song->f_link; ?></td> +<td><?php echo $song->f_artist_link; ?></td> +<td><?php echo $song->f_album_link; ?></td> +<td><?php echo $song->f_genre_link; ?></td> +<td><?php echo $song->f_track; ?></td> +<td><?php echo $song->f_time; ?></td> +<td> + <?php if ($GLOBALS['user']->prefs['download']) { ?> + <a href="<?php echo Config::get('web_path'); ?>/play/index.php?action=download&uid=<?php echo $GLOBALS['user']->id; ?>&song=<?php echo $song->id; ?>&sid=<?php echo session_id(); ?>"> + <?php echo get_user_icon('download',_('Download')); ?> + </a> + <?php } ?> + + <?php if ($GLOBALS['user']->has_access(100)) { ?> + <?php echo Ajax::button('?action=show_edit_object&type=song&id=' . $song->id,'edit',_('Edit'),'edit_song_' . $song->id); ?> + <?php } ?> +</td> |