diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-10-10 07:30:15 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-10-10 07:30:15 +0000 |
commit | ff58181d5b4ddd10b34062a0ad2204435e698cae (patch) | |
tree | 60b4654309d0826c81411790efe8448675a038bb /templates/show_access_list.inc.php | |
parent | 32349846fbd66e4ebc44e63d37fbcd8cff5a8a73 (diff) | |
download | ampache-ff58181d5b4ddd10b34062a0ad2204435e698cae.tar.gz ampache-ff58181d5b4ddd10b34062a0ad2204435e698cae.tar.bz2 ampache-ff58181d5b4ddd10b34062a0ad2204435e698cae.zip |
fixed acls, fixed transcoding issues
Diffstat (limited to 'templates/show_access_list.inc.php')
-rw-r--r-- | templates/show_access_list.inc.php | 54 |
1 files changed, 26 insertions, 28 deletions
diff --git a/templates/show_access_list.inc.php b/templates/show_access_list.inc.php index 15fb3417..1374b81a 100644 --- a/templates/show_access_list.inc.php +++ b/templates/show_access_list.inc.php @@ -26,7 +26,7 @@ */ $web_path = Config::get('web_path'); ?> -<?php show_box_top(_('Host Access to Your Catalog')); ?> +<?php show_box_top(_('Ampache Access Control')); ?> <p>Since your catalog can be accessed remotely you may want to limit the access from remote sources so you are not in violation of copyright laws. By default your server will allow anyone with an account to stream music. It will not allow any @@ -35,40 +35,38 @@ to add any server's IP address that you want to access your Ampache catalog or b stream from this server.</p> <p> -<span class="text-action"> -<a href="<?php echo $web_path; ?>/admin/access.php?action=show_add_host"><?php echo _('Add Entry'); ?></a> -</span> +<a class="smallbutton" href="<?php echo $web_path; ?>/admin/access.php?action=show_add_host"><?php echo _('Add Entry'); ?></a> </p> <?php if (count($list)) { ?> <table cellspacing="1" cellpadding="3" class="tabledata"> -<tr class="table-header" align="center"> - <td><?php echo _('Name'); ?></td> - <td><?php echo _('Start Address'); ?></td> - <td><?php echo _('End Address'); ?></td> - <td><?php echo _('Level'); ?></td> - <td><?php echo _('User'); ?></td> - <td><?php echo _('Key'); ?></td> - <td><?php echo _('Type'); ?></td> - <td><?php echo _('Action'); ?></td> +<tr class="table-data"> + <th><?php echo _('Name'); ?></th> + <th><?php echo _('Start Address'); ?></th> + <th><?php echo _('End Address'); ?></th> + <th><?php echo _('Level'); ?></th> + <th><?php echo _('User'); ?></th> + <th><?php echo _('Key'); ?></th> + <th><?php echo _('Type'); ?></th> + <th><?php echo _('Action'); ?></th> </tr> <?php /* Start foreach List Item */ - foreach ($list as $access) { + foreach ($list as $access_id) { + $access = new Access($access_id); ?> - <tr class="<?php echo flip_class(); ?>"> - <td><?php echo scrub_out($access->name); ?></td> - <td><?php echo int2ip($access->start); ?></td> - <td><?php echo int2ip($access->end); ?></td> - <td><?php echo $access->get_level_name(); ?></td> - <td><?php echo $access->get_user_name(); ?></td> - <td><?php echo $access->key; ?></td> - <td><?php echo $access->get_type_name(); ?></td> - <td> - <a href="<?php echo $web_path; ?>/admin/access.php?action=show_edit_host&access_id=<?php echo scrub_out($access->id); ?>"><?php echo _('Edit'); ?></a> - | - <a href="<?php echo $web_path; ?>/admin/access.php?action=show_confirm_delete&access_id=<?php echo scrub_out($access->id); ?>"><?php print _("Revoke"); ?></a> - </td> - </tr> +<tr class="<?php echo flip_class(); ?>"> + <td><?php echo scrub_out($access->name); ?></td> + <td><?php echo int2ip($access->start); ?></td> + <td><?php echo int2ip($access->end); ?></td> + <td><?php echo $access->get_level_name(); ?></td> + <td><?php echo $access->get_user_name(); ?></td> + <td><?php echo $access->key; ?></td> + <td><?php echo $access->get_type_name(); ?></td> + <td> + <a href="<?php echo $web_path; ?>/admin/access.php?action=show_edit_record&access_id=<?php echo scrub_out($access->id); ?>"><?php echo get_user_icon('edit'); ?></a> + <a href="<?php echo $web_path; ?>/admin/access.php?action=delete_record&access_id=<?php echo scrub_out($access->id); ?>"><?php echo get_user_icon('delete'); ?></a> + </td> +</tr> <?php } // end foreach ?> </table> <?php } // end if count ?> |