mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
fixing merge issue between portfolio & messaging events
This commit is contained in:
parent
4e781c7b50
commit
fc053de980
@ -73,8 +73,19 @@ $handlers = array (
|
||||
'handlerfile' => '/lib/messagelib.php',
|
||||
'handlerfunction' => 'message_send_handler',
|
||||
'schedule' => 'instant'
|
||||
)
|
||||
),
|
||||
|
||||
/*
|
||||
* portfolio queued event - for non interactive file transfers
|
||||
*/
|
||||
'portfolio_send' => array (
|
||||
'handlerfile' => '/lib/portfolio.php',
|
||||
'handlerfunction' => 'portfolio_handle_event', // argument to call_user_func(), could be an array
|
||||
'schedule' => 'cron'
|
||||
),
|
||||
|
||||
|
||||
/* more go here */
|
||||
);
|
||||
|
||||
|
||||
@ -121,17 +132,6 @@ groups_groupings_deleted - int course id - deleted all course groupings
|
||||
role_assigned - object role_assignments table record
|
||||
role_unassigned - object role_assignments table record
|
||||
|
||||
==== portfolio related events ====
|
||||
|
||||
portfolio_send - when a user wants to send some content to a portfolio
|
||||
|
||||
*/
|
||||
$handlers = array (
|
||||
'portfolio_send' => array (
|
||||
'handlerfile' => '/lib/portfolio.php',
|
||||
'handlerfunction' => 'portfolio_handle_event', // argument to call_user_func(), could be an array
|
||||
'schedule' => 'cron'
|
||||
)
|
||||
);
|
||||
|
||||
?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user