MDL-11517 reserved word MOD used in table alias in questions backup code
[moodle-pu.git] / mod / data / tabs.php
blob860bb807cf7ac02f94d9ce41b31a871692ebc7e2
1 <?php // $Id$
2 ///////////////////////////////////////////////////////////////////////////
3 // //
4 // NOTICE OF COPYRIGHT //
5 // //
6 // Moodle - Modular Object-Oriented Dynamic Learning Environment //
7 // http://moodle.org //
8 // //
9 // Copyright (C) 2005 Martin Dougiamas http://dougiamas.com //
10 // //
11 // This program is free software; you can redistribute it and/or modify //
12 // it under the terms of the GNU General Public License as published by //
13 // the Free Software Foundation; either version 2 of the License, or //
14 // (at your option) any later version. //
15 // //
16 // This program is distributed in the hope that it will be useful, //
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
19 // GNU General Public License for more details: //
20 // //
21 // http://www.gnu.org/copyleft/gpl.html //
22 // //
23 ///////////////////////////////////////////////////////////////////////////
24 /// This file to be included so we can assume config.php has already been included.
25 /// We also assume that $user, $course, $currenttab have been set
28 if (empty($currenttab) or empty($data) or empty($course)) {
29 error('You cannot call this script in that way');
32 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
34 $inactive = NULL;
35 $activetwo = NULL;
36 $tabs = array();
37 $row = array();
39 $row[] = new tabobject('list', $CFG->wwwroot.'/mod/data/view.php?d='.$data->id, get_string('list','data'));
41 //Add an advanced search tab.
42 $row[] = new tabobject('asearch', $CFG->wwwroot.'/mod/data/view.php?d='.$data->id.'&amp;mode=asearch', get_string('advancedsearch', 'data'));
44 if (isset($record)) {
45 $row[] = new tabobject('single', $CFG->wwwroot.'/mod/data/view.php?d='.$data->id.'&amp;rid='.$record->id, get_string('single','data'));
46 } else {
47 $row[] = new tabobject('single', $CFG->wwwroot.'/mod/data/view.php?d='.$data->id.'&amp;mode=single', get_string('single','data'));
50 if (isloggedin()) {
51 if (data_user_can_add_entry($data, $currentgroup, $groupmode)) { // took out participation list here!
52 $addstring = empty($editentry) ? get_string('add', 'data') : get_string('editentry', 'data');
53 $row[] = new tabobject('add', $CFG->wwwroot.'/mod/data/edit.php?d='.$data->id, $addstring);
55 if (has_capability('mod/data:managetemplates', $context)) {
56 if ($currenttab == 'list') {
57 $defaultemplate = 'listtemplate';
58 } else if ($currenttab == 'add') {
59 $defaultemplate = 'addtemplate';
60 } else if ($currenttab == 'asearch') {
61 $defaultemplate = 'asearchtemplate';
62 } else {
63 $defaultemplate = 'singletemplate';
66 $row[] = new tabobject('templates', $CFG->wwwroot.'/mod/data/templates.php?d='.$data->id.'&amp;mode='.$defaultemplate,
67 get_string('templates','data'));
68 $row[] = new tabobject('fields', $CFG->wwwroot.'/mod/data/field.php?d='.$data->id,
69 get_string('fields','data'));
70 $row[] = new tabobject('presets', $CFG->wwwroot.'/mod/data/preset.php?d='.$data->id,
71 get_string('presets', 'data'));
75 $tabs[] = $row;
77 if ($currenttab == 'templates' and isset($mode)) {
79 $inactive = array();
80 $inactive[] = 'templates';
81 $templatelist = array ('listtemplate', 'asearchtemplate' , 'singletemplate', 'addtemplate', 'rsstemplate', 'csstemplate', 'jstemplate');
83 $row = array();
84 $currenttab ='';
85 foreach ($templatelist as $template) {
86 $row[] = new tabobject($template, "templates.php?d=$data->id&amp;mode=$template", get_string($template, 'data'));
87 if ($template == $mode) {
88 $currenttab = $template;
91 if ($currenttab == '') {
92 $currenttab = $mode = 'singletemplate';
94 $tabs[] = $row;
95 $activetwo = array('templates');
98 /// Print out the tabs and continue!
99 print_tabs($tabs, $currenttab, $inactive, $activetwo);