-
Notifications
You must be signed in to change notification settings - Fork 0
/
LinkPager.php
40 lines (37 loc) · 970 Bytes
/
LinkPager.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/**
* @link http://foundationize.com
* @package shqear/yii2-foundation6
* @version 1.0.0
*/
namespace shqear\foundation6;
/**
* Description of LinkPager
*/
class LinkPager extends \yii\widgets\LinkPager
{
/**
* @var string the CSS class for the "first" page button.
*/
public $firstPageCssClass = 'first';
/**
* @var string the CSS class for the "last" page button.
*/
public $lastPageCssClass = 'last';
/**
* @var string the CSS class for the "previous" page button.
*/
public $prevPageCssClass = 'arrow';
/**
* @var string the CSS class for the "next" page button.
*/
public $nextPageCssClass = 'arrow';
/**
* @var string the CSS class for the active (currently selected) page button.
*/
public $activePageCssClass = 'current';
/**
* @var string the CSS class for the disabled page buttons.
*/
public $disabledPageCssClass = 'unavailable';
}