diff options
-rw-r--r-- | engine/handlers/cron_handler.php | 30 | ||||
-rw-r--r-- | htaccess_dist | 2 |
2 files changed, 32 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 diff --git a/htaccess_dist b/htaccess_dist index 3e83fc5c2..1eb892cc2 100644 --- a/htaccess_dist +++ b/htaccess_dist @@ -14,6 +14,8 @@ RewriteEngine on # RewriteBase /web/path/to/elgg/root/
#
+RewriteRule ^cron\/$ engine/handlers/cron_handler.php
+
RewriteRule ^action\/([A-Za-z\_\-\/]+)$ engine/handlers/action_handler.php?action=$1
RewriteRule ^actions\/([A-Za-z\_\-\/]+)$ engine/handlers/action_handler.php?action=$1
|