summaryrefslogtreecommitdiffstats
path: root/templates/show_catalog_row.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-09-09 04:30:12 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-09-09 04:30:12 +0000
commit83815169ceb211d4449928b21c02539795f81624 (patch)
treeaaaba2fda75b216c456ce99fd07aa3c98fbd1c24 /templates/show_catalog_row.inc.php
parentb33aa8aec67006e641f2054e01b35a0bba316922 (diff)
downloadampache-83815169ceb211d4449928b21c02539795f81624.tar.gz
ampache-83815169ceb211d4449928b21c02539795f81624.tar.bz2
ampache-83815169ceb211d4449928b21c02539795f81624.zip
fixed some +x stuff that shouldnt have been +x and moved the catalog functions back into the content area
Diffstat (limited to 'templates/show_catalog_row.inc.php')
-rw-r--r--templates/show_catalog_row.inc.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/templates/show_catalog_row.inc.php b/templates/show_catalog_row.inc.php
new file mode 100644
index 00000000..91310418
--- /dev/null
+++ b/templates/show_catalog_row.inc.php
@@ -0,0 +1,30 @@
+<?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 $catalog->f_name_link; ?></td>
+<td><?php echo scrub_out($catalog->f_path); ?></td>
+<td><?php echo scrub_out($catalog->f_update); ?></td>
+<td><?php echo scrub_out($catalog->f_add); ?></td>
+<td>
+ <a href="<?php echo $web_path; ?>/admin/catalog.php?action=add_to_catalog&amp;catalogs[]=<?php echo $catalog->id; ?>"><?php echo _('Add'); ?></a>
+ | <a href="<?php echo $web_path; ?>/admin/catalog.php?action=update_catalog&amp;catalogs[]=<?php echo $catalog->id; ?>"><?php echo _('Verify'); ?></a>
+ | <a href="<?php echo $web_path; ?>/admin/catalog.php?action=clean_catalog&amp;catalogs[]=<?php echo $catalog->id; ?>"><?php echo _('Clean'); ?></a>
+</td>