mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/15664] Add support for multi step processes
PHPBB3-15664
This commit is contained in:
parent
2b66608023
commit
5cf88ea871
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue