-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathhelp.php
More file actions
22 lines (16 loc) · 687 Bytes
/
help.php
File metadata and controls
22 lines (16 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
include_once realpath( dirname( __FILE__ ).DIRECTORY_SEPARATOR ).DIRECTORY_SEPARATOR."common.php";
global $PAGE, $COURSE, $OUTPUT;
$url = new moodle_url('/blocks/notifications/help.php', array('course'=>$COURSE->id));
$PAGE->set_url($url);
$context = get_context_instance(CONTEXT_SYSTEM);
$PAGE->set_context($context);
echo $OUTPUT->header();
// print title
echo $OUTPUT->heading(get_string( 'help_title', 'block_notifications' ), 3, 'main');
echo $OUTPUT->box_start('generalbox boxaligncenter');
echo '<p>'.get_string( 'set_mobile_number_instructions', 'block_notifications' ).'</p>';
echo $OUTPUT->box_end();
echo $OUTPUT->close_window_button();
echo $OUTPUT->footer();
?>