PHP 클래스 Prado\Web\UI\TTemplateManager

TTemplateManager manages the loading and parsing of control templates. There are two ways of loading a template, either by the associated template control class name, or the template file name. The former is via calling {@link getTemplateByClassName}, which tries to locate the corresponding template file under the directory containing the class file. The name of the template file is the class name with the extension '.tpl'. To load a template from a template file path, call {@link getTemplateByFileName}. By default, TTemplateManager is registered with {@link TPageService} as the template manager module that can be accessed via {@link TPageService::getTemplateManager()}.
부터: 3.0
저자: Qiang Xue ([email protected])
상속: extends Prado\TModule
파일 보기 프로젝트 열기: pradosoft/prado

공개 메소드들

메소드 설명
getTemplateByClassName ( $className ) : Prado\Web\UI\ITemplate Loads the template corresponding to the specified class name.
getTemplateByFileName ( $fileName ) : Prado\Web\UI\ITemplate Loads the template from the specified file.
init ( $config ) Initializes the module.

보호된 메소드들

메소드 설명
getLocalizedTemplate ( $filename ) : string | null Finds a localized template file.

메소드 상세

getLocalizedTemplate() 보호된 메소드

Finds a localized template file.
protected getLocalizedTemplate ( $filename ) : string | null
리턴 string | null a localized template file if found, null otherwise.

getTemplateByClassName() 공개 메소드

Loads the template corresponding to the specified class name.
public getTemplateByClassName ( $className ) : Prado\Web\UI\ITemplate
리턴 Prado\Web\UI\ITemplate template for the class name, null if template doesn't exist.

getTemplateByFileName() 공개 메소드

Loads the template from the specified file.
public getTemplateByFileName ( $fileName ) : Prado\Web\UI\ITemplate
리턴 Prado\Web\UI\ITemplate template parsed from the specified file, null if the file doesn't exist.

init() 공개 메소드

This method is required by IModule and is invoked by application. It starts output buffer if it is enabled.
public init ( $config )