Form
class Form extends Container implements HtmlStringable
Creates, validates and renders HTML forms.
Constants
Equal |
validator |
IsIn |
validator |
NotEqual |
validator |
IsNotIn |
validator |
Filled |
validator |
Blank |
validator |
Required |
validator |
Valid |
validator |
Submitted |
validator |
MinLength |
validator |
MaxLength |
validator |
Length |
validator |
validator |
|
URL |
validator |
Pattern |
validator |
PatternInsensitive |
validator |
Integer |
validator |
Numeric |
validator |
Float |
validator |
Min |
validator |
Max |
validator |
Range |
validator |
Count |
validator |
MaxFileSize |
validator |
MimeType |
validator |
Image |
validator |
MaxPostSize |
validator |
Get |
method |
Post |
method |
DataText |
submitted data types |
DataLine |
submitted data types |
DataFile |
submitted data types |
DataKeys |
submitted data types |
internal TrackerId |
|
internal ProtectorId |
|
EQUAL |
|
IS_IN |
|
NOT_EQUAL |
|
IS_NOT_IN |
|
FILLED |
|
BLANK |
|
REQUIRED |
|
VALID |
|
SUBMITTED |
|
MIN_LENGTH |
|
MAX_LENGTH |
|
LENGTH |
|
|
|
PATTERN |
|
PATTERN_ICASE |
|
INTEGER |
|
NUMERIC |
|
FLOAT |
|
MIN |
|
MAX |
|
RANGE |
|
COUNT |
|
MAX_FILE_SIZE |
|
MIME_TYPE |
|
IMAGE |
|
MAX_POST_SIZE |
|
GET |
|
POST |
|
DATA_TEXT |
|
DATA_LINE |
|
DATA_FILE |
|
DATA_KEYS |
|
TRACKER_ID |
|
PROTECTOR_ID |
|
Properties
$onSuccess | Occurs when the form is submitted and successfully validated |
||
$onError | |||
$onSubmit | |||
$onRender | |||
internal | $httpRequest | ||
protected bool | $crossOrigin | ||
string | $action | ||
string | $method | ||
array read-only | $errors | ||
array read-only | $ownErrors | ||
Html read-only | $elementPrototype | ||
FormRenderer read-only | $renderer |
Methods
No description
Returns self.
Returns form's action.
Returns form's method.
Checks if the request method is the given one.
Changes forms's HTML attribute.
Disables CSRF protection using a SameSite cookie.
Cross-Site Request Forgery (CSRF) form protection.
Adds fieldset group to the form.
Returns all defined groups.
Returns the specified group.
Sets translate adapter.
Returns translate adapter.
Tells if the form is anchored.
Tells if the form was submitted.
Tells if the form was submitted and successfully validated.
Sets the submittor control.
Returns submitted HTTP data.
Fires submit/click events.
Internal: returns submitted HTTP data or null when form was not submitted.
Performs the server side validation.
No description
Adds global error message.
Returns global validation errors.
No description
No description
Returns form's validation errors.
Returns form's HTML element template.
Sets form renderer.
Returns form renderer.
No description
Must be called before form is rendered and render() is not used.
Renders form.
Renders form to string.
No description
Initialize standalone forms.
Details
at line 169
__construct(string|null $name = null)
No description
at line 189
Form|null
getForm(bool $throw = true)
Returns self.
at line 200
Form
setAction(string|object $url)
Sets form's action.
at line 211
mixed
getAction()
Returns form's action.
at line 221
Form
setMethod(string $method)
Sets form's method GET or POST.
at line 235
string
getMethod()
Returns form's method.
at line 244
bool
isMethod(string $method)
Checks if the request method is the given one.
at line 254
Form
setHtmlAttribute(string $name, $value = true)
Changes forms's HTML attribute.
at line 264
void
allowCrossOrigin()
Disables CSRF protection using a SameSite cookie.
at line 273
CsrfProtection
addProtection(string|null $errorMessage = null)
Cross-Site Request Forgery (CSRF) form protection.
at line 287
ControlGroup
addGroup(string|object $caption = null, bool $setAsCurrent = true)
Adds fieldset group to the form.
at line 307
void
removeGroup(string|ControlGroup $name)
Removes fieldset group from form.
at line 332
array
getGroups()
Returns all defined groups.
at line 342
ControlGroup|null
getGroup(string|int $name)
Returns the specified group.
at line 355
Form
setTranslator(Translator|null $translator)
Sets translate adapter.
at line 365
Translator|null
getTranslator()
Returns translate adapter.
at line 377
bool
isAnchored()
Tells if the form is anchored.
at line 387
SubmitterControl|bool
isSubmitted()
Tells if the form was submitted.
at line 400
bool
isSuccess()
Tells if the form was submitted and successfully validated.
at line 411
Form
setSubmittedBy(SubmitterControl|null $by)
internal |
Sets the submittor control.
at line 422
mixed
getHttpData(int|null $type = null, string|null $htmlName = null)
Returns submitted HTTP data.
at line 445
void
fireEvents()
Fires submit/click events.
at line 510
Form
reset()
Resets form.
at line 521
protected array|null
receiveHttpData()
Internal: returns submitted HTTP data or null when form was not submitted.
at line 554
void
validate(array|null $controls = null)
Performs the server side validation.
at line 567
void
validateMaxPostSize()
internal |
No description
at line 584
void
addError(string|object $message, bool $translate = true)
Adds global error message.
at line 597
array
getErrors()
Returns global validation errors.
at line 603
bool
hasErrors()
No description
at line 609
void
cleanErrors()
No description
at line 618
array
getOwnErrors()
Returns form's validation errors.
at line 630
Html
getElementPrototype()
Returns form's HTML element template.
at line 646
Form
setRenderer(FormRenderer|null $renderer)
Sets form renderer.
at line 656
FormRenderer
getRenderer()
Returns form renderer.
at line 666
protected
beforeRender()
No description
at line 674
void
fireRenderEvents()
Must be called before form is rendered and render() is not used.
at line 687
void
render(...$args)
Renders form.
at line 698
string
__toString()
Renders form to string.
at line 715
array
getToggles()
No description
at line 732
static void
initialize(bool $reinit = false)
Initialize standalone forms.