mirror of
https://github.com/moodle/moodle.git
synced 2025-02-19 07:41:02 +01:00
* 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
267 B
PHP
13 lines
267 B
PHP
<?php
|
|
|
|
$handlers = array (
|
|
'user_deleted' => array (
|
|
'handlerfile' => '/portfolio/picasa/lib.php',
|
|
'handlerfunction' => 'portfolio_picasa_user_deleted',
|
|
'schedule' => 'cron',
|
|
'internal' => 0,
|
|
),
|
|
);
|
|
|
|
|