class Form extends Form implements ISignalReceiver

Web form adapted for Presenter.

Methods

__construct(IContainer $parent = NULL, $name = NULL)

Application form constructor.

void
validateParent(IContainer $parent)

No description

Presenter|null
getPresenter($need = TRUE)

Returns the presenter where this component belongs to.

void
attached($presenter)

This method will be called when the component (or component's parent) becomes attached to a monitored object. Do not call this method yourself.

bool
isAnchored()

Tells if the form is anchored.

array|null
receiveHttpData()

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

void
signalReceived($signal)

This method is called by presenter.

Details

at line 24
__construct(IContainer $parent = NULL, $name = NULL)

Application form constructor.

Parameters

IContainer $parent
$name

at line 36
protected void validateParent(IContainer $parent)

No description

Parameters

IContainer $parent

Return Value

void

at line 48
Presenter|null getPresenter($need = TRUE)

Returns the presenter where this component belongs to.

Parameters

$need

Return Value

Presenter|null

at line 60
protected void attached($presenter)

This method will be called when the component (or component's parent) becomes attached to a monitored object. Do not call this method yourself.

Parameters

$presenter

Return Value

void

at line 92
bool isAnchored()

Tells if the form is anchored.

Return Value

bool

at line 102
protected array|null receiveHttpData()

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

Return Value

array|null

at line 131
void signalReceived($signal)

This method is called by presenter.

Parameters

$signal

Return Value

void