more extension points for plugins (#1904)

This commit is contained in:
Kevin Papst
2020-08-21 19:38:17 +02:00
committed by GitHub
parent 5c79e68c77
commit ede21fe46a
8 changed files with 26 additions and 14 deletions

View File

@@ -47,7 +47,7 @@
{{ widgets.page_actions(actions) }}
{% endmacro %}
{% macro invoice(invoice) %}
{% macro invoice(invoice, view, options) %}
{% import "macros/widgets.html.twig" as widgets %}
{% set actions = {} %}
@@ -63,8 +63,16 @@
{% set actions = actions|merge({'trash': {'url': path('admin_invoice_delete', {'id' : invoice.id}), 'class': 'confirmation-link', 'attr': {'data-question': 'confirm.delete'}}}) %}
{% endif %}
{% if options.back is defined %}
{% set actions = actions|merge({'back': options.back}) %}
{% endif %}
{% set event = trigger('actions.invoice', {'actions': actions, 'invoice': invoice}) %}
{{ widgets.table_actions(actions) }}
{% if view == 'index' or view == 'custom' %}
{{ widgets.table_actions(event.payload.actions) }}
{% else %}
{{ widgets.entity_actions(event.payload.actions) }}
{% endif %}
{% endmacro %}
{% macro invoice_listing(view) %}

View File

@@ -42,7 +42,7 @@
<td class="{{ tables.data_table_column_class(tableName, columns, 'status') }}">{{ macros.invoice_status(entry) }}</td>
<td class="{{ tables.data_table_column_class(tableName, columns, 'tax') }}">{{ entry.tax|money(entry.currency) }}</td>
<td class="{{ tables.data_table_column_class(tableName, columns, 'total_rate') }}">{{ entry.total|money(entry.currency) }}</td>
<td class="{{ tables.data_table_column_class(tableName, columns, 'actions') }}">{{ actions.invoice(entry) }}</td>
<td class="{{ tables.data_table_column_class(tableName, columns, 'actions') }}">{{ actions.invoice(entry, 'index') }}</td>
</tr>
{% endfor %}
{{ tables.data_table_footer(entries, 'admin_invoice_list') }}