FormHelper
Form's helper class.
Provides a storage for filesystem's paths where Form's entities reside and methods for creating those entities. Also stores objects with entities' prototypes for further reusing.
since |
1.7.0 |
---|
Methods
addFieldPath
Method to add a path to the list of field include paths.
addFieldPath(mixed $new = null) : array
since |
1.7.0 |
---|
Arguments
- $new
mixed
A path or array of paths to add.
Response
array
The list of paths that have been added.
addFieldPrefix
Method to add a namespace prefix to the list of field lookups.
addFieldPrefix(mixed $new = null) : array
since |
3.8.0 |
---|
Arguments
- $new
mixed
A namespaces or array of namespaces to add.
Response
array
The list of namespaces that have been added.
addFormPath
Method to add a path to the list of form include paths.
addFormPath(mixed $new = null) : array
since |
1.7.0 |
---|
Arguments
- $new
mixed
A path or array of paths to add.
Response
array
The list of paths that have been added.
addFormPrefix
Method to add a namespace to the list of form lookups.
addFormPrefix(mixed $new = null) : array
since |
3.8.0 |
---|
Arguments
- $new
mixed
A namespace or array of namespaces to add.
Response
array
The list of namespaces that have been added.
addPath
Method to add a path to the list of include paths for one of the form's entities.
addPath(string $entity, mixed $new = null) : array
Currently supported entities: field, rule and form. You are free to support your own in a subclass.
since |
1.7.0 |
---|
Arguments
- $entity
string
Form's entity name for which paths will be added.- $new
mixed
A path or array of paths to add.
Response
array
The list of paths that have been added.
addPrefix
Method to add a namespace to the list of namespaces for one of the form's entities.
addPrefix(string $entity, mixed $new = null) : array
Currently supported entities: field, rule and form. You are free to support your own in a subclass.
since |
3.8.0 |
---|
Arguments
- $entity
string
Form's entity name for which paths will be added.- $new
mixed
A namespace or array of namespaces to add.
Response
array
The list of namespaces that have been added.
addRulePath
Method to add a path to the list of rule include paths.
addRulePath(mixed $new = null) : array
since |
1.7.0 |
---|
Arguments
- $new
mixed
A path or array of paths to add.
Response
array
The list of paths that have been added.
addRulePrefix
Method to add a namespace to the list of rule lookups.
addRulePrefix(mixed $new = null) : array
since |
3.8.0 |
---|
Arguments
- $new
mixed
A namespace or array of namespaces to add.
Response
array
The list of namespaces that have been added.
loadClass
Load a class for one of the form's entities of a particular type.
loadClass(string $entity, string $type) : string|boolean
Currently, it makes sense to use this method for the "field" and "rule" entities (but you can support more entities in your subclass).
since |
1.7.0 |
---|
Arguments
- $entity
string
One of the form entities (field or rule).- $type
string
Type of an entity.
Response
string|boolean
Class name on success or false otherwise.
loadFieldClass
Attempt to import the JFormField class file if it isn't already imported.
loadFieldClass(string $type) : string|boolean
You can use this method outside of JForm for loading a field for inheritance or composition.
since |
1.7.0 |
---|
Arguments
- $type
string
Type of a field whose class should be loaded.
Response
string|boolean
Class name on success or false otherwise.
loadFieldType
Method to load a form field object given a type.
loadFieldType(string $type, boolean $new = true) : \Joomla\CMS\Form\FormField|boolean
since |
1.7.0 |
---|
Arguments
- $type
string
The field type.- $new
boolean
Flag to toggle whether we should get a new instance of the object.
Response
\Joomla\CMS\Form\FormField|boolean
FormField object on success, false otherwise.
loadRuleClass
Attempt to import the JFormRule class file if it isn't already imported.
loadRuleClass(string $type) : string|boolean
You can use this method outside of JForm for loading a rule for inheritance or composition.
since |
1.7.0 |
---|
Arguments
- $type
string
Type of a rule whose class should be loaded.
Response
string|boolean
Class name on success or false otherwise.
loadRuleType
Method to load a form rule object given a type.
loadRuleType(string $type, boolean $new = true) : \Joomla\CMS\Form\FormRule|boolean
since |
1.7.0 |
---|
Arguments
- $type
string
The rule type.- $new
boolean
Flag to toggle whether we should get a new instance of the object.
Response
\Joomla\CMS\Form\FormRule|boolean
FormRule object on success, false otherwise.
loadType
Method to load a form entity object given a type.
loadType(string $entity, string $type, boolean $new = true) : mixed
Each type is loaded only once and then used as a prototype for other objects of same type. Please, use this method only with those entities which support types (forms don't support them).
since |
1.7.0 |
---|
Arguments
- $entity
string
The entity.- $type
string
The entity type.- $new
boolean
Flag to toggle whether we should get a new instance of the object.
Response
mixed
Entity object on success, false otherwise.
parseShowOnConditions
Parse the show on conditions
parseShowOnConditions(string $showOn, string $formControl = null, string $group = null) : array
since |
3.7.0 |
---|
Arguments
- $showOn
string
Show on conditions.- $formControl
string
Form name.- $group
string
The dot-separated form group path.
Response
array
Array with show on conditions.
Properties
paths
Array with paths where entities(field, rule, form) can be found.
Array's structure:
paths: {ENTITY_NAME}:
- /path/1
- /path/2
since |
1.7.0 |
---|
Type(s)
array
prefixes
The class namespaces.
since |
3.8.0 |
---|
Type(s)
string
entities
Static array of Form's entity objects for re-use.
Prototypes for all fields and rules are here.
Array's structure: entities: {ENTITY_NAME}: {KEY}: {OBJECT}
since |
1.7.0 |
---|
Type(s)
array