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
 * Moodle app subscription information for the current site.
19
 *
20
 * @package   tool_mobile
21
 * @copyright 2020 Moodle Pty Ltd
22
 * @author    <juan@moodle.com>
23
 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24
 */
25
 
26
require_once(__DIR__ . '/../../../config.php');
27
require_once($CFG->libdir . '/adminlib.php');
28
 
29
admin_externalpage_setup('mobileappsubscription', '', null, '');
30
 
31
// Check Mobile web services enabled. This page should not be linked in that case, but avoid just in case.
32
if (!$CFG->enablemobilewebservice) {
33
    throw new \moodle_exception('enablewsdescription', 'webservice');
34
}
35
// Check is this feature is globaly disabled.
36
if (!empty($CFG->disablemobileappsubscription)) {
37
    throw new \moodle_exception('disabled', 'admin');
38
}
39
 
40
$subscriptiondata = \tool_mobile\api::get_subscription_information();
41
 
42
echo $OUTPUT->header();
43
 
44
if (empty($subscriptiondata)) {
45
    echo $OUTPUT->notification(get_string('subscriptionerrorrequest', 'tool_mobile'), \core\output\notification::NOTIFY_ERROR);
46
} else {
47
    $templatable = new \tool_mobile\output\subscription($subscriptiondata);
48
    echo $PAGE->get_renderer('tool_mobile')->render($templatable);
49
}
50
 
51
echo $OUTPUT->footer();