/message/classes/output/messagearea/message.php
https://gitlab.com/unofficial-mirrors/moodle · PHP · 115 lines · 42 code · 16 blank · 57 comment · 3 complexity · 9219d7337d6fdceae85f537a6bcfdd1c MD5 · raw file
- <?php
- // This file is part of Moodle - http://moodle.org/
- //
- // Moodle is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // Moodle is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
- /**
- * Contains class used to prepare a message for display.
- *
- * @package core_message
- * @copyright 2016 Mark Nelson <markn@moodle.com>
- * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- */
- namespace core_message\output\messagearea;
- defined('MOODLE_INTERNAL') || die();
- use renderable;
- use templatable;
- /**
- * Class to prepare a message for display.
- *
- * @package core_message
- * @copyright 2016 Mark Nelson <markn@moodle.com>
- * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- */
- class message implements templatable, renderable {
- /**
- * @var int The message id.
- */
- public $id;
- /**
- * @var int The current userid.
- */
- public $currentuserid;
- /**
- * @var int The userid to.
- */
- public $useridto;
- /**
- * @var int The userid from.
- */
- public $useridfrom;
- /**
- * @var string The message text.
- */
- public $text;
- /**
- * @var bool Are we displaying the time?
- */
- public $displayblocktime;
- /**
- * @var int The time created of the message.
- */
- public $timecreated;
- /**
- * @var int The time the message was read.
- */
- public $timeread;
- /**
- * Constructor.
- *
- * @param \stdClass $message
- */
- public function __construct($message) {
- $this->id = $message->id;
- $this->currentuserid = $message->currentuserid;
- $this->useridto = $message->useridto;
- $this->useridfrom = $message->useridfrom;
- $this->text = $message->text;
- $this->displayblocktime = $message->displayblocktime;
- $this->timecreated = $message->timecreated;
- $this->timeread = $message->timeread;
- }
- public function export_for_template(\renderer_base $output) {
- $message = new \stdClass();
- $message->id = $this->id;
- $message->useridto = $this->useridto;
- $message->useridfrom = $this->useridfrom;
- $message->text = $this->text;
- $message->displayblocktime = $this->displayblocktime;
- $message->blocktime = userdate($this->timecreated, get_string('strftimedaydate'));
- $message->position = 'left';
- if ($this->currentuserid == $this->useridfrom) {
- $message->position = 'right';
- }
- $message->timesent = userdate($this->timecreated, get_string('strftimetime'));
- $message->timecreated = $this->timecreated;
- $message->isread = !empty($this->timeread) ? 1 : 0;
- return $message;
- }
- }