diff options
author | spocky <spocky@ampache> | 2007-08-06 00:34:42 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-08-06 00:34:42 +0000 |
commit | 00bcfdca5f523093770321c22f8c429f3d318af8 (patch) | |
tree | da232a7873274009ea09669c62d2db894a5b7a47 /templates/sidebar_preferences.inc.php | |
parent | 246c321617b18035725b3d42c6a313386687cedc (diff) | |
download | ampache-00bcfdca5f523093770321c22f8c429f3d318af8.tar.gz ampache-00bcfdca5f523093770321c22f8c429f3d318af8.tar.bz2 ampache-00bcfdca5f523093770321c22f8c429f3d318af8.zip |
modified sidebar html/css structure
Diffstat (limited to 'templates/sidebar_preferences.inc.php')
-rw-r--r-- | templates/sidebar_preferences.inc.php | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/templates/sidebar_preferences.inc.php b/templates/sidebar_preferences.inc.php index 774e5b8a..c8d3dd66 100644 --- a/templates/sidebar_preferences.inc.php +++ b/templates/sidebar_preferences.inc.php @@ -1,20 +1,22 @@ -<h4><?php echo _('Sections'); ?></h4> -<ul id="sb_Preferences"> -<li id="sb_Pref_Interface"><a href="<?php echo $web_path; ?>/preferences.php?tab=interface"><?php echo _('Interface'); ?></a></li> -<li id="sb_Pref_Playlist"><a href="<?php echo $web_path; ?>/preferences.php?tab=playlist"><?php echo _('Playlist'); ?></a></li> -<li id="sb_Pref_Streaming"><a href="<?php echo $web_path; ?>/preferences.php?tab=streaming"><?php echo _('Streaming'); ?></a></li> -<li id="sb_Pref_Options"><a href="<?php echo $web_path; ?>/preferences.php?tab=options"><?php echo _('Options'); ?></a></li> -<li id="sb_Pref_Account"><a href="<?php echo $web_path; ?>/preferences.php?tab=account"><?php echo _('Account'); ?></a></li> -</ul> -<hr /> +<ul class="sb2" id="sb_preferences"> + <li><?php echo _('Sections'); ?> + <ul class="sb3" id="sb_preferences_sections"> + <li id="sb_preferences_sections_Interface"><a href="<?php echo $web_path; ?>/preferences.php?tab=interface"><?php echo _('Interface'); ?></a></li> + <li id="sb_preferences_sections_Playlist"><a href="<?php echo $web_path; ?>/preferences.php?tab=playlist"><?php echo _('Playlist'); ?></a></li> + <li id="sb_preferences_sections_Streaming"><a href="<?php echo $web_path; ?>/preferences.php?tab=streaming"><?php echo _('Streaming'); ?></a></li> + <li id="sb_preferences_sections_Options"><a href="<?php echo $web_path; ?>/preferences.php?tab=options"><?php echo _('Options'); ?></a></li> + <li id="sb_preferences_sections_Account"><a href="<?php echo $web_path; ?>/preferences.php?tab=account"><?php echo _('Account'); ?></a></li> + </ul> + </li> <?php if ($GLOBALS['user']->has_access('100')) { ?> -<h4><?php echo _('Server Config'); ?></h4> -<ul id="sb_ServerConfig"> -<li id="sb_SC_Interface"><a href="<?php echo $web_path; ?>/preferences.php?action=admin&tab=interface"><?php echo _('Interface'); ?></a></li> -<li id="sb_SC_Playlist"><a href="<?php echo $web_path; ?>/preferences.php?action=admin&tab=playlist"><?php echo _('Playlist'); ?></a></li> -<li id="sb_SC_Streaming"><a href="<?php echo $web_path; ?>/preferences.php?action=admin&tab=streaming"><?php echo _('Streaming'); ?></a></li> -<li id="sb_SC_Options"><a href="<?php echo $web_path; ?>/preferences.php?action=admin&tab=options"><?php echo _('Options'); ?></a></li> -<li id="sb_SC_System"><a href="<?php echo $web_path; ?>/preferences.php?action=admin&tab=system"><?php echo _('System'); ?></a></li> + <li><?php echo _('Server Config'); ?> + <ul class="sb3" id="sb_preferences_sc"> + <li id="sb_preferences_sc_Interface"><a href="<?php echo $web_path; ?>/preferences.php?action=admin&tab=interface"><?php echo _('Interface'); ?></a></li> + <li id="sb_preferences_sc_Playlist"><a href="<?php echo $web_path; ?>/preferences.php?action=admin&tab=playlist"><?php echo _('Playlist'); ?></a></li> + <li id="sb_preferences_sc_Streaming"><a href="<?php echo $web_path; ?>/preferences.php?action=admin&tab=streaming"><?php echo _('Streaming'); ?></a></li> + <li id="sb_preferences_sc_Options"><a href="<?php echo $web_path; ?>/preferences.php?action=admin&tab=options"><?php echo _('Options'); ?></a></li> + <li id="sb_preferences_sc_System"><a href="<?php echo $web_path; ?>/preferences.php?action=admin&tab=system"><?php echo _('System'); ?></a></li> + </ul> + </li> </ul> -<hr /> <?php } ?> |