是否可以在Twig中定义内联模板?

arv*_*ixx 2 php twig

我想在Twig做类似的事情:

{% inlinetemplate input_wrapper %}

<div class="control-group">
    <label class="control-label" for="{% block name %}{% endblock name %}">
        {% block label %}{% endblock label %}
    </label>

    <div class="controls">
        {% block controls %}{% endblock controls %}
    </div>
</div>

{% endinlinetemplate %}


{% extendinline input_wrapper %}
{% block label %}Age {% endblock label %}
{% block name %}age{% endblock name %}
{% block controls %}
<select name="age">
    <option ...>...</option>
    ...
</select>
{% endblock controls %}
{% endextendline input_wrapper %}
Run Code Online (Sandbox Code Playgroud)

这可能吗?

Mar*_*Lie 7

快速解决方案

基于您对您真正想要的内容的评论,我相信set标签的"块版本" 是您所需要的,即:

{% set variableName %}
<p>
    Content block with <i>line-breaks</i>
    and {{ whatever }} else you need.
</p>
{% endset %}
Run Code Online (Sandbox Code Playgroud)

 

然后,您需要的任何标记块都可以传递给宏(正如其他人建议的那样):

{% macro input_wrapper(label, name, controls) %}
<div class="control-group">
    <label class="control-label" for="{{ name }}">{{ label }}</label>
    <div class="controls">{{ controls }}</div>
</div>
{% endmacro %}

{% set label, name = "Age", "age" %}
{% set controls %}
<select name="age">
    <option>...</option>
</select>
{% endset %}

{% import _self as inline %}
{{ inline.input_wrapper(label, name, controls) }}
Run Code Online (Sandbox Code Playgroud)

 

真正的解决方案

至于原始问题,我做了一些研究,发现你可以使用setverbatim标签以及template_from_string函数的组合来定义内联模板.

但是,模板的内容取决于您希望如何使用它:

  1. 如果您对使用块语法设置变量感到满意,请使用include 标记函数.
  2. 如果您需要使用,就像在原始示例中一样,您将必须使用embed标记.

 

使用变量和包含标记的示例

{# Defining the template #}
{% set input_wrapper_string %}
{% verbatim %}
<div class="control-group">
    <label class="control-label" for="{{ name }}">{{ label }}</label>
    <div class="controls">{{ controls }}</div>
</div>
{% endverbatim %}
{% endset %}
{% set input_wrapper_tpl = template_from_string(input_wrapper_string) %}

{# Setting the variables #}
{% set label, name = "Age3", "age" %}
{% set controls %}
<select name="age">
    <option>...</option>
</select>
{% endset %}

{# "Rendering" the template #}
{% include input_wrapper_tpl %}
Run Code Online (Sandbox Code Playgroud)

 

使用块和嵌入标记的示例

{# Defining the template #}
{% set input_wrapper_string %}
{% verbatim %}
<div class="control-group">
    <label class="control-label" for="{% block name %}{% endblock %}">{% block label %}{% endblock %}</label>
    <div class="controls">{% block controls %}{% endblock %}</div>
</div>
{% endverbatim %}
{% endset %}
{% set input_wrapper_tpl = template_from_string(input_wrapper_string) %}

{# "Rendering" the template and overriding the blocks #}
{% embed input_wrapper_tpl %}
    {% block label %}Age{% endblock %}
    {% block name  %}age{% endblock %}
    {% block controls %}
    <select name="age">
        <option>...</option>
    </select>
    {% endblock %}
{% endembed %}
Run Code Online (Sandbox Code Playgroud)