forked from justinhunt/moodle-mod_solo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabs.php
85 lines (72 loc) · 3.34 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?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_solo
* @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();
use \mod_solo\constants;
/// 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(constants::M_MODNAME, $moduleinstance->id);
$context = context_module::instance($cm->id);
}
if (!isset($course)) {
$course = $DB->get_record('course', array('id' => $moduleinstance->course));
}
$userid = optional_param('userid', 0, PARAM_INT);
$config = get_config(constants::M_COMPONENT);
$tabs = $row = $inactive = $activated = array();
$row[] = new tabobject('attempts', "$CFG->wwwroot/mod/solo/view.php?id=$cm->id", get_string('attempts', constants::M_COMPONENT), get_string('manageattempts', constants::M_COMPONENT));
if(has_capability('mod/solo:grades',$context)) {
$row[] = new tabobject('grades', "$CFG->wwwroot/mod/solo/grades.php?id=$cm->id",
get_string('grades', constants::M_COMPONENT),
get_string('managegrades', constants::M_COMPONENT));
}
if(has_capability('mod/solo:viewreports',$context)) {
$row[] = new tabobject('reports', "$CFG->wwwroot/mod/solo/reports.php?id=$cm->id",
get_string('reports', constants::M_COMPONENT), get_string('viewreports', constants::M_COMPONENT));
}
if(has_capability('mod/solo:grades',$context) && stristr($this->page->url, 'gradesubmissions') !== false) {
$row[] = new tabobject('gradesubmissions', "$CFG->wwwroot/mod/solo/gradesubmissions.php?id=$cm->id&userid=$userid",
get_string('gradesubmissions', constants::M_COMPONENT),
get_string('managegrades', constants::M_COMPONENT));
}
if(has_capability('mod/solo:manage',$context) && $config->enablesetuptab) {
$row[] = new tabobject('setup', "$CFG->wwwroot/mod/solo/setup.php?id=$cm->id",
get_string('setup', constants::M_COMPONENT), get_string('setup', constants::M_COMPONENT));
}
/*
* Uncomment this to show a secret extra tab which makes it easy to create lots of demo data for testing
if(has_capability('mod/solo:viewreports',$context)) {
$row[] = new tabobject('developer', "$CFG->wwwroot/mod/solo/developer.php?id=$cm->id",
get_string('developer', constants::M_COMPONENT), get_string('developer', constants::M_COMPONENT));
}
*/
$tabs[] = $row;
print_tabs($tabs, $currenttab, $inactive, $activated);