mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
core MDL-19799 Updated print_header and build_navigation to OUTPUT and PAGE equivalents
This commit is contained in:
parent
b87573d7ae
commit
70f25518ad
5 changed files with 15 additions and 6 deletions
|
@ -19,7 +19,10 @@
|
|||
|
||||
$title = get_string("users");
|
||||
|
||||
print_header($title, $title, build_navigation(array(array('name' => $title, 'link' => null, 'type' => 'misc'))));
|
||||
$PAGE->navbar->add($title);
|
||||
$PAGE->set_title($title);
|
||||
$PAGE->set_heading($title);
|
||||
echo $OUTPUT->header();
|
||||
|
||||
foreach ($users as $user) {
|
||||
$fullname = fullname($user);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue