Merge branch 'MDL-52766-29-mnet-url-length' of git://github.com/mudrd8mz/moodle into...
[moodle.git] / message / upgrade.txt
blob24604cb05bb1320900817c5a7aa09f2be9e00a01
1 This files describes API changes in /message/ messaging system,
2 information provided here is intended especially for developers.
4 === 3.1 ===
5 * get_message_processors accepts an addition parameter for testing, which will just reset processor and exit.
7 === 2.9 ===
8 * Renderer method \core_message_renderer::manage_messagingoptions now accepts a user id parameter as well.
10 === 2.6 ===
11 * Message processor extending message_output, should return true in can_send_to_any_users()
12   if it supports message sending to internal (noreply/support) users.
13 * Message API has been changed to allow attachments. Message processors that can support
14   attachments can now use additional parameter as a part of $eventdata. To send attachments,
15   $eventdata should contain properties called "attachment" (must be stored_file) and
16   "attachname" (string). Currently, email message processor is the only one to support
17   attachments.
19 === 2.2 ===
21 required changes:
22 * lib/messagelib.php message_send($eventdata)
23   $eventdata->userto should contain a property called "emailstop", $eventdata->userto->emailstop
24   If it is absent it will be retrieved from the user table causing an additional database query