Webform module and config export

This commit is contained in:
Rob Davies 2017-03-16 15:29:07 +00:00
parent 3e6a5cbed2
commit 0e15467384
1040 changed files with 117682 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{#
/**
* @file
* Default theme implementation of a Webform message container.
*
* Available variables:
* - attributes: HTML attributes for the containing element.
* - message: The rendered status_messages elements.
* - has_parent: A flag to indicate that the container has one or more parent
* containers.
* - closed: A flag to indicate that the message has been been closed and should
* not be displayed.
*
* @see template_preprocess_webform_message()
*
* @ingroup themeable
*/
#}
{%
set classes = [
has_parent ? 'js-form-wrapper',
has_parent ? 'form-wrapper',
]
%}
{% if not closed %}
<div{{ attributes.addClass(classes) }}>{{ message }}</div>
{% endif %}