diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-01-19 23:11:57 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-01-19 23:11:57 +0000 |
commit | 5296a8d351f94a04d19791e4c9d3b73c5cb82ac6 (patch) | |
tree | b26f7d6ec135270353ec1feebc304e49c2311a14 /templates/show_manage_shoutbox.inc.php | |
parent | ffb43ad33ec6198df04cf188a205f236863d1dd3 (diff) | |
download | ampache-5296a8d351f94a04d19791e4c9d3b73c5cb82ac6.tar.gz ampache-5296a8d351f94a04d19791e4c9d3b73c5cb82ac6.tar.bz2 ampache-5296a8d351f94a04d19791e4c9d3b73c5cb82ac6.zip |
fixed issue with xmlapi when no limit provided, fixed now playing refresh, fixed single item update (Thx alex2008) added some more stuff for managing shoutbox stuff, started work on implementation of CoFs system added untested search method on xmlapi
Diffstat (limited to 'templates/show_manage_shoutbox.inc.php')
-rw-r--r-- | templates/show_manage_shoutbox.inc.php | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/templates/show_manage_shoutbox.inc.php b/templates/show_manage_shoutbox.inc.php new file mode 100644 index 00000000..33c10c2d --- /dev/null +++ b/templates/show_manage_shoutbox.inc.php @@ -0,0 +1,56 @@ +<?php +/* + + Copyright (c) 2001 - 2008 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. + +*/ + +$web_path = Config::get('web_path'); +?> +<table class="tabledata" cellpadding="0" cellspacing="0"> +<colgroup> + <col id="col_object" /> + <col id="col_username" /> + <col id="col_sticky" /> + <col id="col_comment" /> + <col id="col_action" /> +</colgroup> +<tr class="th-top"> + <th class="cel_object"><?php echo _('Object'); ?></th> + <th class="cel_username"><?php echo _('User'); ?></th> + <th class="cel_flag"><?php echo _('Sticky'); ?></th> + <th class="cel_comment"><?php echo _('Comment'); ?></th> + <th class="cel_action"><?php echo _('Action'); ?></th> +</tr> +<?php +foreach ($object_ids as $shout_id) { + $shout = new shoutBox($shout_id); + require Config::get('prefix') . '/templates/show_shout_row.inc.php'; +?> +<?php } if (!count($object_ids)) { ?> +<tr class="<?php echo flip_class(); ?>"> + <td colspan="7" class="error"><?php echo _('No Records Found'); ?></td> +</tr> +<?php } ?> +<tr class="th-bottom"> + <th class="cel_object"><?php echo _('Object'); ?></th> + <th class="cel_username"><?php echo _('User'); ?></th> + <th class="cel_sticky"><?php echo _('Sticky'); ?></th> + <th class="cel_comment"><?php echo _('Comment'); ?></th> + <th class="cel_action"><?php echo _('Action'); ?></th> +</tr> +</table> |