moodle/mod/quiz/tabs.php

121 lines
4.0 KiB
PHP
Raw Normal View History

<?php // $Id$
/**
* Sets up the tabs used by the quiz pages based on the users capabilites.
*
* @author Tim Hunt and others.
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
* @package quiz
*/
global $DB;
if (empty($quiz)) {
if (empty($attemptobj)) {
print_error('cannotcallscript');
}
$quiz = $attemptobj->get_quiz();
$cm = $attemptobj->get_cm();
}
if (!isset($currenttab)) {
$currenttab = '';
}
if (!isset($cm)) {
$cm = get_coursemodule_from_instance('quiz', $quiz->id);
}
2007-08-09 21:51:09 +00:00
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
2007-08-09 21:51:09 +00:00
if (!isset($contexts)){
$contexts = new question_edit_contexts($context);
}
$tabs = array();
$row = array();
$inactive = array();
$activated = array();
$stredit=get_string('edit');
if (has_capability('mod/quiz:view', $context)) {
$row[] = new tabobject('info', "$CFG->wwwroot/mod/quiz/view.php?id=$cm->id", get_string('info', 'quiz'));
}
if (has_capability('mod/quiz:viewreports', $context)) {
2007-09-04 13:28:50 +00:00
$row[] = new tabobject('reports', "$CFG->wwwroot/mod/quiz/report.php?q=$quiz->id", get_string('results', 'quiz'));
}
if (has_capability('mod/quiz:preview', $context)) {
$strpreview = get_string('preview', 'quiz');
$row[] = new tabobject('preview', "$CFG->wwwroot/mod/quiz/startattempt.php?cmid=$cm->id&amp;sesskey=" . sesskey(), "<img src=\"$CFG->pixpath/t/preview.gif\" class=\"iconsmall\" alt=\"$strpreview\" /> $strpreview", $strpreview);
}
if (has_capability('mod/quiz:manage', $context)) {
$row[] = new tabobject('edit', "$CFG->wwwroot/mod/quiz/edit.php?cmid=$cm->id", "<img src=\"$CFG->pixpath/t/edit.gif\" class=\"iconsmall\" alt=\"$stredit\" /> $stredit",$stredit);
}
2007-01-26 06:59:16 +00:00
if ($currenttab == 'info' && count($row) == 1) {
// Don't show only an info tab (e.g. to students).
} else {
$tabs[] = $row;
}
if ($currenttab == 'reports' and isset($mode)) {
$activated[] = 'reports';
2007-09-04 13:28:50 +00:00
// Standard reports we want to show first.
$reportrs = $DB->get_recordset('quiz_report', null, 'displayorder DESC', 'id, name');
// Reports that are restricted by capability.
$reportrestrictions = array(
'regrade' => 'mod/quiz:grade',
'grading' => 'mod/quiz:grade'
);
$reportdirs = get_list_of_plugins("mod/quiz/report");
//order the reports tab in descending order of displayorder
$reportlist = array();
foreach ($reportrs as $key => $rs) {
if (in_array($rs->name, $reportdirs)) {
$reportlist[]=$rs->name;
}
}
//add any other reports on the end
foreach ($reportdirs as $report) {
if (!in_array($report, $reportlist)) {
$reportlist[]=$report;
}
}
$row = array();
$currenttab = '';
foreach ($reportlist as $report) {
if (!isset($reportrestrictions[$report]) || has_capability($reportrestrictions[$report], $context)) {
$row[] = new tabobject($report, "$CFG->wwwroot/mod/quiz/report.php?q=$quiz->id&amp;mode=$report",
get_string($report, 'quiz_'.$report));
if ($report == $mode) {
$currenttab = $report;
}
}
}
$tabs[] = $row;
}
if ($currenttab == 'edit' and isset($mode)) {
$activated[] = 'edit';
$row = array();
$currenttab = $mode;
2006-03-01 09:30:21 +00:00
$strquiz = get_string('modulename', 'quiz');
$streditingquiz = get_string("editinga", "moodle", $strquiz);
2007-09-04 13:28:50 +00:00
if (has_capability('mod/quiz:manage', $context) && $contexts->have_one_edit_tab_cap('editq')) {
//TODO: ensure that removing get_query_string here won't hurt
$row[] = new tabobject('editq', "$CFG->wwwroot/mod/quiz/edit.php?cmid=$cm->id", $stredit, $streditingquiz);
$row[] = new tabobject('reorder', "$CFG->wwwroot/mod/quiz/edit.php?reordertool=1&amp;cmid=$cm->id", get_string('orderandpaging','quiz'), $streditingquiz);
2007-08-09 21:51:09 +00:00
}
//questionbank_navigation_tabs($row, $contexts, $thispageurl->get_query_string());
$tabs[] = $row;
2007-09-04 13:28:50 +00:00
}
if (!$quiz->questions) {
$inactive += array('info', 'reports', 'preview');
}
print_tabs($tabs, $currenttab, $inactive, $activated);
?>