W3cubDocs

/Symfony 4.1

FilesystemLoader

class FilesystemLoader implements LoaderInterface

FilesystemLoader is a loader that read templates from the filesystem.

Properties

protected $locator

Methods

__construct(FileLocatorInterface $locator)
Storage|bool load(TemplateReferenceInterface $template)

Loads a template.

bool isFresh(TemplateReferenceInterface $template, int $time)

Returns true if the template is still fresh.

Details

__construct(FileLocatorInterface $locator)

Parameters

FileLocatorInterface $locator

Storage|bool load(TemplateReferenceInterface $template)

Loads a template.

Parameters

TemplateReferenceInterface $template

Return Value

Storage|bool false if the template cannot be loaded, a Storage instance otherwise

bool isFresh(TemplateReferenceInterface $template, int $time)

Returns true if the template is still fresh.

Parameters

TemplateReferenceInterface $template A template
int $time The last modification time of the cached template (timestamp)

Return Value

bool