Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
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
 * Payment gateway admin setting.
19
 *
20
 * @package    core_admin
21
 * @copyright  2020 Shamim Rezaie <shamim@moodle.com>
22
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23
 */
24
 
25
namespace core_admin\local\settings;
26
 
27
/**
28
 * Generic class for managing plugins in a table that allows re-ordering and enable/disable of each plugin.
29
 */
30
class manage_payment_gateway_plugins extends \admin_setting_manage_plugins {
31
    /**
32
     * Get the admin settings section title (use get_string).
33
     *
34
     * @return string
35
     */
36
    public function get_section_title() {
37
        return get_string('type_paygw_plural', 'plugin');
38
    }
39
 
40
    /**
41
     * Get the type of plugin to manage.
42
     *
43
     * @return string
44
     */
45
    public function get_plugin_type() {
46
        return 'paygw';
47
    }
48
 
49
    /**
50
     * Get the name of the second column.
51
     *
52
     * @return string
53
     */
54
    public function get_info_column_name() {
55
        return get_string('supportedcurrencies', 'core_payment');
56
    }
57
 
58
    /**
59
     * Get the type of plugin to manage.
60
     *
61
     * @param plugininfo The plugin info class.
62
     * @return string
63
     */
64
    public function get_info_column($plugininfo) {
65
        $codes = $plugininfo->get_supported_currencies();
66
 
67
        $currencies = [];
68
        foreach ($codes as $c) {
69
            $currencies[$c] = new \lang_string($c, 'core_currencies');
70
        }
71
 
72
        return implode(get_string('listsep', 'langconfig') . ' ', $currencies);
73
    }
74
}