Merge branch 'MDL-34204' of git://github.com/timhunt/moodle

This commit is contained in:
Dan Poltawski 2012-11-19 10:33:25 +08:00
commit 380186484b
2 changed files with 6 additions and 2 deletions

View File

@ -107,7 +107,7 @@ grade_regrade_final_grades($courseid);
// Perform actions
if (!empty($target) && !empty($action) && confirm_sesskey()) {
grade_report_grader::process_action($target, $action);
grade_report_grader::do_process_action($target, $action);
}
$reportname = get_string('pluginname', 'gradereport_grader');

View File

@ -1584,13 +1584,17 @@ class grade_report_grader extends grade_report {
return $icon;
}
public function process_action($target, $action) {
return self::do_process_action($target, $action);
}
/**
* Processes a single action against a category, grade_item or grade.
* @param string $target eid ({type}{id}, e.g. c4 for category4)
* @param string $action Which action to take (edit, delete etc...)
* @return
*/
public function process_action($target, $action) {
public static function do_process_action($target, $action) {
// TODO: this code should be in some grade_tree static method
$targettype = substr($target, 0, 1);
$targetid = substr($target, 1);