-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtabs.php
54 lines (45 loc) · 1.97 KB
/
tabs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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/>.
/**
* Sets up the tabs at the top of the module view page for teachers.
*
* This file was adapted from the mod/lesson/tabs.php
*
* @package mod_@@newmodule@@
* @copyright 2014 Justin Hunt {@link http://poodll.com}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or late
*/
defined('MOODLE_INTERNAL') || die();
/// This file to be included so we can assume config.php has already been included.
global $DB;
if (empty($moduleinstance)) {
print_error('cannotcallscript');
}
if (!isset($currenttab)) {
$currenttab = '';
}
if (!isset($cm)) {
$cm = get_coursemodule_from_instance(MOD_NEWMODULE_MODNAME, $moduleinstance->id);
$context = context_module::instance($cm->id);
}
if (!isset($course)) {
$course = $DB->get_record('course', array('id' => $moduleinstance->course));
}
$tabs = $row = $inactive = $activated = array();
$row[] = new tabobject('view', "$CFG->wwwroot/mod/@@newmodule@@/view.php?id=$cm->id", get_string('view', MOD_NEWMODULE_LANG), get_string('preview', MOD_NEWMODULE_LANG, format_string($moduleinstance->name)));
$row[] = new tabobject('reports', "$CFG->wwwroot/mod/@@newmodule@@/reports.php?id=$cm->id", get_string('reports', MOD_NEWMODULE_LANG), get_string('viewreports', MOD_NEWMODULE_LANG));
$tabs[] = $row;
print_tabs($tabs, $currenttab, $inactive, $activated);