mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
[ticket/15664] Add support for multi step processes
PHPBB3-15664
This commit is contained in:
committed by
Marc Alexander
parent
3e6fd7e8fd
commit
4da589acba
@@ -1,6 +1,6 @@
|
|||||||
{% for action in enabled.actions %}
|
{% 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 %} | {% endif %}
|
<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 }}" data-refresh="true">{{ action.L_ACTION }}</a>{% if not action.S_LAST_ROW %} | {% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% for action in disabled.actions %}
|
{% 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 %} | {% endif %}
|
<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 }}" data-refresh="true">{{ action.L_ACTION }}</a>{% if not action.S_LAST_ROW %} | {% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
@@ -258,7 +258,7 @@ function set_actions(container, actions) {
|
|||||||
// ajaxify this action as well
|
// ajaxify this action as well
|
||||||
phpbb.ajaxify({
|
phpbb.ajaxify({
|
||||||
selector: a,
|
selector: a,
|
||||||
refresh: false,
|
refresh: true,
|
||||||
callback: actions[i].ACTION_AJAX
|
callback: actions[i].ACTION_AJAX
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user