blob: 7cf076690f6b5496c23712788b955f71e31df86c (
plain)
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
41
42
43
44
|
<?php
/**
* TPagedList, TPagedListFetchDataEventParameter, TPagedListPageChangedEventParameter class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Collections
*/
namespace Prado\Collections;
/**
* TPagedListPageChangedEventParameter class.
* TPagedListPageChangedEventParameter is used as the parameter for
* {@link TPagedList::onPageChanged OnPageChanged} event.
* To obtain the page index before it was changed, use {@link getOldPageIndex OldPageIndex}.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package Prado\Collections
* @since 3.0
*/
class TPagedListPageChangedEventParameter extends \Prado\TEventParameter
{
private $_oldPage;
/**
* Constructor.
* @param integer old page index
*/
public function __construct($oldPage)
{
$this->_oldPage=$oldPage;
}
/**
* @return integer the index of the page before the list changed to the new page
*/
public function getOldPageIndex()
{
return $this->_oldPage;
}
}
|