dirroot.'/grade/lib.php'; require_once $CFG->dirroot.'/grade/report/lib.php'; // for preferences $courseid = required_param('id', PARAM_INT); $action = optional_param('action', 0, PARAM_ALPHA); $eid = optional_param('eid', 0, PARAM_ALPHANUM); /// Make sure they can even access this course if (!$course = get_record('course', 'id', $courseid)) { print_error('nocourseid'); } require_login($course); $context = get_context_instance(CONTEXT_COURSE, $course->id); require_capability('moodle/grade:manage', $context); /// return tracking object $gpr = new grade_plugin_return(array('type'=>'edit', 'plugin'=>'tree', 'courseid'=>$courseid)); $returnurl = $gpr->get_return_url(null); //first make sure we have proper final grades - we need it for locking changes grade_regrade_final_grades($courseid); // get the grading tree object // note: total must be first for moving to work correctly, if you want it last moving code must be rewritten! $gtree = new grade_tree($courseid, false, false); if (empty($eid)) { $element = null; $object = null; } else { if (!$element = $gtree->locate_element($eid)) { error('Incorrect element id!', $returnurl); } $object = $element['object']; } $switch = grade_report::get_pref('aggregationposition'); $strgrades = get_string('grades'); $strgraderreport = get_string('graderreport', 'grades'); $strcategoriesedit = get_string('categoriesedit', 'grades'); $strcategoriesanditems = get_string('categoriesanditems', 'grades'); $navigation = grade_build_nav(__FILE__, $strcategoriesanditems, array('courseid' => $courseid)); $moving = false; switch ($action) { case 'delete': if ($eid) { $confirm = optional_param('confirm', 0, PARAM_BOOL); if ($confirm and confirm_sesskey()) { $object->delete('grade/report/grader/category'); redirect($returnurl); } else { print_header_simple($strgrades . ': ' . $strgraderreport, ': ' . $strcategoriesedit, $navigation, '', '', true, '', navmenu($course)); $strdeletecheckfull = get_string('deletecheck', '', $object->get_name()); $optionsyes = array('eid'=>$eid, 'confirm'=>1, 'sesskey'=>sesskey(), 'id'=>$course->id, 'action'=>'delete'); $optionsno = array('id'=>$course->id); notice_yesno($strdeletecheckfull, 'index.php', 'index.php', $optionsyes, $optionsno, 'post', 'get'); print_footer($course); die; } } break; case 'autosort': //TODO: implement autosorting based on order of mods on course page, categories first, manual items last break; case 'synclegacy': grade_grab_legacy_grades($course->id); redirect($returnurl); case 'move': if ($eid and confirm_sesskey()) { $moveafter = required_param('moveafter', PARAM_ALPHANUM); if(!$after_el = $gtree->locate_element($moveafter)) { error('Incorect element id in moveafter', $returnurl); } $after = $after_el['object']; $parent = $after->get_parent_category(); $sortorder = $after->get_sortorder(); $object->set_parent($parent->id); $object->move_after_sortorder($sortorder); redirect($returnurl); } break; case 'moveselect': if ($eid and confirm_sesskey()) { $moving = $eid; } break; default: break; } print_header_simple($strgrades . ': ' . $strgraderreport, ': ' . $strcategoriesedit, $navigation, '', '', true, '', navmenu($course)); /// Print the plugin selector at the top print_grade_plugin_selector($courseid, 'edit', 'tree'); print_heading(get_string('categoriesedit', 'grades')); print_box_start('gradetreebox generalbox'); echo ''; print_box_end(); echo '
'; if ($moving) { print_single_button('index.php', array('id'=>$course->id), get_string('cancel'), 'get'); } else { print_single_button('category.php', array('courseid'=>$course->id), get_string('addcategory', 'grades'), 'get'); print_single_button('item.php', array('courseid'=>$course->id), get_string('additem', 'grades'), 'get'); if (!empty($CFG->enableoutcomes)) { print_single_button('outcomeitem.php', array('courseid'=>$course->id), get_string('addoutcomeitem', 'grades'), 'get'); } //print_single_button('index.php', array('id'=>$course->id, 'action'=>'autosort'), get_string('autosort', 'grades'), 'get'); print_single_button('index.php', array('id'=>$course->id, 'action'=>'synclegacy'), get_string('synclegacygrades', 'grades'), 'get'); } echo '
'; print_footer($course); die; function print_grade_tree(&$gtree, $element, $moving, &$gpr, $switch, $switchedlast=false) { global $CFG, $COURSE; /// fetch needed strings $strmove = get_string('move'); $strmovehere = get_string('movehere'); $strdelete = get_string('delete'); $object = $element['object']; $eid = $element['eid']; /// prepare actions $actions = $gtree->get_edit_icon($element, $gpr); if ($element['type'] == 'item' or ($element['type'] == 'category' and $element['depth'] > 1)) { $actions .= ''
                 . $strdelete.''; $actions .= ''
                 . $strmove.''; } $actions .= $gtree->get_locking_icon($element, $gpr); $name = $object->get_name(); //TODO: improve outcome visualisation if ($element['type'] == 'item' and !empty($object->outcomeid)) { $name = $name.' ('.get_string('outcome', 'grades').')'; } if ($object->is_hidden()) { $name = ''.$name.''; } $actions .= $gtree->get_hiding_icon($element, $gpr); /// prepare icon $icon = ''; $last = ''; $catcourseitem = false; switch ($element['type']) { case 'item': if ($object->itemtype == 'mod') { $icon = ''
                      . get_string('modulename', $object->itemmodule).''; } else if ($object->itemtype == 'manual') { //TODO: add manual grading icon if (empty($object->outcomeid)) { $icon = ''
                          . get_string('manualgrade', 'grades').''; // TODO: localize } else { $icon = ''
                          . get_string('outcome', 'grades').''; } } break; case 'courseitem': case 'categoryitem': $icon = ''.get_string('categorygrade').''; // TODO: localize $catcourseitem = true; break; case 'category': $icon = ''.get_string('category').''; break; } /// prepare move target if needed $moveto = ''; if ($moving) { $actions = ''; // no action icons when moving $moveto = '
  • '
                . $strmovehere.'
  • '; } /// print the list items now if ($moving == $eid) { // do not diplay children echo '
  • '.$icon.$name.'('.get_string('move').')
  • '; } else if ($element['type'] != 'category') { if ($catcourseitem and $switch) { if ($switchedlast) { echo '
  • '.$icon.$name.$actions.'
  • '; } else { echo $moveto; } } else { echo '
  • '.$icon.$name.$actions.'
  • '.$moveto; } } else { echo '
  • '.$icon.$name.$actions; echo '
  • '; if ($element['depth'] > 1) { echo $moveto; // can not move after the top category } } } ?>