PHP Класс Bolt\TemplateChooser

Показать файл Открыть проект Примеры использования класса

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

Метод Описание
__construct ( Silex\Application $app ) Constructor.
homepage ( Content | Content[] $content ) : string Choose a template for the homepage.
listing ( array $contenttype ) : string Select a template for listing pages.
maintenance ( ) : string Select a template to use for the "maintenance" page.
record ( Content $record, array $data = null ) : string Choose a template for a single record page, e.g.: - '/page/about' - '/entry/lorum-ipsum'
search ( ) : string Select a search template.
taxonomy ( string $taxonomyslug ) : string Select a template for taxonomy.

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

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

Constructor.
public __construct ( Silex\Application $app )
$app Silex\Application

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

Choose a template for the homepage.
public homepage ( Content | Content[] $content ) : string
$content Bolt\Legacy\Content | Bolt\Legacy\Content[]
Результат string

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

Select a template for listing pages.
public listing ( array $contenttype ) : string
$contenttype array
Результат string

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

Select a template to use for the "maintenance" page.
public maintenance ( ) : string
Результат string

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

Refactor note: Using a FQCN for the hint here as a use statement causes a fatal in the unit tests… 'cause PHP and class_alias() versus namespaces.
public record ( Content $record, array $data = null ) : string
$record Bolt\Legacy\Content
$data array
Результат string

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

Select a template for taxonomy.
public taxonomy ( string $taxonomyslug ) : string
$taxonomyslug string
Результат string