mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
28 lines
622 B
PHP
28 lines
622 B
PHP
<?php // $Id$
|
|
/**
|
|
* Sets up the tabs used by the question bank editing page
|
|
*
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
|
* @package questionbank
|
|
*/
|
|
|
|
/// This file to be included so we can assume config.php has already been included.
|
|
|
|
if (!isset($currenttab)) {
|
|
$currenttab = '';
|
|
}
|
|
if (!isset($COURSE)) {
|
|
print_error('invalidcourse');
|
|
}
|
|
|
|
$tabs = array();
|
|
$inactive = array();
|
|
$row = array();
|
|
questionbank_navigation_tabs($row, $contexts, $thispageurl->get_query_string());
|
|
$tabs[] = $row;
|
|
|
|
print_tabs($tabs, $currenttab, array());
|
|
|
|
|
|
?>
|