. namespace local_moodleappbehat\output; defined('MOODLE_INTERNAL') || die(); class mobile { /** * Render index page. * * @return array View data. */ public static function view_index() { global $OUTPUT; $templates = [ [ 'id' => 'main', 'html' => $OUTPUT->render_from_template('local_moodleappbehat/mobile', []), ], ]; $otherdata = ['answer' => null]; $javascript = file_get_contents(__DIR__ . '/../../js/mobile/index.js'); return compact('templates', 'otherdata', 'javascript'); } }