Skip to content

Commit

Permalink
fixing merge issue between portfolio & messaging events
Browse files Browse the repository at this point in the history
  • Loading branch information
mjollnir_ committed Jul 28, 2008
1 parent 4e781c7 commit fc053de
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions lib/db/events.php
Expand Up @@ -73,8 +73,19 @@
'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 */
);


Expand Down Expand Up @@ -121,17 +132,6 @@
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'
)
);

?>

0 comments on commit fc053de

Please sign in to comment.