Action::perform()

Action::perform() – リクエストを処理する

Synopsis

require_once 'HTML/QuickForm/Action.php';

void HTML_QuickForm_Action::perform ( object HTML_QuickForm_Page &$page , string $actionName )

Description

子クラスでこのメソッドをオーバーライドし、必要となるロジックを提供しなければなりません。

Parameter

object HTML_QuickForm_Page &$page

現在のフォームページ。

string $actionName

現在のアクション名。ひとつの Action オブジェクトで 複数のアクションを扱えるため、指定する必要があります。

Throws

例外はスローされません。

Note

This function can not be called statically.