composedcreative/envvaluereplace

为Craft CMS项目添加了'envValueReplace' twig过滤器

0.1.0 2016-06-02 20:34 UTC

This package is not auto-updated.

Last update: 2024-09-23 12:16:52 UTC


README

安装

composer require composed/envvaluereplace

示例

将以下内容添加到general或per-environment的config/general.php

'envValueReplacements' => [
    'search for' => 'replace with'
]

然后在您的模板代码中使用

{% set test = "this string contains the search for value" %}
{{ test|envValueReplace }}

此示例将输出此字符串包含替换值

路线图

  • 改进文档(例如链式替换示例)