PHP 클래스 MorePagerModule, vanilla

상속: extends Gdn_Module
파일 보기 프로젝트 열기: vanilla/vanilla

공개 프로퍼티들

프로퍼티 타입 설명
$ClientID The id applied to the div tag that contains the pager.
$CssClass The name of the stylesheet class to be applied to the pager. Default is 'Pager'.
$LessCode Translation code to be used for "less" link.
$Limit number of records being displayed on a single page of data. Default is 30.
$MoreCode Translation code to be used for "more" link.
$Offset The first record of the current page (the dataset offset).
$PagerEmpty If there are no pages to page through, this string will be returned in place of the pager. Default is an empty string.
$TotalRecords total number of records in the dataset.
$Url The string to contain the record offset. ie. /controller/action/%s/
$Wrapper The xhtml code that should wrap around the pager link. ie. '
%2$s
'; where %1$s represents id and class attributes (if defined by $this->ClientID and $this->CssClass) and %2$s represents the pager link.

공개 메소드들

메소드 설명
__construct ( string $Sender = '' )
assetTarget ( ) : boolean
configure ( $Offset, $Limit, $TotalRecords, $Url, $ForceConfigure = false ) Define all required parameters to create the Pager and PagerDetails.
details ( string $formatString = '' ) : string Builds a string with information about the page list's current position (ie. "1 to 15 of 56").
firstPage ( ) : boolean Whether or not this is the first page of the pager.
formatUrl ( $Url, $Offset, string $Limit = '' ) : mixed | string
hasMorePages ( ) Are there more pages after the current one?
lastPage ( ) : boolean Whether or not this is the last page of the pager.
toString ( $Type = 'more' ) Returns the "show x more (or less) items" link.

메소드 상세

__construct() 공개 메소드

public __construct ( string $Sender = '' )
$Sender string

assetTarget() 공개 메소드

public assetTarget ( ) : boolean
리턴 boolean

configure() 공개 메소드

Define all required parameters to create the Pager and PagerDetails.
public configure ( $Offset, $Limit, $TotalRecords, $Url, $ForceConfigure = false )

details() 공개 메소드

Builds a string with information about the page list's current position (ie. "1 to 15 of 56").
public details ( string $formatString = '' ) : string
$formatString string Not used.
리턴 string Built string.

firstPage() 공개 메소드

Whether or not this is the first page of the pager.
public firstPage ( ) : boolean
리턴 boolean True if this is the first page.

formatUrl() 공개 정적인 메소드

public static formatUrl ( $Url, $Offset, string $Limit = '' ) : mixed | string
$Url
$Offset
$Limit string
리턴 mixed | string

hasMorePages() 공개 메소드

Are there more pages after the current one?
public hasMorePages ( )

lastPage() 공개 메소드

Whether or not this is the last page of the pager.
public lastPage ( ) : boolean
리턴 boolean True if this is the last page.

toString() 공개 메소드

Returns the "show x more (or less) items" link.
public toString ( $Type = 'more' )

프로퍼티 상세

$ClientID 공개적으로 프로퍼티

The id applied to the div tag that contains the pager.
public $ClientID

$CssClass 공개적으로 프로퍼티

The name of the stylesheet class to be applied to the pager. Default is 'Pager'.
public $CssClass

$LessCode 공개적으로 프로퍼티

Translation code to be used for "less" link.
public $LessCode

$Limit 공개적으로 프로퍼티

number of records being displayed on a single page of data. Default is 30.
public $Limit

$MoreCode 공개적으로 프로퍼티

Translation code to be used for "more" link.
public $MoreCode

$Offset 공개적으로 프로퍼티

The first record of the current page (the dataset offset).
public $Offset

$PagerEmpty 공개적으로 프로퍼티

If there are no pages to page through, this string will be returned in place of the pager. Default is an empty string.
public $PagerEmpty

$TotalRecords 공개적으로 프로퍼티

total number of records in the dataset.
public $TotalRecords

$Url 공개적으로 프로퍼티

The string to contain the record offset. ie. /controller/action/%s/
public $Url

$Wrapper 공개적으로 프로퍼티

The xhtml code that should wrap around the pager link. ie. '
%2$s
'; where %1$s represents id and class attributes (if defined by $this->ClientID and $this->CssClass) and %2$s represents the pager link.
public $Wrapper