. namespace local_moodlemobileapp\output; defined('MOODLE_INTERNAL') || die(); class mobile { /** * Render index page. * * @return array View data. */ public static function view_index() { $templates = [ [ 'id' => 'main', 'html' => '

Hello!

', ], ]; $javascript = file_get_contents(__DIR__ . '/../../js/mobile/index.js'); return compact('templates', 'javascript'); } }