mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 17:06:53 +02:00
MDL-54687 core_message: removed unused function and data attribute
This commit is contained in:
parent
358717d59e
commit
6d3445de77
3 changed files with 1 additions and 13 deletions
|
@ -152,15 +152,6 @@ define(['jquery', 'core_message/message_area_contacts', 'core_message/message_ar
|
||||||
return this.node.find(selector);
|
return this.node.find(selector);
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the ID of the logged in user.
|
|
||||||
*
|
|
||||||
* @returns {int} The user id
|
|
||||||
*/
|
|
||||||
Messagearea.prototype.getLoggedInUserId = function() {
|
|
||||||
return this.node.data('loggedinuserid');
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the ID of the user whose message area we are viewing.
|
* Returns the ID of the user whose message area we are viewing.
|
||||||
*
|
*
|
||||||
|
|
|
@ -65,10 +65,7 @@ class message_area implements templatable, renderable {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function export_for_template(\renderer_base $output) {
|
public function export_for_template(\renderer_base $output) {
|
||||||
global $USER;
|
|
||||||
|
|
||||||
$data = new \stdClass();
|
$data = new \stdClass();
|
||||||
$data->loggedinuserid = $USER->id;
|
|
||||||
$data->userid = $this->userid;
|
$data->userid = $this->userid;
|
||||||
$data->contacts = $this->contacts->export_for_template($output);
|
$data->contacts = $this->contacts->export_for_template($output);
|
||||||
if ($this->messages) {
|
if ($this->messages) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div class="messaging-area-container" data-loggedinuserid="{{loggedinuserid}}" data-userid="{{userid}}">
|
<div class="messaging-area-container" data-userid="{{userid}}">
|
||||||
<div class="messaging-area">
|
<div class="messaging-area">
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
<div class="span3 contacts-area" data-region="contacts-area" role="tablist">
|
<div class="span3 contacts-area" data-region="contacts-area" role="tablist">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue