diff options
Diffstat (limited to 'engine/handlers/cron_handler.php')
| -rw-r--r-- | engine/handlers/cron_handler.php | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/engine/handlers/cron_handler.php b/engine/handlers/cron_handler.php deleted file mode 100644 index 37a0335f6..000000000 --- a/engine/handlers/cron_handler.php +++ /dev/null @@ -1,41 +0,0 @@ -<?php -/** - * Elgg Cron handler. - * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - */ - -// Load Elgg engine -define('externalpage',true); -require_once("../start.php"); -global $CONFIG; - -// Get basic parameters -$period = get_input('period'); -if (!$period) { - throw new CronException(sprintf(elgg_echo('CronException:unknownperiod'), $period)); -} - -// Get a list of parameters -$params = array(); -$params['time'] = time(); - -foreach ($CONFIG->input as $k => $v) { - $params[$k] = $v; -} - -// Trigger hack - -// Data to return to -$std_out = ""; -$old_stdout = ""; -ob_start(); - -$old_stdout = trigger_plugin_hook('cron', $period, $params, $old_stdout); -$std_out = ob_get_clean(); - -// Return event -echo $std_out . $old_stdout;
\ No newline at end of file |
