PluginProbe
HyperPay Payments / trunk
HyperPay Payments vtrunk
6.6.0 trunk 1.7 1.8 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.1.0 2.2.0 2.3.0 2.3.1 2.3.2 2.3.3 3.0.0 3.0.5 4.0.0 4.0.2 All 34 releases
hyperpay-gateways / src / assets / templates / settings.html

settings.html in HyperPay Payments trunk, at src/assets/templates/settings.html

13 lines 532 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <form method="post" style="margin: 15px;">
2 <h1>Enabled Gatewayes</h1>
3 {% for gateway in files %}
4 <div>
5 <input {% if gateway in selected %} checked {% endif %} name='gateways[]' value="{{ gateway|escape('html_attr') }}" type='checkbox' id='{{ gateway|escape('html_attr') }}'>
6 <label for='{{gateway|escape('html_attr')}}'>{{gateway|escape('html')}}</label>
7 </div>
8 {% endfor %}
9
10 <?php wp_nonce_field( 'hyperpay-options'); ?>
11
12 <input style="margin-top: 10px;" type="submit">
13 </form>