includes/functions.php
changeset 191 3dbe848431b0
parent 184 d74ff822acc9
child 193 ebe99e82a59a
child 195 eec079676fe7
child 207 861807631f70
child 230 3daa715e0f69
--- a/includes/functions.php	Fri Oct 19 21:07:54 2007 -0400
+++ b/includes/functions.php	Fri Oct 19 21:39:33 2007 -0400
@@ -3168,6 +3168,20 @@
   return $score;
 }
 
+/**
+ * Registers a task that will be run every X hours. Scheduled tasks should always be scheduled at runtime - they are not stored in the DB.
+ * @param string Function name to call, or array(object, string method)
+ * @param int Interval between runs, in hours. Defaults to 24.
+ */
+
+function register_cron_task($func, $hour_interval = 24)
+{
+  global $cron_tasks;
+  if ( !isset($cron_tasks[$hour_interval]) )
+    $cron_tasks[$hour_interval] = array();
+  $cron_tasks[$hour_interval][] = $func;
+}
+
 //die('<pre>Original:  01010101010100101010100101010101011010'."\nProcessed: ".uncompress_bitfield(compress_bitfield('01010101010100101010100101010101011010')).'</pre>');
 
 ?>