PHP Classes

File: modules/system/assets/ui/docs/pagination.md

Recommend this page to a friend!
  Packages of Luke Towers   Winter   modules/system/assets/ui/docs/pagination.md   Download  
File: modules/system/assets/ui/docs/pagination.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 7 months ago
Size: 912 bytes
 

Contents

Class file image Download

Basic example

<div class="control-pagination">
    <span class="page-iteration">Displayed records: 1-5 of 20</span>
    <a href="#" class="page-back" title="Previous page"></a><a href="#" class="page-next" title="Next page"></a>
</div>

Complete example

<div class="control-pagination">
    <span class="page-iteration">Displayed records: 1-5 of 20</span>
    <span class="page-first" title="First page"></span>
    <span class="page-back" title="Previous page"></span>
    <select
        name="page"
        class="form-control custom-select select-no-search">
            <option value="1" selected>1</option>
            <option value="2">2</option>
            <option value="3">3</option>
    </select>
    <a href="#" class="page-next" title="Next page"></a>
    <a href="#" class="page-last" title="Last page"></a>
</div>