PHP Class FOF30\Form\Field\Rules

Inheritance: extends JFormFieldRules, implements FOF30\Form\FieldInterface
Datei anzeigen Open project: akeeba/fof

Public Properties

Property Type Description
$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

Protected Properties

Property Type Description
$form FOF30\Form\Form The Form object of the form attached to the form field.
$repeatable Repeatable field output
$static Static field output

Public Methods

Method Description
__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).

Protected Methods

Method Description
getInput ( ) : string At the timing of this writing (2013-12-03), the Joomla "rules" field is buggy. When you are dealing with a new record it gets the default permissions from the root asset node, which is fine for the default permissions of Joomla articles, but unsuitable for third party software.

Method Details

__get() public method

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

getInput() protected method

We had to copy & paste the whole code, since we can't "inject" the correct asset id if one is not found. Our fixes are surrounded by FOF Library fix remarks.
protected getInput ( ) : string
return string The input field's HTML for this field type

getRepeatable() public method

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

getStatic() public method

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

Property Details

$form protected_oe property

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

$item public_oe property

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

$repeatable protected_oe property

Repeatable field output
protected $repeatable

$rowid public_oe property

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

$static protected_oe property

Static field output
protected $static