dongqintong8972 2016-04-14 02:33
浏览 64
已采纳

Twig / Symfony表单模板语法

I'm trying to modify someone else's website setup (a Craft CMS with a Laravel plugin) but I can't decipher the syntax of this Twig form, I was hoping someone more familiar with Twig/Symfony form templating could tell me what's going on or point me to the right documentation.

Specifically, I have a variable I want to render as a placeholder in an input. So {{ myvariable }} should be <input type="text" placeholder="{{ myvariable }}" ..., but I'm unfamiliar with how the inputs are being rendered.

Here's what's in the Twig template:

{% include "dir/content_type/_field" with {
   control: { handle: 'location_address_1', value: 'address_1'},
    element: content_type,
    errors: errors is defined ? errors : null
 } only %}

The _field I assume is a nearby html template, which has:

{% set field = craft.fields.getFieldbyHandle(control['handle']) %}
{% set fieldtype = craft.fields.populateFieldType(field, element) %}
{% set value = element ? element[control['value']] : null %}
{% set required = required is defined ? required : false %}
{% set input = fieldtype.getInputHtml(field.handle, value) %}
{% set label = no_label is defined and no_label ? '' : field.name|t|e%}
{% set errors = errors is defined and errors[control['value']] is defined ?     errors[control['value']] : null %}
{% include "_includes/forms/field" with {
  label: label,
  id: field.handle,
  errors: errors,
  input: input,
  required: required
} only %}

Any insight is appreciated.

  • 写回答

1条回答 默认 最新

  • douzhulv1699 2016-04-14 08:13
    关注

    The _field template is setting some parameters for the field based on the initial include call. The _field processes some of those parameters and then calls the _includes/forms/field with the processed values and field html in the input variable.

    craft.fields.getFieldbyHandle() gets your field object. The from that object It looks like fieldtype.getInputHtml(field.handle, value)` is generating the actual HTML for the input. So you need to find where getInputHtml is defined and pass through your placeholder to there. Change that function to build the html with you placeholder attribute.

    Something like so

    final template

    {% include "dir/content_type/_field" with {
        control: { handle: 'location_address_1', value: 'address_1', placeholder: "[Place holder value]"},
        element: content_type,
        errors: errors is defined ? errors : null     
     } only %}
    

    _field

    ...
    {% set input = fieldtype.getInputHtml(field.handle, value, control['placeholder']) %}
    

    getInputHTML(handle,value, placeholder)

    <input type="text" placeholder="{{ placeholder }}" ...
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求chat4.0解答一道线性规划题,用lingo编程运行,第一问要求写出数学模型和lingo语言编程模型,第二问第三问解答就行,我的ddl要到了谁来求了
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥15 maple软件,用solve求反函数出现rootof,怎么办?
  • ¥65 汇编语言除法溢出问题
  • ¥15 Visual Studio问题
  • ¥20 求一个html代码,有偿
  • ¥100 关于使用MATLAB中copularnd函数的问题
  • ¥20 在虚拟机的pycharm上
  • ¥15 jupyterthemes 设置完毕后没有效果