mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 08:22:07 +02:00
MDL-18229 grade report: coding style fixes
global definitions must be at the top of functions.
This commit is contained in:
parent
d65eefdbf1
commit
992159f450
@ -211,14 +211,14 @@ class user extends tablelike implements selectable_items {
|
||||
* @return grade_category
|
||||
*/
|
||||
private function category($item) {
|
||||
global $DB;
|
||||
|
||||
if (empty($item->categoryid)) {
|
||||
|
||||
if ($item->itemtype == 'course') {
|
||||
return $this->course->fullname;
|
||||
}
|
||||
|
||||
global $DB;
|
||||
|
||||
$params = array('id' => $item->iteminstance);
|
||||
$elem = $DB->get_record('grade_categories', $params);
|
||||
|
||||
@ -249,12 +249,12 @@ class user extends tablelike implements selectable_items {
|
||||
* @return string
|
||||
*/
|
||||
public function pager() {
|
||||
global $OUTPUT;
|
||||
|
||||
if (!$this->supports_paging()) {
|
||||
return '';
|
||||
}
|
||||
|
||||
global $OUTPUT;
|
||||
|
||||
return $OUTPUT->paging_bar(
|
||||
count($this->items), $this->page, $this->perpage,
|
||||
new moodle_url('/grade/report/singleview/index.php', array(
|
||||
|
Loading…
x
Reference in New Issue
Block a user