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
파일 보기 프로젝트 열기: pradosoft/prado

공개 메소드들

메소드 설명
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 )