]> git.mxchange.org Git - friendica.git/blob - include/directory.php
Merge remote branch 'upstream/master'
[friendica.git] / include / directory.php
1 <?php
2 require_once("boot.php");
3
4 function directory_run($argv, $argc){
5         global $a, $db;
6
7         if(is_null($a)) {
8                 $a = new App;
9         }
10   
11         if(is_null($db)) {
12                 @include(".htconfig.php");
13                 require_once("dba.php");
14                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
15                                 unset($db_host, $db_user, $db_pass, $db_data);
16         };
17
18         load_config('config');
19         load_config('system');
20
21
22         if($argc != 2)
23                 return;
24
25         load_config('system');
26
27         load_hooks();
28
29
30         $a->set_baseurl(get_config('system','url'));
31
32         $dir = get_config('system','directory_submit_url');
33
34         if(! strlen($dir))
35                 return;
36
37         $arr = array('url' => $argv[1]);
38
39         call_hooks('globaldir_update', $arr);
40
41         if(strlen($arr['url']))
42                 fetch_url($dir . '?url=' . bin2hex($arr['url']));
43
44         return;
45 }
46
47 if (array_search(__file__,get_included_files())===0){
48   directory_run($argv,$argc);
49   killme();
50 }