mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 04:30:15 +01:00
MDL-59382 form: fix name in template context
This commit is contained in:
parent
a50768b97f
commit
6973baa31e
@ -78,6 +78,7 @@ trait templatable_form_element {
|
||||
$otherattributes[] = $attr . '="' . s($value) . '"';
|
||||
}
|
||||
}
|
||||
$context['name'] = $context['name'] ?: $this->getName();
|
||||
$context['extraclasses'] = $extraclasses;
|
||||
$context['type'] = $this->getType();
|
||||
$context['attributes'] = implode(' ', $otherattributes);
|
||||
|
@ -4,7 +4,7 @@
|
||||
{{#required}}<abbr class="initialism text-danger" title="{{#str}}required{{/str}}">{{#pix}}req, core, {{#str}}required{{/str}}{{/pix}}</abbr>{{/required}}
|
||||
{{#advanced}}<abbr class="initialism text-info" title="{{#str}}advanced{{/str}}">!</abbr>{{/advanced}}
|
||||
</label>
|
||||
<span data-fieldtype="{{element.type}}">
|
||||
<span id="{{element.id}}" data-fieldtype="{{element.type}}">
|
||||
{{$ element }}
|
||||
<!-- Element goes here -->
|
||||
{{/ element }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user