diff options
Diffstat (limited to 'engine/handlers/cron_handler.php')
-rw-r--r-- | engine/handlers/cron_handler.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/engine/handlers/cron_handler.php b/engine/handlers/cron_handler.php new file mode 100644 index 000000000..2d3e0168b --- /dev/null +++ b/engine/handlers/cron_handler.php @@ -0,0 +1,30 @@ +<?php + /** + * Elgg Cron handler. + * + * @package Elgg + * @subpackage Core + * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 + * @author Marcus Povey + * @copyright Curverider Ltd 2008 + * @link http://elgg.org/ + */ + + // Load Elgg engine + require_once("../start.php"); + global $CONFIG; + + // Get a list of parameters + $params = array(); + $params['time'] = time(); + + foreach ($_REQUEST[] as $k => $v) + $params[$k] = $v; + + // Trigger hack + $std_out = ""; // Data to return to + $std_out = trigger_plugin_hook('system', 'cron', $params, $std_out); + + // Return event + echo $std_out; +?>
\ No newline at end of file |