Webform module and config export
This commit is contained in:
parent
3e6a5cbed2
commit
0e15467384
1040 changed files with 117682 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
|||
{#
|
||||
/**
|
||||
* @file
|
||||
* Default theme implementation for a form base container as text.
|
||||
*
|
||||
* Available variables:
|
||||
* - element: The form element.
|
||||
* - title: The label for the container.
|
||||
* - value: The content for the container.
|
||||
* - options Associative array of options for element.
|
||||
* - email: Flag to determine if element is for an email.
|
||||
*/
|
||||
#}
|
||||
|
||||
{% if title %}{{ title|upper }}
|
||||
{% for i in 1..title|length %}-{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{{ value }}
|
||||
Reference in a new issue