]> git.mxchange.org Git - friendica.git/blob - include/cronhooks.php
Merge pull request #658 from annando/master
[friendica.git] / include / cronhooks.php
1 <?php
2
3 require_once("boot.php");
4
5
6 function cronhooks_run(&$argv, &$argc){
7         global $a, $db;
8
9         if(is_null($a)) {
10                 $a = new App;
11         }
12   
13         if(is_null($db)) {
14             @include(".htconfig.php");
15         require_once("include/dba.php");
16             $db = new dba($db_host, $db_user, $db_pass, $db_data);
17         unset($db_host, $db_user, $db_pass, $db_data);
18         };
19
20         require_once('include/session.php');
21         require_once('include/datetime.php');
22         require_once('include/pidfile.php');
23
24         load_config('config');
25         load_config('system');
26
27         $lockpath = get_config('system','lockpath');
28         if ($lockpath != '') {
29                 $pidfile = new pidfile($lockpath, 'cron.lck');
30                 if($pidfile->is_already_running()) {
31                         logger("cronhooks: Already running");
32                         exit;
33                 }
34         }
35
36         $a->set_baseurl(get_config('system','url'));
37
38         load_hooks();
39
40         logger('cronhooks: start');
41         
42
43         $d = datetime_convert();
44
45         call_hooks('cron', $d);
46
47         return;
48 }
49
50 if (array_search(__file__,get_included_files())===0){
51   cronhooks_run($argv,$argc);
52   killme();
53 }