50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Mobile output class for subsection.
|
|
*
|
|
* @package mod_subsection
|
|
* @copyright 2024 Dani Palou <dani@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
namespace mod_subsection\output;
|
|
|
|
/**
|
|
* Mobile output class for subsection.
|
|
*
|
|
* @copyright 2024 Dani Palou <dani@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class mobile {
|
|
|
|
/**
|
|
* Returns the JS code to support mod_subsection in versions of the app previous to 4.5.
|
|
*
|
|
* @param array $args Arguments from tool_mobile_get_content WS
|
|
* @return array HTML, javascript and otherdata
|
|
*/
|
|
public static function mobile_init($args) {
|
|
global $CFG;
|
|
|
|
return [
|
|
'templates' => [],
|
|
'javascript' => file_get_contents($CFG->dirroot . '/mod/subsection/mobileapp/init.js'),
|
|
];
|
|
}
|
|
}
|