This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/web/modules/contrib/webform/templates/webform-handler-remote-post-summary.html.twig
2017-03-16 15:29:07 +00:00

22 lines
824 B
Twig

{#
/**
* @file
* Default theme implementation for a summary of a form remote posts handler.
*
* Available variables:
* - settings: The current configuration for this remote post handler:
* - handler: The handler information, including:
* - id: The handler plugin id.
* - handler_id: The handler id.
* - label: The handler label.
* - description: The handler description.
*
* @ingroup themeable
*/
#}
{% if settings.debug %}<b class="color-error">{{ 'Debugging is enabled'|t }}</b><br/>{% endif %}
<b>{{ 'Insert URL:'|t }}</b> {{ settings.insert_url }}<br/>
{% if settings.update_url %}<b>{{ 'Update URL:'|t }}</b> {{ settings.update_url }}<br/>{% endif %}
{% if settings.delete_url %}<b>{{ 'Delete URL:'|t }}</b> {{ settings.delete_url }}<br/>{% endif %}
<b>{{ 'Type:'|t }}</b> {{ settings.type }}<br/>