class AppForm extends Form implements ISignalReceiver

Web form as presenter component.

Properties

Presenter read-only $presenter

Methods

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

Application form constructor.

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
receiveHttpData()

Internal: receives submitted HTTP data.

void
signalReceived($signal)

This method is called by presenter.

Details

at line 45
__construct(IComponentContainer $parent = NULL, $name = NULL)

Application form constructor.

Parameters

IComponentContainer $parent
$name

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

Returns the presenter where this component belongs to.

Parameters

$need

Return Value

Presenter|null

at line 74
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 99
bool isAnchored()

Tells if the form is anchored.

Return Value

bool

at line 110
protected array receiveHttpData()

Internal: receives submitted HTTP data.

Return Value

array

at line 141
void signalReceived($signal)

This method is called by presenter.

Parameters

$signal

Return Value

void