| [ Index ] |
PHP Cross Reference of Moodle 1.9.3 [Build 15-Oct-2008] |
[Summary view] [Print] [Text view]
1 <?php // $Id: tabs.php,v 1.2.2.1 2007/11/19 20:27:50 skodak Exp $ 2 $row = $tabs = array(); 3 $row[] = new tabobject('groups', 4 $CFG->wwwroot.'/group/index.php?id='.$courseid, 5 get_string('groups')); 6 7 if (!empty($CFG->enablegroupings)) { 8 $row[] = new tabobject('groupings', 9 $CFG->wwwroot.'/group/groupings.php?id='.$courseid, 10 get_string('groupings', 'group')); 11 } 12 13 $row[] = new tabobject('overview', 14 $CFG->wwwroot.'/group/overview.php?id='.$courseid, 15 get_string('overview', 'group')); 16 $tabs[] = $row; 17 echo '<div class="groupdisplay">'; 18 print_tabs($tabs, $currenttab); 19 echo '</div>'; 20 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Jan 14 11:33:29 2009 | Cross-referenced by PHPXref 0.7 |