calendar/lib: calendar_set_filters() use pre-fetched context and course recs
[moodle-pu.git] / group / tabs.php
blob59531849c0ca94ff9d7461cbf9cd9dc5328dd13b
1 <?php // $Id$
2 $row = $tabs = array();
3 $row[] = new tabobject('groups',
4 $CFG->wwwroot.'/group/index.php?id='.$courseid,
5 get_string('groups'));
7 $row[] = new tabobject('groupings',
8 $CFG->wwwroot.'/group/groupings.php?id='.$courseid,
9 get_string('groupings', 'group'));
11 $tabs[] = $row;
12 echo '<div class="groupdisplay">';
13 print_tabs($tabs, $currenttab);
14 echo '</div>';