1 |
efrain |
1 |
{{!
|
|
|
2 |
This file is part of Moodle - http://moodle.org/
|
|
|
3 |
|
|
|
4 |
Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
it under the terms of the GNU General Public License as published by
|
|
|
6 |
the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
(at your option) any later version.
|
|
|
8 |
|
|
|
9 |
Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
GNU General Public License for more details.
|
|
|
13 |
|
|
|
14 |
You should have received a copy of the GNU General Public License
|
|
|
15 |
along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
}}
|
|
|
17 |
{{!
|
|
|
18 |
@template core_payment/gateway
|
|
|
19 |
|
|
|
20 |
This template will render the gateway option in the gateway selector modal.
|
|
|
21 |
|
|
|
22 |
Classes required for JS:
|
|
|
23 |
* none
|
|
|
24 |
|
|
|
25 |
Data attributes required for JS:
|
|
|
26 |
* none
|
|
|
27 |
|
|
|
28 |
Context variables required for this template:
|
|
|
29 |
* shortname
|
|
|
30 |
* name
|
|
|
31 |
* description
|
|
|
32 |
* surcharge
|
|
|
33 |
* image
|
|
|
34 |
|
|
|
35 |
Example context (json):
|
|
|
36 |
{
|
|
|
37 |
"shortname": "paypal",
|
|
|
38 |
"name": "PayPal",
|
|
|
39 |
"description": "A description for PayPal.",
|
|
|
40 |
"surcharge": "3"
|
|
|
41 |
}
|
|
|
42 |
|
|
|
43 |
}}
|
|
|
44 |
<div class="custom-control custom-radio {{shortname}}">
|
|
|
45 |
<input class="custom-control-input" type="radio" name="payby" id="id-payby-{{uniqid}}-{{shortname}}" data-cost="{{cost}}" data-surcharge="{{surcharge}}" value="{{shortname}}" {{#checked}} checked="checked" {{/checked}} />
|
|
|
46 |
<label class="custom-control-label bg-light border p-3 my-3" for="id-payby-{{uniqid}}-{{shortname}}">
|
|
|
47 |
<p class="h3">{{name}}</p>
|
|
|
48 |
<p class="content mb-2">{{{description}}}</p>
|
|
|
49 |
{{#pix}} img, paygw_{{shortname}} {{/pix}}
|
|
|
50 |
</label>
|
|
|
51 |
</div>
|