summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-13 05:31:56 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-13 05:31:56 +0200
commit9be059aced589bea38b7d8cf9553b32c9921dc66 (patch)
treea7b768d2bbfbfbcc41a30900ff1ac0fccd729e64 /core/templates
parent7ece8ed31439df9b321ff1800483079a6a7dcfac (diff)
downloadnextcloud-server-9be059aced589bea38b7d8cf9553b32c9921dc66.tar.gz
nextcloud-server-9be059aced589bea38b7d8cf9553b32c9921dc66.zip
removed subnavigation code
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/layout.user.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php
index 81c0e73ea46..c0b347937cf 100644
--- a/core/templates/layout.user.php
+++ b/core/templates/layout.user.php
@@ -40,13 +40,6 @@
<ul id="apps" class="svg">
<?php foreach($_['navigation'] as $entry): ?>
<li><a style="background-image:url(<?php echo $entry['icon']; ?>)" href="<?php echo $entry['href']; ?>" title="" <?php if( $entry['active'] ): ?> class="active"<?php endif; ?>><?php echo $entry['name']; ?></a>
- <?php if( sizeof( $entry["subnavigation"] )): ?>
- <ul>
- <?php foreach($entry["subnavigation"] as $subentry):?>
- <li class="subentry"><a style="background-image:url(<?php echo $subentry['icon']; ?>)" href="<?php echo $subentry['href']; ?>" title="" class="subentry<?php if( $subentry['active'] ): ?> active<?php endif; ?>"><?php echo $subentry['name'] ?></a></li>
- <?php endforeach; ?>
- </ul>
- <?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
@@ -57,11 +50,6 @@
<div id="expanddiv">
<?php foreach($_['settingsnavigation'] as $entry):?>
<li><a style="background-image:url(<?php echo $entry['icon']; ?>)" href="<?php echo $entry['href']; ?>" title="" <?php if( $entry["active"] ): ?> class="active"<?php endif; ?>><?php echo $entry['name'] ?></a></li>
- <?php if( sizeof( $entry["subnavigation"] )): ?>
- <?php foreach($entry["subnavigation"] as $subentry):?>
- <li><a href="<?php echo $subentry['href']; ?>" title="" <?php if( $subentry['active'] ): ?>class="active"<?php endif; ?>><?php echo $subentry['name'] ?></a></li>
- <?php endforeach; ?>
- <?php endif; ?>
<?php endforeach; ?>
</div>
</ul>