PHP 클래스 FOF30\Form\Field\ViewTemplate

상속: extends JFormField, implements FOF30\Form\FieldInterface
파일 보기 프로젝트 열기: akeeba/fof

공개 프로퍼티들

프로퍼티 타입 설명
$item FOF30\Model\DataModel The item being rendered in a repeatable form field
$rowid integer A monotonically increasing number, denoting the row number in a repeatable view

보호된 프로퍼티들

프로퍼티 타입 설명
$form FOF30\Form\Form The Form object of the form attached to the form field.
$repeatable Repeatable field output
$static Static field output

공개 메소드들

메소드 설명
__get ( string $name ) : mixed Method to get certain otherwise inaccessible properties from the form field object.
getRepeatable ( ) : string Get the rendering of this field type for a repeatable (grid) display, e.g. in a view listing many item (typically a "browse" task)
getStatic ( ) : string Get the rendering of this field type for static display, e.g. in a single item view (typically a "read" task).

보호된 메소드들

메소드 설명
getInput ( ) : string Method to get the field input markup.
getRenderedTemplate ( $isRepeatable = false ) : string Returns the rendered view template

메소드 상세

__get() 공개 메소드

Method to get certain otherwise inaccessible properties from the form field object.
부터: 2.0
public __get ( string $name ) : mixed
$name string The property name for which to the the value.
리턴 mixed The property value or null.

getInput() 보호된 메소드

Method to get the field input markup.
부터: 11.1
protected getInput ( ) : string
리턴 string The field input markup.

getRenderedTemplate() 보호된 메소드

Returns the rendered view template
protected getRenderedTemplate ( $isRepeatable = false ) : string
리턴 string

getRepeatable() 공개 메소드

Get the rendering of this field type for a repeatable (grid) display, e.g. in a view listing many item (typically a "browse" task)
부터: 2.0
public getRepeatable ( ) : string
리턴 string The field HTML

getStatic() 공개 메소드

Get the rendering of this field type for static display, e.g. in a single item view (typically a "read" task).
부터: 2.0
public getStatic ( ) : string
리턴 string The field HTML

프로퍼티 상세

$form 보호되어 있는 프로퍼티

The Form object of the form attached to the form field.
protected Form,FOF30\Form $form
리턴 FOF30\Form\Form

$item 공개적으로 프로퍼티

The item being rendered in a repeatable form field
public DataModel,FOF30\Model $item
리턴 FOF30\Model\DataModel

$repeatable 보호되어 있는 프로퍼티

Repeatable field output
protected $repeatable

$rowid 공개적으로 프로퍼티

A monotonically increasing number, denoting the row number in a repeatable view
public int $rowid
리턴 integer

$static 보호되어 있는 프로퍼티

Static field output
protected $static