first try of 'poormancron' whith 'proc_run' hook

This commit is contained in:
fabrixxm 2011-01-24 22:02:53 +01:00
parent 2020ea23b1
commit 3a575cdfde
1 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,51 @@
<?php
/**
* Poor Man Cron. Execute updates on pageviews
*
* Addon Name: poormancron
*
*/
function poormancron_install() {
register_hook('profile_sidebar', 'addon/poormancron/poormancron.php', 'poormancron_hook');
register_hook('proc_run', 'addon/poormancron/poormancron.php','poormancron_procrun');
logger("installed poormancron");
}
function poormancron_uninstall() {
unregister_hook('profile_sidebar', 'addon/poormancron/poormancron.php', 'poormancron_hook');
unregister_hook('proc_run', 'addon/poormancron/poormancron.php','poormancron_procrun');
logger("removed poormancron");
}
function poormancron_hook($a,&$b) {
$now = time();
$lastupdate = get_config('poormancron', 'lastupdate');
// 300 secs, 5 mins
if (!$lastupdate || ($now-$lastupdate)>300) {
set_config('poormancron','lastupdate', $now);
$b .= "<img src='".$a->get_baseurl()."/queue_wrapper.php' width='1px' height='1px' style='display:none'>";
$b .= "<img src='".$a->get_baseurl()."/poller_wrapper.php' width='1px' height='1px' style='display:none'>";
}
}
function poormancron_procrun($a, $args) {
$argv = array_shift($args);
$argc = count($argv);
function killme(){
// pass
}
require_once($argv[0]);
}
?>