HTML_QuickForm_Renderer::renderHtml()

HTML_QuickForm_Renderer::renderHtml() – 生の HTML/テキスト 要素を処理する (package developer related)

Synopsis

require_once 'HTML/QuickForm/Renderer.php';

void HTML_QuickForm_Renderer::renderHtml ( object &$data )

Description

生の HTML/テキスト 擬似要素を訪問する際にコールされます。

Implementation of the method

HTML_QuickForm_html 要素は、フォーム出力に直接 HTML を追加する際に使用されます。そのため、デフォルトのレンダラでは有用ですが、 テンプレートベースのレンダラでは使えません。現在このメソッドを実装しているのは、 デフォルトのレンダラのみです。それ以外のレンダラでは HTML_QuickForm_html 要素を黙って無視します。

Parameter

object &$data

処理する HTML_QuickForm_html 要素。

Throws

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

Note

abstract

This function can not be called statically.