mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
Fixed regression and broken interafce implementation
This commit is contained in:
parent
5c397bab92
commit
1accb520a0
2 changed files with 15 additions and 1 deletions
|
@ -243,7 +243,7 @@ class workshop_accumulative_strategy implements workshop_strategy {
|
||||||
/**
|
/**
|
||||||
* @see parent::get_assessments_recordset()
|
* @see parent::get_assessments_recordset()
|
||||||
*/
|
*/
|
||||||
public function get_assessments_recordset($restrict) {
|
public function get_assessments_recordset($restrict=null) {
|
||||||
global $DB;
|
global $DB;
|
||||||
|
|
||||||
$sql = 'SELECT s.id AS submissionid,
|
$sql = 'SELECT s.id AS submissionid,
|
||||||
|
|
|
@ -275,6 +275,20 @@ class workshop_numerrors_strategy implements workshop_strategy {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see parent::get_assessments_recordset()
|
||||||
|
*/
|
||||||
|
public function get_assessments_recordset($restrict=null) {
|
||||||
|
// todo
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see parent::get_dimensions_info()
|
||||||
|
*/
|
||||||
|
public function get_dimensions_info() {
|
||||||
|
// todo
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// Internal methods //
|
// Internal methods //
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue