pager
extends helper
in package
Pager view helper object
Tags
Table of Contents
- ID_START_PREFIX = 'fpcm-id-'
- LABEL_TYPE_DEFAULT = 'input-group'
- LABEL_TYPE_FLOATING = 'form-floating'
- TEXT_DEFAULT_LABEL = 'LABEL_FIELD_'
- $aria : array<string|int, mixed>
- Ement aria config
- $autoFocused : bool
- Element is autoFocused
- $bottomSpace : string
- UI element bottom spance
- $class : string
- CSS class string
- $data : array<string|int, mixed>
- Element data
- $id : string
- Element ID
- $labelClass : string
- CS class for label
- $labelType : string
- Column with if input uses an icon
- $language : language
- Language object
- $name : string
- Element name
- $prefix : string
- Element prefix
- $readonly : bool
- Element is readonly
- $requ : bool
- Element is required
- $returned : bool
- Flag if element string was return by @see __toString
- $text : string
- Input label
- $useWrapper : string
- Add div wrapper to input field
- $wrapperClass : string
- CSS class for div wrapper
- $actionLink : int
- Action data for pager
- $currentPage : int
- Current page
- $currentPageItemsCount : int
- Numer of items on current page
- $itemsPerPage : int
- Numer of items per page
- $maxItemCount : int
- Maximum numer of items
- $maxPages : int
- Caculated numer if pages
- $showBackButton : int
- Show button to previews page
- $showNextButton : int
- Show button to next page
- __construct() : mixed
- Konstruktor
- getCleanName() : string
- Name cleanup from bracket, etc.
- getIdString() : string
- Returns name and ID string
- getJsLangVars() : array<string|int, mixed>
- Returns optional JavaScript language vars
- getJsVars() : array<string|int, mixed>
- Returns optional JavaScript vars
- initFromYml() : bool
- setAria() : $this
- Add array for 'data-'-params to element
- setAutoFocused() : $this
- Make helper auto focused
- setBottomSpace() : $this
- Set bottom space class
- setClass() : $this
- Set additional css class
- setData() : $this
- Add array for 'data-'-params to element
- setLabelClass() : $this
- Set label class CSS string
- setLabelTypeFloat() : $this
- Set label typ to floating
- setReadonly() : $this
- Set element to readonly
- setRequired() : $this
- Set required flag
- setReturned() : $this
- Prevents rendering of view helper at the end of PHP proessing
- setText() : $this
- Set button description
- setWrapper() : $this
- Use div wrapper around input field
- setWrapperClass() : $this
- Set wrapper css class
- getAriaString() : string
- Return class string
- getAutoFocusedString() : string
- Return autofocused string
- getClassString() : string
- Return class string
- getColorMode() : string
- Returns color mode
- getDataString() : string
- Return class string
- getDescriptionTextString() : string
- Returns name and ID string
- getNameIdString() : string
- Returns name and ID string
- getReadonlyString() : string
- Return class string
- getString() : string
- Return element string
- initLabel() : bool
- Initialized default label by field name
- isFloating() : bool
- assocArrayToString() : string
- Turns assoc array into string
Constants
ID_START_PREFIX
public
mixed
ID_START_PREFIX
= 'fpcm-id-'
LABEL_TYPE_DEFAULT
public
mixed
LABEL_TYPE_DEFAULT
= 'input-group'
LABEL_TYPE_FLOATING
public
mixed
LABEL_TYPE_FLOATING
= 'form-floating'
TEXT_DEFAULT_LABEL
public
mixed
TEXT_DEFAULT_LABEL
= 'LABEL_FIELD_'
Properties
$aria
Ement aria config
protected
array<string|int, mixed>
$aria
= []
Tags
$autoFocused
Element is autoFocused
protected
bool
$autoFocused
= false
Tags
$bottomSpace
UI element bottom spance
protected
string
$bottomSpace
= 'mb-3'
$class
CSS class string
protected
string
$class
= ''
$data
Element data
protected
array<string|int, mixed>
$data
= []
$id
Element ID
protected
string
$id
= ''
$labelClass
CS class for label
protected
string
$labelClass
= ''
Tags
$labelType
Column with if input uses an icon
protected
string
$labelType
= 'input-group'
$language
Language object
protected
language
$language
$name
Element name
protected
string
$name
= ''
$prefix
Element prefix
protected
string
$prefix
= ''
$readonly
Element is readonly
protected
bool
$readonly
= false
$requ
Element is required
protected
bool
$requ
= false
Tags
$returned
Flag if element string was return by @see __toString
protected
bool
$returned
= false
$text
Input label
protected
string
$text
= ''
$useWrapper
Add div wrapper to input field
protected
string
$useWrapper
= false
$wrapperClass
CSS class for div wrapper
protected
string
$wrapperClass
= ''
$actionLink
Action data for pager
private
int
$actionLink
= ''
$currentPage
Current page
private
int
$currentPage
= 1
$currentPageItemsCount
Numer of items on current page
private
int
$currentPageItemsCount
= 0
$itemsPerPage
Numer of items per page
private
int
$itemsPerPage
= 50
$maxItemCount
Maximum numer of items
private
int
$maxItemCount
= 0
$maxPages
Caculated numer if pages
private
int
$maxPages
= 0
$showBackButton
Show button to previews page
private
int
$showBackButton
= false
$showNextButton
Show button to next page
private
int
$showNextButton
= false
Methods
__construct()
Konstruktor
public
__construct(string $actionLink, int $currentPage, int $currentPageItemsCount, int $itemsPerPage, int $maxItemCount) : mixed
Parameters
- $actionLink : string
- $currentPage : int
- $currentPageItemsCount : int
- $itemsPerPage : int
- $maxItemCount : int
Return values
mixed —getCleanName()
Name cleanup from bracket, etc.
public
final getCleanName() : string
Return values
string —getIdString()
Returns name and ID string
public
final getIdString() : string
Return values
string —getJsLangVars()
Returns optional JavaScript language vars
public
getJsLangVars() : array<string|int, mixed>
Tags
Return values
array<string|int, mixed> —getJsVars()
Returns optional JavaScript vars
public
getJsVars() : array<string|int, mixed>
Tags
Return values
array<string|int, mixed> —initFromYml()
public
final initFromYml(array<string|int, mixed> $param, array<string|int, mixed> $viewVars) : bool
Parameters
- $param : array<string|int, mixed>
- $viewVars : array<string|int, mixed>
Tags
Return values
bool —setAria()
Add array for 'data-'-params to element
public
setAria(array<string|int, mixed> $aria) : $this
Parameters
- $aria : array<string|int, mixed>
Return values
$this —setAutoFocused()
Make helper auto focused
public
setAutoFocused(bool $autoFocused) : $this
Parameters
- $autoFocused : bool
Tags
Return values
$this —setBottomSpace()
Set bottom space class
public
setBottomSpace(string $bottomSpace) : $this
Parameters
- $bottomSpace : string
Tags
Return values
$this —setClass()
Set additional css class
public
setClass(string $class) : $this
Parameters
- $class : string
Return values
$this —setData()
Add array for 'data-'-params to element
public
setData(array<string|int, mixed> $data) : $this
Parameters
- $data : array<string|int, mixed>
Return values
$this —setLabelClass()
Set label class CSS string
public
setLabelClass(string $labelClass) : $this
Parameters
- $labelClass : string
Tags
Return values
$this —setLabelTypeFloat()
Set label typ to floating
public
setLabelTypeFloat() : $this
Tags
Return values
$this —setReadonly()
Set element to readonly
public
setReadonly(bool $readonly) : $this
Parameters
- $readonly : bool
Return values
$this —setRequired()
Set required flag
public
setRequired([bool $requ = true ]) : $this
Parameters
- $requ : bool = true
Tags
Return values
$this —setReturned()
Prevents rendering of view helper at the end of PHP proessing
public
setReturned(bool $returned) : $this
Parameters
- $returned : bool
Return values
$this —setText()
Set button description
public
final setText(string $text[, array<string|int, mixed> $params = [] ][, bool $spf = false ]) : $this
Parameters
- $text : string
- $params : array<string|int, mixed> = []
- $spf : bool = false
Return values
$this —setWrapper()
Use div wrapper around input field
public
setWrapper(bool $useWrapper) : $this
Parameters
- $useWrapper : bool
Return values
$this —setWrapperClass()
Set wrapper css class
public
setWrapperClass(string $wrapperClass) : $this
Parameters
- $wrapperClass : string
Return values
$this —getAriaString()
Return class string
protected
getAriaString() : string
Return values
string —getAutoFocusedString()
Return autofocused string
protected
getAutoFocusedString() : string
Return values
string —getClassString()
Return class string
protected
getClassString() : string
Return values
string —getColorMode()
Returns color mode
protected
getColorMode() : string
Tags
Return values
string —getDataString()
Return class string
protected
getDataString() : string
Return values
string —getDescriptionTextString()
Returns name and ID string
protected
final getDescriptionTextString([string $prefix = 'ps-1' ]) : string
Parameters
- $prefix : string = 'ps-1'
Return values
string —getNameIdString()
Returns name and ID string
protected
getNameIdString() : string
Return values
string —getReadonlyString()
Return class string
protected
getReadonlyString() : string
Return values
string —getString()
Return element string
protected
getString() : string
Tags
Return values
string —initLabel()
Initialized default label by field name
protected
final initLabel() : bool
Tags
Return values
bool —isFloating()
protected
isFloating() : bool
Tags
Return values
bool —assocArrayToString()
Turns assoc array into string
private
assocArrayToString(string $prefix, array<string|int, mixed> $data) : string
Parameters
- $prefix : string
- $data : array<string|int, mixed>