1 |
efrain |
1 |
<!--
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* @package block_quickmail
|
|
|
19 |
* @copyright 2008 onwards Louisiana State University
|
|
|
20 |
* @copyright 2008 onwards Chad Mazilly, Robert Russo, Jason Peak, Dave Elliott, Adam Zapletal, Philip Cali
|
|
|
21 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
22 |
*/
|
|
|
23 |
-->
|
|
|
24 |
|
|
|
25 |
{{#paginationShow}}
|
|
|
26 |
<nav>
|
|
|
27 |
<ul class="pagination">
|
|
|
28 |
{{#paginationShowFirst}}
|
|
|
29 |
<li class="page-item "
|
|
|
30 |
data-region="page-item"
|
|
|
31 |
data-page-number="1">
|
|
|
32 |
<a href="{{paginationFirstPageUri}}"
|
|
|
33 |
class="page-link"
|
|
|
34 |
data-region="page-link">
|
|
|
35 |
<span aria-hidden="true">{{#str}} first {{/str}}</span>
|
|
|
36 |
<span class="sr-only">{{#str}} first {{/str}}</span>
|
|
|
37 |
</a>
|
|
|
38 |
</li>
|
|
|
39 |
{{/paginationShowFirst}}
|
|
|
40 |
|
|
|
41 |
{{#paginationShowPrevious}}
|
|
|
42 |
<li class="page-item "
|
|
|
43 |
data-region="page-item"
|
|
|
44 |
data-page-number="{{paginationPreviousPage}}">
|
|
|
45 |
<a href="{{paginationPreviousPageUri}}"
|
|
|
46 |
class="page-link"
|
|
|
47 |
data-region="page-link">
|
|
|
48 |
<span aria-hidden="true">«</span>
|
|
|
49 |
<span class="sr-only">{{#str}} previous {{/str}}</span>
|
|
|
50 |
</a>
|
|
|
51 |
</li>
|
|
|
52 |
{{/paginationShowPrevious}}
|
|
|
53 |
|
|
|
54 |
<li class="page-item active "
|
|
|
55 |
data-region="page-item"
|
|
|
56 |
data-page-number="{{paginationCurrentPage}}">
|
|
|
57 |
<a href="{{paginationCurrentPageUri}}"
|
|
|
58 |
class="page-link"
|
|
|
59 |
data-region="page-link">
|
|
|
60 |
<span aria-hidden="true">{{paginationCurrentPage}}</span>
|
|
|
61 |
<span class="sr-only">{{paginationCurrentPage}}</span>
|
|
|
62 |
</a>
|
|
|
63 |
</li>
|
|
|
64 |
|
|
|
65 |
{{#paginationShowNext}}
|
|
|
66 |
<li class="page-item "
|
|
|
67 |
data-region="page-item"
|
|
|
68 |
data-page-number="{{paginationNextPage}}">
|
|
|
69 |
<a href="{{paginationNextPageUri}}"
|
|
|
70 |
class="page-link"
|
|
|
71 |
data-region="page-link">
|
|
|
72 |
<span aria-hidden="true">»</span>
|
|
|
73 |
<span class="sr-only">{{#str}} next {{/str}}</span>
|
|
|
74 |
</a>
|
|
|
75 |
</li>
|
|
|
76 |
{{/paginationShowNext}}
|
|
|
77 |
|
|
|
78 |
{{#paginationShowLast}}
|
|
|
79 |
<li class="page-item "
|
|
|
80 |
data-region="page-item"
|
|
|
81 |
data-page-number="{{paginationTotalCount}}">
|
|
|
82 |
<a href="{{paginationLastPageUri}}"
|
|
|
83 |
class="page-link"
|
|
|
84 |
data-region="page-link">
|
|
|
85 |
<span aria-hidden="true">{{#str}} last {{/str}}</span>
|
|
|
86 |
<span class="sr-only">{{#str}} last {{/str}}</span>
|
|
|
87 |
</a>
|
|
|
88 |
</li>
|
|
|
89 |
{{/paginationShowLast}}
|
|
|
90 |
</ul>
|
|
|
91 |
</nav>
|
|
|
92 |
{{/paginationShow}}
|