aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/acp_ext_actions.html
diff options
context:
space:
mode:
authorJakub Senko <jakubsenko@gmail.com>2018-05-14 21:14:41 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-05-09 18:20:41 +0200
commit3e6fd7e8fd419ed999fe38ee48519dae98988081 (patch)
tree5f418acfd278e8f4ab4a87a75fc887f66db84e42 /phpBB/adm/style/acp_ext_actions.html
parentdc9b1c37b163a46b46b79f5b968408ede97e45e8 (diff)
downloadforums-3e6fd7e8fd419ed999fe38ee48519dae98988081.tar
forums-3e6fd7e8fd419ed999fe38ee48519dae98988081.tar.gz
forums-3e6fd7e8fd419ed999fe38ee48519dae98988081.tar.bz2
forums-3e6fd7e8fd419ed999fe38ee48519dae98988081.tar.xz
forums-3e6fd7e8fd419ed999fe38ee48519dae98988081.zip
[ticket/15664] Ajaxify ext actions in ACP
PHPBB3-15664
Diffstat (limited to 'phpBB/adm/style/acp_ext_actions.html')
-rw-r--r--phpBB/adm/style/acp_ext_actions.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/adm/style/acp_ext_actions.html b/phpBB/adm/style/acp_ext_actions.html
new file mode 100644
index 0000000000..b9c2febbe5
--- /dev/null
+++ b/phpBB/adm/style/acp_ext_actions.html
@@ -0,0 +1,6 @@
+{% for action in enabled.actions %}
+<a href="{{ action.U_ACTION }}"{% if action.L_ACTION_EXPLAIN %} title="{{ action.L_ACTION_EXPLAIN }}"{% endif %}{% if action.COLOR %} style="color: {{ action.COLOR }};"{% endif %} data-ajax="{{ action.ACTION_AJAX }}">{{ action.L_ACTION }}</a>{% if not action.S_LAST_ROW %}&nbsp;|&nbsp;{% endif %}
+{% endfor %}
+{% for action in disabled.actions %}
+<a href="{{ action.U_ACTION }}"{% if action.L_ACTION_EXPLAIN %} title="{{ action.L_ACTION_EXPLAIN }}"{% endif %}{% if action.COLOR %} style="color: {{ action.COLOR }};"{% endif %} data-ajax="{{ action.ACTION_AJAX }}">{{ action.L_ACTION }}</a>{% if not action.S_LAST_ROW %}&nbsp;|&nbsp;{% endif %}
+{% endfor %} \ No newline at end of file