PHP Класс Prado\Web\UI\WebControls\TWebControlAdapter

TWebControlAdapter is the base class for adapters that customize rendering for the Web control to which the adapter is attached. It may be used to modify the default markup or behavior for specific browsers.
С версии: 3.0
Автор: Qiang Xue ([email protected])
Наследование: extends Prado\Web\UI\TControlAdapter
Показать файл Открыть проект

Открытые методы

Метод Описание
render ( $writer ) Renders the control to which the adapter is attached.
renderBeginTag ( $writer ) Renders the openning tag for the attached control.
renderContents ( $writer ) Renders the body contents within the attached control tag.
renderEndTag ( $writer ) Renders the closing tag for the attached control.

Описание методов

render() публичный Метод

It calls {@link renderBeginTag}, {@link renderContents} and {@link renderEndTag} in order.
public render ( $writer )

renderBeginTag() публичный Метод

Default implementation calls the attached control's corresponding method.
public renderBeginTag ( $writer )

renderContents() публичный Метод

Default implementation calls the attached control's corresponding method.
public renderContents ( $writer )

renderEndTag() публичный Метод

Default implementation calls the attached control's corresponding method.
public renderEndTag ( $writer )