summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-07-31 09:58:57 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-07-31 09:58:57 +0200
commit0a5be39446e01f6e4a25c11370b2b133198a92b7 (patch)
tree2f9a1a945f50a2f910789ede0ff45b2d44373bc5 /core/templates
parent31afbb3434b98aaa839d20d035a449b842b9d97a (diff)
downloadnextcloud-server-0a5be39446e01f6e4a25c11370b2b133198a92b7.tar.gz
nextcloud-server-0a5be39446e01f6e4a25c11370b2b133198a92b7.zip
remove unused and never to be used pagination
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/part.pagenavi.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/core/templates/part.pagenavi.php b/core/templates/part.pagenavi.php
deleted file mode 100644
index 2f5c2183765..00000000000
--- a/core/templates/part.pagenavi.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<ol class="pager">
- <?php if($_['page']>0):?>
- <li class="pagerbutton1"><a href="<?php print_unescaped($_['url'].($_['page']-1));?>"><?php p($l->t( 'prev' )); ?></a></li>
- <?php endif; ?>
- <?php if ($_['pagestart']>0):?>
- &hellip;
- <?php endif;?>
- <?php for ($i=$_['pagestart']; $i < $_['pagestop'];$i++):?>
- <?php if ($_['page']!=$i):?>
- <li><a href="<?php print_unescaped($_['url'].$i);?>"><?php p($i+1);?></a></li>
- <?php else:?>
- <li><?php p($i+1);?></li>
- <?php endif?>
- <?php endfor;?>
- <?php if ($_['pagestop']<$_['pagecount']):?>
- &hellip;
- <?php endif;?>
-
- <?php if(($_['page']+1)<$_['pagecount']):?>
- <li class="pagerbutton2"><a href="<?php print_unescaped($_['url'].($_['page']+1));?>"><?php p($l->t( 'next' )); ?></a></li>
- <?php endif; ?>
-</ol>