class Form extends Form implements SignalReceiver

Web form adapted for Presenter.

Properties

$onAnchor
protected bool $crossOrigin

Methods

__construct(IContainer|null $parent = null, string|null $name = null)

Application form constructor.

void
validateParent(IContainer $parent)

No description

Presenter|null
getPresenter()

Returns the presenter where this component belongs to.

Presenter|null
getPresenterIfExists()

Returns the presenter where this component belongs to.

bool
hasPresenter() deprecated

No description

bool
isAnchored()

Tells if the form is anchored.

void
allowCrossOrigin()

Disables CSRF protection using a SameSite cookie.

void
disableSameSiteProtection() deprecated

No description

array|null
receiveHttpData()

Internal: returns submitted HTTP data or null when form was not submitted.

beforeRender()

No description

void
signalReceived(string $signal)

This method is called by presenter.

Details

at line 30
__construct(IContainer|null $parent = null, string|null $name = null)

Application form constructor.

Parameters

IContainer|null $parent
string|null $name

at line 39
protected void validateParent(IContainer $parent)

No description

Parameters

IContainer $parent

Return Value

void

at line 69
final Presenter|null getPresenter()

Returns the presenter where this component belongs to.

Return Value

Presenter|null

at line 83
final Presenter|null getPresenterIfExists()

Returns the presenter where this component belongs to.

Return Value

Presenter|null

at line 90
bool hasPresenter() deprecated

deprecated

No description

Return Value

bool

at line 99
bool isAnchored()

Tells if the form is anchored.

Return Value

bool

at line 108
void allowCrossOrigin()

Disables CSRF protection using a SameSite cookie.

Return Value

void

at line 115
void disableSameSiteProtection() deprecated

deprecated use allowCrossOrigin()

No description

Return Value

void

at line 124
protected array|null receiveHttpData()

Internal: returns submitted HTTP data or null when form was not submitted.

Return Value

array|null

at line 142
protected beforeRender()

No description

at line 159
void signalReceived(string $signal)

This method is called by presenter.

Parameters

string $signal

Return Value

void