PHP 클래스 Symfony\Component\Templating\Loader\FilesystemLoader

저자: Fabien Potencier ([email protected])
상속: extends Symfony\Component\Templating\Loader\Loader
파일 보기 프로젝트 열기: pmjones/php-framework-benchmarks 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$templatePathPatterns

공개 메소드들

메소드 설명
__construct ( array $templatePathPatterns ) Constructor.
isFresh ( Symfony\Component\Templating\TemplateReferenceInterface $template, integer $time ) Returns true if the template is still fresh.
load ( Symfony\Component\Templating\TemplateReferenceInterface $template ) : Symfony\Component\Templating\Storage\Storage | boolean Loads a template.

보호된 메소드들

메소드 설명
isAbsolutePath ( string $file ) : true Returns true if the file is an existing absolute path.

메소드 상세

__construct() 공개 메소드

Constructor.
public __construct ( array $templatePathPatterns )
$templatePathPatterns array An array of path patterns to look for templates

isAbsolutePath() 보호된 정적인 메소드

Returns true if the file is an existing absolute path.
protected static isAbsolutePath ( string $file ) : true
$file string A path
리턴 true if the path exists and is absolute, false otherwise

isFresh() 공개 메소드

Returns true if the template is still fresh.
public isFresh ( Symfony\Component\Templating\TemplateReferenceInterface $template, integer $time )
$template Symfony\Component\Templating\TemplateReferenceInterface A template
$time integer The last modification time of the cached template (timestamp)

load() 공개 메소드

Loads a template.
public load ( Symfony\Component\Templating\TemplateReferenceInterface $template ) : Symfony\Component\Templating\Storage\Storage | boolean
$template Symfony\Component\Templating\TemplateReferenceInterface A template
리턴 Symfony\Component\Templating\Storage\Storage | boolean false if the template cannot be loaded, a Storage instance otherwise

프로퍼티 상세

$templatePathPatterns 보호되어 있는 프로퍼티

protected $templatePathPatterns