class Form extends Form implements SignalReceiver

Web form adapted for Presenter.

Properties

$onAnchor

Methods

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

Application form constructor.

void
validateParent(IContainer $parent)

Is called by a component when it is about to be set new parent. Descendant can override this method to disallow a parent change by throwing an Nette\InvalidStateException

getPresenter()

Returns the presenter where this component belongs to.

Presenter|null
getPresenterIfExists()

Returns the presenter where this component belongs to.

bool
hasPresenter()

No description

bool
isAnchored()

Tells if the form is anchored.

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 27
__construct(IContainer|null $parent = null, string|null $name = null)

Application form constructor.

Parameters

IContainer|null $parent
string|null $name

at line 36
protected void validateParent(IContainer $parent)

Is called by a component when it is about to be set new parent. Descendant can override this method to disallow a parent change by throwing an Nette\InvalidStateException

Parameters

IContainer $parent

Return Value

void

Exceptions

InvalidStateException

at line 66
final Presenter getPresenter()

Returns the presenter where this component belongs to.

Return Value

Presenter

at line 75
final Presenter|null getPresenterIfExists()

Returns the presenter where this component belongs to.

Return Value

Presenter|null

at line 81
bool hasPresenter()

No description

Return Value

bool

at line 90
bool isAnchored()

Tells if the form is anchored.

Return Value

bool

at line 97
void disableSameSiteProtection() deprecated

deprecated use allowCrossOrigin()

No description

Return Value

void

at line 106
protected array|null receiveHttpData()

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

Return Value

array|null

at line 124
protected beforeRender()

No description

at line 141
void signalReceived(string $signal)

This method is called by presenter.

Parameters

string $signal

Return Value

void