mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
650462dfac
* handlers can be defined as internal or external * external handlers are not called instantly when inside DB transaction * code cleanup * more robust detection of broken handlers * refixed unit tests * removing all pending events from 1.9 - these can not be processed due to encoding changes * finally using real 'component' in handlers table
13 lines
275 B
PHP
13 lines
275 B
PHP
<?php
|
|
|
|
$handlers = array (
|
|
'user_deleted' => array (
|
|
'handlerfile' => '/portfolio/googledocs/lib.php',
|
|
'handlerfunction' => 'portfolio_googledocs_user_deleted',
|
|
'schedule' => 'cron',
|
|
'internal' => 0,
|
|
),
|
|
);
|
|
|
|
|