]> git.mxchange.org Git - friendica.git/blob - include/cronhooks.php
add remove_user hook (it looks like dreamhost changed all my file permissions, this...
[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("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
23         load_config('config');
24         load_config('system');
25
26         $a->set_baseurl(get_config('system','url'));
27
28         load_hooks();
29
30         logger('cronhooks: start');
31         
32
33         $d = datetime_convert();
34
35         call_hooks('cron', $d);
36
37         return;
38 }
39
40 if (array_search(__file__,get_included_files())===0){
41   cronhooks_run($argv,$argc);
42   killme();
43 }