Warning, file /webapps/ocs-webserver/application/modules/default/views/scripts/paginationControl.phtml was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 <?php 0002 /** 0003 * ocs-webserver 0004 * 0005 * Copyright 2016 by pling GmbH. 0006 * 0007 * This file is part of ocs-webserver. 0008 * 0009 * This program is free software: you can redistribute it and/or modify 0010 * it under the terms of the GNU Affero General Public License as 0011 * published by the Free Software Foundation, either version 3 of the 0012 * License, or (at your option) any later version. 0013 * 0014 * This program is distributed in the hope that it will be useful, 0015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0017 * GNU Affero General Public License for more details. 0018 * 0019 * You should have received a copy of the GNU Affero General Public License 0020 * along with this program. If not, see <http://www.gnu.org/licenses/>. 0021 **/ 0022 ?> 0023 <?php if ($this->pageCount): ?> 0024 <div class="projectPaginationControl"> 0025 <!-- Vorheriger Seitenlink --> 0026 <?php if (isset($this->previous)): ?> 0027 <a href="?page=<?= $this->previous . $this->parameter; ?>" 0028 id="dialog_link_l" 0029 class="projectPaginationBack" 0030 style="float:left;"> 0031 <img src="/images_sys/pagination_back.png" border="0"/> 0032 </a> 0033 <?php else: ?> 0034 <!-- 0035 <div id="dialog_link_l" style="float: left;"> 0036 <img src="/images_sys/pagination_back.png" border="0" /> 0037 </div> 0038 --> 0039 <?php endif; ?> 0040 0041 <!-- Anzahl an Seitenlinks --> 0042 <?php foreach ($this->pagesInRange as $page): ?> 0043 <?php if ($page != $this->current): ?> 0044 <a href="?page=<?= $page . $this->parameter; ?>" 0045 class="projectPaginationNormal" 0046 style="float: left;"><?php echo $page; ?></a> 0047 <?php else: ?> 0048 <div class="projectPaginationActive" style="float: left;"><?php echo $page; ?></div> 0049 <?php endif; ?> 0050 <?php endforeach; ?> 0051 0052 <!-- Nächster Seitenlink --> 0053 <?php if (isset($this->next)): ?> 0054 <a href="?page=<?= $this->next . $this->parameter; ?>" 0055 id="dialog_link_r" 0056 class="projectPaginationNext" 0057 style="float: left;"> 0058 <img src="/images_sys/pagination_next.png" border="0"/> 0059 </a> 0060 <?php else: ?> 0061 <!-- 0062 <div id="dialog_link_r" class="ui-state-default ui-corner-all" style="float: left;">Nächster<span class="ui-icon ui-icon-carat-1-e" ></span></div> 0063 --> 0064 <?php endif; ?> 0065 <div class="clear"></div> 0066 </div> 0067 <?php endif; ?>