zendframework/zend-expressive-twigrenderer

此包已弃用且不再维护。作者建议使用 mezzio/mezzio-twigrenderer 包。

Expressive 的 Twig 集成

2.5.0 2019-11-26 10:22 UTC

README

仓库弃用 2019-12-31

此仓库已迁移到 mezzio/mezzio-twigrenderer

Build Status Coverage Status

Twig 提供对 Expressive 的集成。

安装

使用 composer 安装此库

$ composer require zendframework/zend-expressive-twigrenderer

我们建议使用依赖注入容器,并对 container-interop 进行类型提示。以下是一些推荐实现:

Twig 扩展

包含的 Twig 扩展增加了 URL 生成支持。如果将 UrlHelperServerUrlHelper 注册到容器中,则该扩展将自动激活。

  • path: 对于给定的路由和参数渲染相对路径。如果没有路由,则返回当前路径。

    {{ path('article_show', {'id': '3'}) }}
    Generates: /article/3

    path 支持可选查询参数和片段标识符。

    {{ path('article_show', {'id': '3'}, {'foo': 'bar'}, 'fragment') }}
    Generates: /article/3?foo=bar#fragment

    默认情况下,适用于适用情况时使用当前路由结果。要禁用此功能,可以设置 reuse_result_params 选项。

    {{ path('article_show', {}, {}, null, {'reuse_result_params': false}) }}
  • url: 对于给定的路由和参数渲染绝对 URL。如果没有路由,则返回当前 URL。

    {{ url('article_show', {'slug': 'article.slug'}) }}
    Generates: http://example.com/article/article.slug

    url 也支持查询参数和片段标识符。

    {{ url('article_show', {'id': '3'}, {'foo': 'bar'}, 'fragment') }}
    Generates: http://example.com/article/3?foo=bar#fragment

    默认情况下,适用于适用情况时使用当前路由结果。要禁用此功能,可以设置 reuse_result_params 选项。

    {{ url('article_show', {}, {}, null, {'reuse_result_params': false}) }}
  • absolute_url: 从给定的路径渲染绝对 URL。如果路径为空,则返回当前 URL。

    {{ absolute_url('path/to/something') }}
    Generates: http://example.com/path/to/something
  • asset 渲染(可选版本化)资产 URL。

    {{ asset('path/to/asset/name.ext', version=3) }}
    Generates: path/to/asset/name.ext?v=3

    要获取资产的绝对 URL

    {{ absolute_url(asset('path/to/asset/name.ext', version=3)) }}
    Generates: http://example.com/path/to/asset/name.ext?v=3

配置

如果您使用 zend-component-installer,则在通过 composer 需求此包时,会自动为您配置工厂。如果没有组件安装程序,您需要在您的 config/config.php 中包含 ConfigProvider。可选配置可以存储在 config/autoload/templates.global.php 中。

'templates' => [
    'extension' => 'file extension used by templates; defaults to html.twig',
    'paths' => [
        // namespace / path pairs
        //
        // Numeric namespaces imply the default/main namespace. Paths may be
        // strings or arrays of string paths to associate with the namespace.
    ],
],
'twig' => [
    'cache_dir' => 'path to cached templates',
    'assets_url' => 'base URL for assets',
    'assets_version' => 'base version for assets',
    'extensions' => [
        // extension service names or instances
    ],
    'runtime_loaders' => [
        // runtime loaders names or instances   
    ],
    'globals' => [
        // Global variables passed to twig templates
        'ga_tracking' => 'UA-XXXXX-X'
    ],
    'timezone' => 'default timezone identifier, e.g.: America/New_York',
    'optimizations' => -1, // -1: Enable all (default), 0: disable optimizations
    'autoescape' => 'html', // Auto-escaping strategy [html|js|css|url|false]
    'auto_reload' => true, // Recompile the template whenever the source code changes
    'debug' => true, // When set to true, the generated templates have a toString() method
    'strict_variables' => true, // When set to true, twig throws an exception on invalid variables
],

文档

查看 expressive 的 Twig 文档