Last active
August 10, 2016 23:59
-
-
Save dcai/be1f8bc8962f9a791b59 to your computer and use it in GitHub Desktop.
minimal moodle page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once(dirname(dirname(__DIR__)).'/config.php'); | |
require_login(); | |
$context = context_system::instance(); | |
$url = new moodle_url('/blocks/gcal/mappings.php'); | |
$PAGE->set_url($url); | |
$PAGE->set_context($context); | |
echo $OUTPUT->header(); | |
echo $OUTPUT->heading('mapping', 2); | |
echo $OUTPUT->footer(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment