Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
|
|
@ -1,21 +1,21 @@
|
|||
{#
|
||||
/**
|
||||
* @file
|
||||
* Default theme implementation for a summary of a form remote posts handler.
|
||||
* Default theme implementation for a summary of a webform 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.
|
||||
* - settings: The current configuration for this remote post handler.
|
||||
* - handler: The remote post handler.
|
||||
*
|
||||
* @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/>
|
||||
{% if settings.debug %}<b class="color-error">{{ 'Debugging is enabled'|t }}</b><br />{% endif %}
|
||||
<b>{{ 'Completed URL:'|t }}</b> {{ settings.completed_url }}<br />
|
||||
{% if settings.updated_url %}<b>{{ 'Updated URL:'|t }}</b> {{ settings.updated_url }}<br />{% endif %}
|
||||
{% if settings.deleted_url %}<b>{{ 'Deleted URL:'|t }}</b> {{ settings.deleted_url }}<br />{% endif %}
|
||||
{% if settings.draft_url %}<b>{{ 'Draft URL:'|t }}</b> {{ settings.draft_url }}<br />{% endif %}
|
||||
{% if settings.converted_url %}<b>{{ 'Converted URL:'|t }}</b> {{ settings.converted_url }}<br />{% endif %}
|
||||
<b>{{ 'Method:'|t }}</b> {{ settings.method }}<br />
|
||||
{% if settings.method == 'POST' %}<b>{{ 'Type:'|t }}</b> {{ settings.type }}<br />{% endif %}
|
||||
{% if settings.message or settings.messages %}<b>{{ 'Response message:'|t }}</b> {{ 'Yes'|t }}<br/>{% endif %}
|
||||
|
|
|
|||
Reference in a new issue