mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 09:56:38 +02:00
MDL-54708 message: add notification popover to nav bar
This commit is contained in:
parent
3274d5ca66
commit
a0e358a64a
18 changed files with 2512 additions and 0 deletions
|
@ -145,6 +145,14 @@ class renderer_base {
|
|||
static $templatecache = array();
|
||||
$mustache = $this->get_mustache();
|
||||
|
||||
try {
|
||||
// Grab a copy of the existing helper to be restored later.
|
||||
$uniqidHelper = $mustache->getHelper('uniqid');
|
||||
} catch (Mustache_Exception_UnknownHelperException $e) {
|
||||
// Helper doesn't exist.
|
||||
$uniqidHelper = null;
|
||||
}
|
||||
|
||||
// Provide 1 random value that will not change within a template
|
||||
// but will be different from template to template. This is useful for
|
||||
// e.g. aria attributes that only work with id attributes and must be
|
||||
|
@ -3184,6 +3192,27 @@ EOD;
|
|||
return html_writer::tag('div', $searchicon . $searchinput, array('class' => 'search-input-wrapper', 'id' => $id));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the noticication menu
|
||||
*
|
||||
* @return string HTML for the notification menu
|
||||
*/
|
||||
public function notification_menu() {
|
||||
global $USER;
|
||||
|
||||
if (isloggedin()) {
|
||||
$context = [
|
||||
'userid' => $USER->id,
|
||||
'urls' => [
|
||||
'preferences' => (new moodle_url('/message/edit.php', ['id' => $USER->id]))->out(),
|
||||
],
|
||||
];
|
||||
return $this->render_from_template('message/notification_popover', $context);
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a user menu, returning HTML that can be echoed out by a
|
||||
* layout file.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue