Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/monara/public_html/test.athavaneng.com/themes.php on line 99
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 226
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 227
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 228
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 229
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 230
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 231
.
/**
* 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();