mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
MDL-60997 messages: add property replytoname
This commit is contained in:
parent
f68150ad05
commit
30146ed1ad
1 changed files with 4 additions and 0 deletions
|
@ -101,6 +101,9 @@ class message {
|
||||||
/** @var string An email address which can be used to send an reply. */
|
/** @var string An email address which can be used to send an reply. */
|
||||||
private $replyto;
|
private $replyto;
|
||||||
|
|
||||||
|
/** @var string A name which can be used with replyto. */
|
||||||
|
private $replytoname;
|
||||||
|
|
||||||
/** @var int Used internally to store the id of the row representing this message in DB. */
|
/** @var int Used internally to store the id of the row representing this message in DB. */
|
||||||
private $savedmessageid;
|
private $savedmessageid;
|
||||||
|
|
||||||
|
@ -130,6 +133,7 @@ class message {
|
||||||
'contexturl',
|
'contexturl',
|
||||||
'contexturlname',
|
'contexturlname',
|
||||||
'replyto',
|
'replyto',
|
||||||
|
'replytoname',
|
||||||
'savedmessageid',
|
'savedmessageid',
|
||||||
'attachment',
|
'attachment',
|
||||||
'attachname',
|
'attachname',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue