. /** * Moodle app subscription information for the current site. * * @package tool_mobile * @copyright 2020 Moodle Pty Ltd * @author * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once(__DIR__ . '/../../../config.php'); require_once($CFG->libdir . '/adminlib.php'); admin_externalpage_setup('mobileappsubscription', '', null, ''); // Check Mobile web services enabled. This page should not be linked in that case, but avoid just in case. if (!$CFG->enablemobilewebservice) { throw new \moodle_exception('enablewsdescription', 'webservice'); } // Check is this feature is globaly disabled. if (!empty($CFG->disablemobileappsubscription)) { throw new \moodle_exception('disabled', 'admin'); } $subscriptiondata = \tool_mobile\api::get_subscription_information(); echo $OUTPUT->header(); if (empty($subscriptiondata)) { echo $OUTPUT->notification(get_string('subscriptionerrorrequest', 'tool_mobile'), \core\output\notification::NOTIFY_ERROR); } else { $templatable = new \tool_mobile\output\subscription($subscriptiondata); echo $PAGE->get_renderer('tool_mobile')->render($templatable); } echo $OUTPUT->footer();