]> git.mxchange.org Git - friendica.git/blob - boot.php
Merge pull request #49 from CatoTH/master
[friendica.git] / boot.php
1 <?php
2
3 require_once('include/config.php');
4 require_once('include/network.php');
5 require_once('include/plugin.php');
6 require_once('include/text.php');
7 require_once('include/pgettext.php');
8 require_once('include/nav.php');
9 require_once('include/cache.php');
10
11 define ( 'FRIENDICA_PLATFORM',     'Friendica');
12 define ( 'FRIENDICA_VERSION',      '2.3.1264' );
13 define ( 'DFRN_PROTOCOL_VERSION',  '2.22'    );
14 define ( 'DB_UPDATE_VERSION',      1126      );
15
16 define ( 'EOL',                    "<br />\r\n"     );
17 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
18
19
20 /**
21  *
22  * Image storage quality. Lower numbers save space at cost of image detail.
23  * For ease of upgrade, please do not change here. Change jpeg quality with 
24  * $a->config['system']['jpeg_quality'] = n; 
25  * in .htconfig.php, where n is netween 1 and 100, and with very poor results 
26  * below about 50 
27  *
28  */
29
30 define ( 'JPEG_QUALITY',            100  );         
31
32 /**
33  * SSL redirection policies
34  */
35
36 define ( 'SSL_POLICY_NONE',         0 );
37 define ( 'SSL_POLICY_FULL',         1 );
38 define ( 'SSL_POLICY_SELFSIGN',     2 );
39
40
41 /**
42  * log levels
43  */
44
45 define ( 'LOGGER_NORMAL',          0 );
46 define ( 'LOGGER_TRACE',           1 );
47 define ( 'LOGGER_DEBUG',           2 );
48 define ( 'LOGGER_DATA',            3 );
49 define ( 'LOGGER_ALL',             4 );
50
51 /**
52  * registration policies
53  */
54
55 define ( 'REGISTER_CLOSED',        0 );
56 define ( 'REGISTER_APPROVE',       1 );
57 define ( 'REGISTER_OPEN',          2 );
58
59 /**
60  * relationship types
61  */
62
63 define ( 'CONTACT_IS_FOLLOWER', 1);
64 define ( 'CONTACT_IS_SHARING',  2);
65 define ( 'CONTACT_IS_FRIEND',   3);
66
67
68 /**
69  * Hook array order
70  */
71  
72 define ( 'HOOK_HOOK',      0);
73 define ( 'HOOK_FILE',      1);
74 define ( 'HOOK_FUNCTION',  2);
75
76 /**
77  *
78  * page/profile types
79  *
80  * PAGE_NORMAL is a typical personal profile account
81  * PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
82  * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with 
83  *      write access to wall and comments (no email and not included in page owner's ACL lists)
84  * PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND). 
85  *
86  */
87
88 define ( 'PAGE_NORMAL',            0 );
89 define ( 'PAGE_SOAPBOX',           1 );
90 define ( 'PAGE_COMMUNITY',         2 );
91 define ( 'PAGE_FREELOVE',          3 );
92 define ( 'PAGE_BLOG',              4 );
93
94 /**
95  * Network and protocol family types 
96  */
97
98 define ( 'NETWORK_ZOT',              'zot!');    // Zot!
99 define ( 'NETWORK_DFRN',             'dfrn');    // Friendica, Mistpark, other DFRN implementations
100 define ( 'NETWORK_OSTATUS',          'stat');    // status.net, identi.ca, GNU-social, other OStatus implementations
101 define ( 'NETWORK_FEED',             'feed');    // RSS/Atom feeds with no known "post/notify" protocol
102 define ( 'NETWORK_DIASPORA',         'dspr');    // Diaspora
103 define ( 'NETWORK_MAIL',             'mail');    // IMAP/POP
104 define ( 'NETWORK_MAIL2',            'mai2');    // extended IMAP/POP
105 define ( 'NETWORK_FACEBOOK',         'face');    // Facebook API     
106 define ( 'NETWORK_LINKEDIN',         'lnkd');    // LinkedIn
107 define ( 'NETWORK_XMPP',             'xmpp');    // XMPP     
108 define ( 'NETWORK_MYSPACE',          'mysp');    // MySpace
109 define ( 'NETWORK_GPLUS',            'goog');    // Google+
110
111 /**
112  * Maximum number of "people who like (or don't like) this"  that we will list by name
113  */
114
115 define ( 'MAX_LIKERS',    75);
116
117 /**
118  * Communication timeout
119  */
120
121 define ( 'ZCURL_TIMEOUT' , (-1));
122
123
124 /**
125  * email notification options
126  */
127
128 define ( 'NOTIFY_INTRO',    0x0001 );
129 define ( 'NOTIFY_CONFIRM',  0x0002 );
130 define ( 'NOTIFY_WALL',     0x0004 );
131 define ( 'NOTIFY_COMMENT',  0x0008 );
132 define ( 'NOTIFY_MAIL',     0x0010 );
133 define ( 'NOTIFY_SUGGEST',  0x0020 );
134 define ( 'NOTIFY_PROFILE',  0x0040 );
135 define ( 'NOTIFY_TAGSELF',  0x0080 );
136 define ( 'NOTIFY_TAGSHARE', 0x0100 );
137
138 /**
139  * various namespaces we may need to parse
140  */
141
142 define ( 'NAMESPACE_ZOT',             'http://purl.org/macgirvin/zot' );
143 define ( 'NAMESPACE_DFRN' ,           'http://purl.org/macgirvin/dfrn/1.0' ); 
144 define ( 'NAMESPACE_THREAD' ,         'http://purl.org/syndication/thread/1.0' );
145 define ( 'NAMESPACE_TOMB' ,           'http://purl.org/atompub/tombstones/1.0' );
146 define ( 'NAMESPACE_ACTIVITY',        'http://activitystrea.ms/spec/1.0/' );
147 define ( 'NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/' );
148 define ( 'NAMESPACE_MEDIA',           'http://purl.org/syndication/atommedia' );
149 define ( 'NAMESPACE_SALMON_ME',       'http://salmon-protocol.org/ns/magic-env' );
150 define ( 'NAMESPACE_OSTATUSSUB',      'http://ostatus.org/schema/1.0/subscribe' );
151 define ( 'NAMESPACE_GEORSS',          'http://www.georss.org/georss' );
152 define ( 'NAMESPACE_POCO',            'http://portablecontacts.net/spec/1.0' );
153 define ( 'NAMESPACE_FEED',            'http://schemas.google.com/g/2010#updates-from' );
154 define ( 'NAMESPACE_OSTATUS',         'http://ostatus.org/schema/1.0' );
155 define ( 'NAMESPACE_STATUSNET',       'http://status.net/schema/api/1/' );
156 define ( 'NAMESPACE_ATOM1',           'http://www.w3.org/2005/Atom' );
157 /**
158  * activity stream defines
159  */
160
161 define ( 'ACTIVITY_LIKE',        NAMESPACE_ACTIVITY_SCHEMA . 'like' );
162 define ( 'ACTIVITY_DISLIKE',     NAMESPACE_DFRN            . '/dislike' );
163 define ( 'ACTIVITY_OBJ_HEART',   NAMESPACE_DFRN            . '/heart' );
164
165 define ( 'ACTIVITY_FRIEND',      NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
166 define ( 'ACTIVITY_REQ_FRIEND',  NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
167 define ( 'ACTIVITY_UNFRIEND',    NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
168 define ( 'ACTIVITY_FOLLOW',      NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
169 define ( 'ACTIVITY_UNFOLLOW',    NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
170 define ( 'ACTIVITY_POST',        NAMESPACE_ACTIVITY_SCHEMA . 'post' );
171 define ( 'ACTIVITY_UPDATE',      NAMESPACE_ACTIVITY_SCHEMA . 'update' );
172 define ( 'ACTIVITY_TAG',         NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
173 define ( 'ACTIVITY_FAVORITE',    NAMESPACE_ACTIVITY_SCHEMA . 'favorite' );
174
175 define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
176 define ( 'ACTIVITY_OBJ_NOTE',    NAMESPACE_ACTIVITY_SCHEMA . 'note' );
177 define ( 'ACTIVITY_OBJ_PERSON',  NAMESPACE_ACTIVITY_SCHEMA . 'person' );
178 define ( 'ACTIVITY_OBJ_PHOTO',   NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
179 define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
180 define ( 'ACTIVITY_OBJ_ALBUM',   NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
181 define ( 'ACTIVITY_OBJ_EVENT',   NAMESPACE_ACTIVITY_SCHEMA . 'event' );
182 define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN            . '/tagterm' );
183
184 /**
185  * item weight for query ordering
186  */
187
188 define ( 'GRAVITY_PARENT',       0);
189 define ( 'GRAVITY_LIKE',         3);
190 define ( 'GRAVITY_COMMENT',      6);
191
192 /**
193  *
194  * Reverse the effect of magic_quotes_gpc if it is enabled.
195  * Please disable magic_quotes_gpc so we don't have to do this.
196  * See http://php.net/manual/en/security.magicquotes.disabling.php
197  *
198  */
199
200 function startup() {
201         error_reporting(E_ERROR | E_WARNING | E_PARSE);
202         set_time_limit(0);
203
204         // This has to be quite large to deal with embedded private photos
205         ini_set('pcre.backtrack_limit', 500000);
206
207
208         if (get_magic_quotes_gpc()) {
209         $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
210             while (list($key, $val) = each($process)) {
211             foreach ($val as $k => $v) {
212                     unset($process[$key][$k]);
213                 if (is_array($v)) {
214                         $process[$key][stripslashes($k)] = $v;
215                         $process[] = &$process[$key][stripslashes($k)];
216                 } else {
217                         $process[$key][stripslashes($k)] = stripslashes($v);
218                 }
219                 }
220         }
221             unset($process);
222         }
223
224 }
225
226 /**
227  *
228  * class: App
229  *
230  * Our main application structure for the life of this page
231  * Primarily deals with the URL that got us here
232  * and tries to make some sense of it, and 
233  * stores our page contents and config storage
234  * and anything else that might need to be passed around 
235  * before we spit the page out. 
236  *
237  */
238
239 if(! class_exists('App')) {
240 class App {
241
242         public  $module_loaded = false;
243         public  $query_string;
244         public  $config;
245         public  $page;
246         public  $profile;
247         public  $user;
248         public  $cid;
249         public  $contact;
250         public  $contacts;
251         public  $page_contact;
252         public  $content;
253         public  $data = array();
254         public  $error = false;
255         public  $cmd;
256         public  $argv;
257         public  $argc;
258         public  $module;
259         public  $pager;
260         public  $strings;   
261         public  $path;
262         public  $hooks;
263         public  $timezone;
264         public  $interactive = true;
265         public  $plugins;
266         public  $apps = array();
267         public  $identities;
268         
269         public $nav_sel;
270
271         private $scheme;
272         private $hostname;
273         private $baseurl;
274         private $db;
275
276         private $curl_code;
277         private $curl_headers;
278
279         function __construct() {
280
281                 $this->config = array();
282                 $this->page = array();
283                 $this->pager= array();
284
285                 $this->query_string = '';
286
287                 startup();
288
289                 $this->scheme = ((isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS']))      ?  'https' : 'http' );
290
291                 if(x($_SERVER,'SERVER_NAME')) {
292                         $this->hostname = $_SERVER['SERVER_NAME'];
293                         if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443)
294                                 $this->hostname .= ':' . $_SERVER['SERVER_PORT'];
295                         /** 
296                          * Figure out if we are running at the top of a domain
297                          * or in a sub-directory and adjust accordingly
298                          */
299
300                         $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
301                         if(isset($path) && strlen($path) && ($path != $this->path))
302                                 $this->path = $path;
303                 }
304
305                 set_include_path(
306                         "include/$this->hostname" . PATH_SEPARATOR 
307                         . 'include' . PATH_SEPARATOR 
308                         . 'library' . PATH_SEPARATOR 
309                         . 'library/phpsec' . PATH_SEPARATOR 
310                         . '.' );
311
312                 if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") {
313                         $this->query_string = substr($_SERVER['QUERY_STRING'],2);
314                         // removing trailing / - maybe a nginx problem
315                         if (substr($this->query_string, 0, 1) == "/")
316                                 $this->query_string = substr($this->query_string, 1);
317                 }
318                 if(x($_GET,'q'))
319                         $this->cmd = trim($_GET['q'],'/\\');
320
321                 // unix style "homedir"
322
323                 if(substr($this->cmd,0,1) === '~')
324                         $this->cmd = 'profile/' . substr($this->cmd,1);
325
326                 // Diaspora style profile url
327
328                 if(substr($this->cmd,0,2) === 'u/')
329                         $this->cmd = 'profile/' . substr($this->cmd,2);
330
331                 /**
332                  *
333                  * Break the URL path into C style argc/argv style arguments for our
334                  * modules. Given "http://example.com/module/arg1/arg2", $this->argc
335                  * will be 3 (integer) and $this->argv will contain:
336                  *   [0] => 'module'
337                  *   [1] => 'arg1'
338                  *   [2] => 'arg2'
339                  *
340                  *
341                  * There will always be one argument. If provided a naked domain
342                  * URL, $this->argv[0] is set to "home".
343                  *
344                  */
345
346                 $this->argv = explode('/',$this->cmd);
347                 $this->argc = count($this->argv);
348                 if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
349                         $this->module = str_replace(".", "_", $this->argv[0]);
350                 }
351                 else {
352                         $this->argc = 1;
353                         $this->argv = array('home');
354                         $this->module = 'home';
355                 }
356
357                 /**
358                  * Special handling for the webfinger/lrdd host XRD file
359                  */
360
361                 if($this->cmd === '.well-known/host-meta') {
362                         $this->argc = 1;
363                         $this->argv = array('hostxrd');
364                         $this->module = 'hostxrd';
365                 }
366
367                 /**
368                  * See if there is any page number information, and initialise 
369                  * pagination
370                  */
371
372                 $this->pager['page'] = ((x($_GET,'page')) ? $_GET['page'] : 1);
373                 $this->pager['itemspage'] = 50;
374                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
375                 $this->pager['total'] = 0;
376         }
377
378         function get_baseurl($ssl = false) {
379
380                 $scheme = $this->scheme;
381
382                 if(x($this->config,'ssl_policy')) {
383                         if(($ssl) || ($this->config['ssl_policy'] == SSL_POLICY_FULL)) 
384                                 $scheme = 'https';
385                         if(($this->config['ssl_policy'] == SSL_POLICY_SELFSIGN) && (local_user() || x($_POST,'auth-params')))
386                                 $scheme = 'https';
387                 }
388
389                 $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
390                 return $this->baseurl;
391         }
392
393         function set_baseurl($url) {
394                 $parsed = @parse_url($url);
395
396                 $this->baseurl = $url;
397
398                 if($parsed) {           
399                         $this->scheme = $parsed['scheme'];
400
401                         $this->hostname = $parsed['host'];
402                         if(x($parsed,'port'))
403                                 $this->hostname .= ':' . $parsed['port'];
404                         if(x($parsed,'path'))
405                                 $this->path = trim($parsed['path'],'\\/');
406                 }
407
408         }
409
410         function get_hostname() {
411                 return $this->hostname;
412         }
413
414         function set_hostname($h) {
415                 $this->hostname = $h;
416         }
417
418         function set_path($p) {
419                 $this->path = trim(trim($p),'/');
420         } 
421
422         function get_path() {
423                 return $this->path;
424         }
425
426         function set_pager_total($n) {
427                 $this->pager['total'] = intval($n);
428         }
429
430         function set_pager_itemspage($n) {
431                 $this->pager['itemspage'] = intval($n);
432                 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
433
434         } 
435
436         function init_pagehead() {
437                 $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000);
438                 if($interval < 10000)
439                         $interval = 40000;
440
441                 $this->page['title'] = $this->config['sitename'];
442                 $tpl = file_get_contents('view/head.tpl');
443                 $this->page['htmlhead'] = replace_macros($tpl,array(
444                         '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
445                         '$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
446                         '$delitem' => t('Delete this item?'),
447                         '$comment' => t('Comment'),
448                         '$showmore' => t('show more'),
449                         '$showfewer' => t('show fewer'),
450                         '$update_interval' => $interval
451                 ));
452         }
453
454         function set_curl_code($code) {
455                 $this->curl_code = $code;
456         }
457
458         function get_curl_code() {
459                 return $this->curl_code;
460         }
461
462         function set_curl_headers($headers) {
463                 $this->curl_headers = $headers;
464         }
465
466         function get_curl_headers() {
467                 return $this->curl_headers;
468         }
469
470
471 }}
472
473 // retrieve the App structure
474 // useful in functions which require it but don't get it passed to them
475
476 if(! function_exists('get_app')) {
477 function get_app() {
478         global $a;
479         return $a;
480 }};
481
482
483 // Multi-purpose function to check variable state.
484 // Usage: x($var) or $x($array,'key')
485 // returns false if variable/key is not set
486 // if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
487 // e.g. x('') or x(0) returns 0;
488
489 if(! function_exists('x')) {
490 function x($s,$k = NULL) {
491         if($k != NULL) {
492                 if((is_array($s)) && (array_key_exists($k,$s))) {
493                         if($s[$k])
494                                 return (int) 1;
495                         return (int) 0;
496                 }
497                 return false;
498         }
499         else {          
500                 if(isset($s)) {
501                         if($s) {
502                                 return (int) 1;
503                         }
504                         return (int) 0;
505                 }
506                 return false;
507         }
508 }}
509
510 // called from db initialisation if db is dead.
511
512 if(! function_exists('system_unavailable')) {
513 function system_unavailable() {
514         include('system_unavailable.php');
515         system_down();
516         killme();
517 }}
518
519
520
521 function clean_urls() {
522         global $a;
523 //      if($a->config['system']['clean_urls'])
524                 return true;
525 //      return false;
526 }
527
528 function z_path() {
529         global $a;
530         $base = $a->get_baseurl();
531         if(! clean_urls())
532                 $base .= '/?q=';
533         return $base;
534 }
535
536 function z_root() {
537         global $a;
538         return $a->get_baseurl();
539 }
540
541 function absurl($path) {
542         if(strpos($path,'/') === 0)
543                 return z_path() . $path;
544         return $path;
545 }
546
547
548 // Primarily involved with database upgrade, but also sets the 
549 // base url for use in cmdline programs which don't have
550 // $_SERVER variables, and synchronising the state of installed plugins.
551
552
553 if(! function_exists('check_config')) {
554 function check_config(&$a) {
555
556         $build = get_config('system','build');
557         if(! x($build))
558                 $build = set_config('system','build',DB_UPDATE_VERSION);
559
560         $url = get_config('system','url');
561
562         // if the url isn't set or the stored url is radically different 
563         // than the currently visited url, store the current value accordingly.
564         // "Radically different" ignores common variations such as http vs https 
565         // and www.example.com vs example.com.
566
567         if((! x($url)) || (! link_compare($url,$a->get_baseurl())))
568                 $url = set_config('system','url',$a->get_baseurl());
569
570         if($build != DB_UPDATE_VERSION) {
571                 $stored = intval($build);
572                 $current = intval(DB_UPDATE_VERSION);
573                 if(($stored < $current) && file_exists('update.php')) {
574
575                         load_config('database');
576
577                         // We're reporting a different version than what is currently installed.
578                         // Run any existing update scripts to bring the database up to current.
579
580                         require_once('update.php');
581
582                         // make sure that boot.php and update.php are the same release, we might be
583                         // updating right this very second and the correct version of the update.php
584                         // file may not be here yet. This can happen on a very busy site.
585
586                         if(DB_UPDATE_VERSION == UPDATE_VERSION) {
587
588                                 for($x = $stored; $x < $current; $x ++) {
589                                         if(function_exists('update_' . $x)) {
590
591                                                 // There could be a lot of processes running or about to run.
592                                                 // We want exactly one process to run the update command.
593                                                 // So store the fact that we're taking responsibility
594                                                 // after first checking to see if somebody else already has.
595
596                                                 // If the update fails or times-out completely you may need to 
597                                                 // delete the config entry to try again.
598
599                                                 if(get_config('database','update_' . $x))
600                                                         break;
601                                                 set_config('database','update_' . $x, '1');
602
603                                                 // call the specific update
604
605                                                 $func = 'update_' . $x;
606                                                 $func($a);
607                                         }
608                                 }
609                                 set_config('system','build', DB_UPDATE_VERSION);
610                         }
611                 }
612         }
613
614         /**
615          *
616          * Synchronise plugins:
617          *
618          * $a->config['system']['addon'] contains a comma-separated list of names
619          * of plugins/addons which are used on this system. 
620          * Go through the database list of already installed addons, and if we have
621          * an entry, but it isn't in the config list, call the uninstall procedure
622          * and mark it uninstalled in the database (for now we'll remove it).
623          * Then go through the config list and if we have a plugin that isn't installed,
624          * call the install procedure and add it to the database.
625          *
626          */
627
628         $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
629         if(count($r))
630                 $installed = $r;
631         else
632                 $installed = array();
633
634         $plugins = get_config('system','addon');
635         $plugins_arr = array();
636
637         if($plugins)
638                 $plugins_arr = explode(',',str_replace(' ', '',$plugins));
639
640         $a->plugins = $plugins_arr;
641
642         $installed_arr = array();
643
644         if(count($installed)) {
645                 foreach($installed as $i) {
646                         if(! in_array($i['name'],$plugins_arr)) {
647                                 uninstall_plugin($i['name']);
648                         }
649                         else
650                                 $installed_arr[] = $i['name'];
651                 }
652         }
653
654         if(count($plugins_arr)) {
655                 foreach($plugins_arr as $p) {
656                         if(! in_array($p,$installed_arr)) {
657                                 install_plugin($p);
658                         }
659                 }
660         }
661
662
663         load_hooks();
664
665         return;
666 }}
667
668
669 function get_guid($size=16) {
670         $exists = true; // assume by default that we don't have a unique guid
671         do {
672                 $s = random_string($size);
673                 $r = q("select id from guid where guid = '%s' limit 1", dbesc($s));
674                 if(! count($r))
675                         $exists = false;
676         } while($exists);
677         q("insert into guid ( guid ) values ( '%s' ) ", dbesc($s));
678         return $s;
679 }
680
681
682 // wrapper for adding a login box. If $register == true provide a registration
683 // link. This will most always depend on the value of $a->config['register_policy'].
684 // returns the complete html for inserting into the page
685
686 if(! function_exists('login')) {
687 function login($register = false, $hiddens=false) {
688         $o = "";
689         $reg = false;
690         if ($register) {
691                 $reg = array(
692                         'title' => t('Create a New Account'),
693                         'desc' => t('Register')
694                 );
695         }
696
697         $noid = get_config('system','no_openid');
698         
699         if(local_user()) {
700                 $tpl = get_markup_template("logout.tpl");
701         }
702         else {
703                 $tpl = get_markup_template("login.tpl");
704
705         }
706
707
708         $o .= replace_macros($tpl,array(
709                 '$logout'        => t('Logout'),
710                 '$login'                 => t('Login'),
711                 
712                 '$lname'                => array('username', t('Nickname or Email address: ') , '', ''),
713                 '$lpassword'    => array('password', t('Password: '), '', ''),
714                 
715                 '$openid'               => !$noid,
716                 '$lopenid'      => array('openid_url', t('Or login using OpenID: '),'',''),
717                 
718                 '$hiddens'      => $hiddens,
719                 
720                 '$register'             => $reg,
721                 
722                 '$lostpass'      => t('Forgot your password?'),
723                 '$lostlink'      => t('Password Reset'),
724         ));
725
726         call_hooks('login_hook',$o);
727
728         return $o;
729 }}
730
731 // Used to end the current process, after saving session state. 
732
733 if(! function_exists('killme')) {
734 function killme() {
735         session_write_close();
736         exit;
737 }}
738
739 // redirect to another URL and terminate this process.
740
741 if(! function_exists('goaway')) {
742 function goaway($s) {
743         header("Location: $s");
744         killme();
745 }}
746
747
748 // Returns the uid of locally logged in user or false.
749
750 if(! function_exists('local_user')) {
751 function local_user() {
752         if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid')))
753                 return intval($_SESSION['uid']);
754         return false;
755 }}
756
757 // Returns contact id of authenticated site visitor or false
758
759 if(! function_exists('remote_user')) {
760 function remote_user() {
761         if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id')))
762                 return intval($_SESSION['visitor_id']);
763         return false;
764 }}
765
766 // contents of $s are displayed prominently on the page the next time
767 // a page is loaded. Usually used for errors or alerts.
768
769 if(! function_exists('notice')) {
770 function notice($s) {
771         $a = get_app();
772         if(! x($_SESSION,'sysmsg'))     $_SESSION['sysmsg'] = array();
773         if($a->interactive)
774                 $_SESSION['sysmsg'][] = $s;
775 }}
776 if(! function_exists('info')) {
777 function info($s) {
778         $a = get_app();
779         if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array();
780         if($a->interactive)
781                 $_SESSION['sysmsg_info'][] = $s;
782 }}
783
784
785 // wrapper around config to limit the text length of an incoming message
786
787 if(! function_exists('get_max_import_size')) {
788 function get_max_import_size() {
789         global $a;
790         return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
791 }}
792
793
794
795 /**
796  *
797  * Function : profile_load
798  * @parameter App    $a
799  * @parameter string $nickname
800  * @parameter int    $profile
801  *
802  * Summary: Loads a profile into the page sidebar. 
803  * The function requires a writeable copy of the main App structure, and the nickname
804  * of a registered local account.
805  *
806  * If the viewer is an authenticated remote viewer, the profile displayed is the
807  * one that has been configured for his/her viewing in the Contact manager.
808  * Passing a non-zero profile ID can also allow a preview of a selected profile
809  * by the owner.
810  *
811  * Profile information is placed in the App structure for later retrieval.
812  * Honours the owner's chosen theme for display. 
813  *
814  */
815
816 if(! function_exists('profile_load')) {
817 function profile_load(&$a, $nickname, $profile = 0) {
818         if(remote_user()) {
819                 $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
820                         intval($_SESSION['visitor_id']));
821                 if(count($r))
822                         $profile = $r[0]['profile-id'];
823         } 
824
825         $r = null;
826                           
827         if($profile) {
828                 $profile_int = intval($profile);
829                 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile` 
830                         left join `contact` on `contact`.`uid` = `profile`.`uid` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
831                         WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d and `contact`.`self` = 1 LIMIT 1",
832                         dbesc($nickname),
833                         intval($profile_int)
834                 );
835         }
836         if((! $r) && (!  count($r))) {  
837                 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile` 
838                         left join `contact` on `contact`.`uid` = `profile`.`uid` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
839                         WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 and `contact`.`self` = 1 LIMIT 1",
840                         dbesc($nickname)
841                 );
842         }
843
844         if(($r === false) || (! count($r))) {
845                 notice( t('Requested profile is not available.') . EOL );
846                 $a->error = 404;
847                 return;
848         }
849         
850         // fetch user tags if this isn't the default profile
851
852         if(! $r[0]['is-default']) {
853                 $x = q("select `pub_keywords` from `profile` where uid = %d and `is-default` = 1 limit 1",
854                         intval($profile_uid)
855                 );
856                 if($x && count($x))
857                         $r[0]['pub_keywords'] = $x[0]['pub_keywords'];
858         }
859
860         $a->profile = $r[0];
861
862
863         $a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
864         $_SESSION['theme'] = $a->profile['theme'];
865
866         /**
867          * load/reload current theme info
868          */
869         $theme_info_file = "view/theme/".current_theme()."/theme.php";
870         if (file_exists($theme_info_file)){
871                 require_once($theme_info_file);
872         }
873
874         if(! (x($a->page,'aside')))
875                 $a->page['aside'] = '';
876
877         if(local_user() && local_user() == $a->profile['uid']) {
878                 $a->page['aside'] .= replace_macros(get_markup_template('profile_edlink.tpl'),array(
879                         '$editprofile' => t('Edit profile'),
880                         '$profid' => $a->profile['id']
881                 ));
882         }
883
884         $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
885
886         $a->page['aside'] .= profile_sidebar($a->profile, $block);
887
888         /*if(! $block)
889                 $a->page['aside'] .= contact_block();*/
890
891         return;
892 }}
893
894
895 /**
896  *
897  * Function: profile_sidebar
898  *
899  * Formats a profile for display in the sidebar.
900  * It is very difficult to templatise the HTML completely
901  * because of all the conditional logic.
902  *
903  * @parameter: array $profile
904  *
905  * Returns HTML string stuitable for sidebar inclusion
906  * Exceptions: Returns empty string if passed $profile is wrong type or not populated
907  *
908  */
909
910
911 if(! function_exists('profile_sidebar')) {
912 function profile_sidebar($profile, $block = 0) {
913
914         $a = get_app();
915
916         $o = '';
917         $location = false;
918         $address = false;
919         $pdesc = true;
920
921         if((! is_array($profile)) && (! count($profile)))
922                 return $o;
923
924         $profile['picdate'] = urlencode($profile['picdate']);
925
926         call_hooks('profile_sidebar_enter', $profile);
927
928         
929         // don't show connect link to yourself
930         $connect = (($profile['uid'] != local_user()) ? t('Connect')  : False);
931
932         // don't show connect link to authenticated visitors either
933
934         if((remote_user()) && ($_SESSION['visitor_visiting'] == $profile['uid']))
935                 $connect = False; 
936
937
938         // show edit profile to yourself
939         if ($profile['uid'] == local_user()) {
940                 $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
941                 
942                 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
943                                 local_user());
944                 
945                 $profile['menu'] = array(
946                         'chg_photo' => t('Change profile photo'),
947                         'cr_new' => t('Create New Profile'),
948                         'entries' => array(),
949                 );
950                                 
951                 if(count($r)) {
952
953                         foreach($r as $rr) {
954                                 $profile['menu']['entries'][] = array(
955                                         'photo' => $rr['thumb'],
956                                         'id' => $rr['id'],
957                                         'alt' => t('Profile Image'),
958                                         'profile_name' => $rr['profile-name'],
959                                         'isdefault' => $rr['is-default'],
960                                         'visibile_to_everybody' =>  t('visible to everybody'),
961                                         'edit_visibility' => t('Edit visibility'),
962                                         
963                                 );
964                         }
965
966
967                 }
968                 
969                 
970         }
971
972
973
974         
975         if((x($profile,'address') == 1) 
976                 || (x($profile,'locality') == 1) 
977                 || (x($profile,'region') == 1) 
978                 || (x($profile,'postal-code') == 1) 
979                 || (x($profile,'country-name') == 1))
980                 $location = t('Location:');
981
982         $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
983
984
985         $marital = ((x($profile,'marital') == 1) ?  t('Status:') : False);
986
987         $homepage = ((x($profile,'homepage') == 1) ?  t('Homepage:') : False);
988
989         if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
990                 $location = $pdesc = $gender = $marital = $homepage = False;
991         }
992
993         $firstname = ((strpos($profile['name'],' ')) 
994                 ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']);
995         $lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname))));
996
997         $diaspora = array(
998                 'podloc' => $a->get_baseurl(),
999                 'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
1000                 'nickname' => $profile['nickname'],
1001                 'fullname' => $profile['name'],
1002                 'firstname' => $firstname,
1003                 'lastname' => $lastname,
1004                 'photo300' => $a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg',
1005                 'photo100' => $a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg',
1006                 'photo50' => $a->get_baseurl() . '/photo/custom/50/'  . $profile['uid'] . '.jpg',
1007         );
1008
1009         if (!$block){
1010                 $contact_block = contact_block();
1011         }
1012
1013
1014         $tpl = get_markup_template('profile_vcard.tpl');
1015
1016         $o .= replace_macros($tpl, array(
1017                 '$profile' => $profile,
1018                 '$connect'  => $connect,                
1019                 '$location' => template_escape($location),
1020                 '$gender'   => $gender,
1021                 '$pdesc'        => $pdesc,
1022                 '$marital'  => $marital,
1023                 '$homepage' => $homepage,
1024                 '$diaspora' => $diaspora,
1025                 '$contact_block' => $contact_block,
1026         ));
1027
1028
1029         $arr = array('profile' => &$profile, 'entry' => &$o);
1030
1031         call_hooks('profile_sidebar', $arr);
1032
1033         return $o;
1034 }}
1035
1036
1037 if(! function_exists('get_birthdays')) {
1038 function get_birthdays() {
1039
1040         $a = get_app();
1041         $o = '';
1042
1043         if(! local_user())
1044                 return $o;
1045
1046         $bd_format = t('g A l F d') ; // 8 AM Friday January 18
1047         $bd_short = t('F d');
1048
1049         $r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event` 
1050                 LEFT JOIN `contact` ON `contact`.`id` = `event`.`cid` 
1051                 WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s' 
1052                 ORDER BY `start` ASC ",
1053                 intval(local_user()),
1054                 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
1055                 dbesc(datetime_convert('UTC','UTC','now'))
1056         );
1057
1058         if($r && count($r)) {
1059                 $total = 0;
1060                 $now = strtotime('now');
1061                 $cids = array();
1062
1063                 $istoday = false;
1064                 foreach($r as $rr) {
1065                         if(strlen($rr['name']))
1066                                 $total ++;
1067                                 if((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now))
1068                                         $istoday = true;
1069                 }
1070                 $classtoday = $istoday ? ' birthday-today ' : '';
1071                 if($total) {
1072                         $o .= '<div id="birthday-notice" class="birthday-notice fakelink' . $classtoday . '" onclick=openClose(\'birthday-wrapper\'); >' . t('Birthday Reminders') . ' ' . '(' . $total . ')' . '</div>'; 
1073                         $o .= '<div id="birthday-wrapper" style="display: none;" ><div id="birthday-title">' . t('Birthdays this week:') . '</div>'; 
1074                         $o .= '<div id="birthday-title-end"></div>';
1075
1076                         foreach($r as $rr) {
1077                                 if(! strlen($rr['name']))
1078                                         continue;
1079
1080                                 // avoid duplicates
1081
1082                                 if(in_array($rr['cid'],$cids))
1083                                         continue;
1084                                 $cids[] = $rr['cid'];
1085
1086                                 $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false); 
1087                                 $sparkle = '';
1088                                 $url = $rr['url'];
1089                                 if($rr['network'] === NETWORK_DFRN) {
1090                                         $sparkle = " sparkle";
1091                                         $url = $a->get_baseurl() . '/redir/'  . $rr['cid'];
1092                                 }
1093         
1094                                 $o .= '<div class="birthday-list" id="birthday-' . $rr['eid'] . '"><a class="birthday-link$sparkle" target="redir" href="' 
1095                                 . $url . '">' . $rr['name'] . '</a> ' 
1096                                 . day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ?  ' ' . t('[today]') : '')
1097                                 . '</div>' ;
1098                         }
1099                         $o .= '</div></div>';
1100                 }
1101         }
1102         return $o;
1103 }}
1104
1105
1106 if(! function_exists('get_events')) {
1107 function get_events() {
1108
1109         require_once('include/bbcode.php');
1110
1111         $a = get_app();
1112         $o = '';
1113
1114         if(! local_user())
1115                 return $o;
1116
1117         $bd_format = t('g A l F d') ; // 8 AM Friday January 18
1118         $bd_short = t('F d');
1119
1120         $r = q("SELECT `event`.* FROM `event` 
1121                 WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `start` > '%s'
1122                 ORDER BY `start` ASC ",
1123                 intval(local_user()),
1124                 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
1125                 dbesc(datetime_convert('UTC','UTC','now - 1 days'))
1126         );
1127
1128         if($r && count($r)) {
1129                 $now = strtotime('now');
1130                 $istoday = false;
1131                 foreach($r as $rr) {
1132                         if(strlen($rr['name']))
1133                                 $total ++;
1134
1135                         $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start'],'Y-m-d');
1136                         if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
1137                                 $istoday = true;
1138                 }
1139                 $classtoday = (($istoday) ? ' event-today ' : '');
1140
1141                 $o .= '<div id="event-notice" class="birthday-notice fakelink' . $classtoday . '" onclick=openClose(\'event-wrapper\'); >' . t('Event Reminders') . ' ' . '(' . count($r) . ')' . '</div>'; 
1142                 $o .= '<div id="event-wrapper" style="display: none;" ><div id="event-title">' . t('Events this week:') . '</div>'; 
1143                 $o .= '<div id="event-title-end"></div>';
1144
1145                 foreach($r as $rr) {
1146
1147                         if($rr['adjust'])
1148                                 $md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m\#\l\i\n\k\-j');
1149                         else
1150                                 $md = datetime_convert('UTC','UTC',$rr['start'],'Y/m\#\l\i\n\k\-j');
1151
1152                         $title = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
1153                         if(! $title)
1154                                 $title = t('[No description]');
1155
1156                         $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
1157                         $today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);  
1158
1159                         $o .= '<div class="event-list" id="event-' . $rr['eid'] . '"></a> <a href="events/' . $md . '">' . $title . '</a>' 
1160                         . day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ?  ' ' . t('[today]') : '')
1161                         . '</div>' ;
1162                 }
1163                 $o .= '</div></div>';
1164         }
1165
1166         return $o;
1167 }}
1168
1169
1170 /**
1171  * 
1172  * Wrap calls to proc_close(proc_open()) and call hook
1173  * so plugins can take part in process :)
1174  * 
1175  * args:
1176  * $cmd program to run
1177  *  next args are passed as $cmd command line
1178  * 
1179  * e.g.: proc_run("ls","-la","/tmp");
1180  * 
1181  * $cmd and string args are surrounded with ""
1182  */
1183
1184 if(! function_exists('proc_run')) {
1185 function proc_run($cmd){
1186
1187         $a = get_app();
1188
1189         $args = func_get_args();
1190         $arr = array('args' => $args, 'run_cmd' => true);
1191
1192         call_hooks("proc_run", $arr);
1193         if(! $arr['run_cmd'])
1194                 return;
1195
1196         if(count($args) && $args[0] === 'php')
1197         $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
1198         foreach ($args as $arg){
1199                 $arg = escapeshellarg($arg);
1200         }
1201         $cmdline = implode($args," ");
1202         proc_close(proc_open($cmdline." &",array(),$foo));
1203 }}
1204
1205 if(! function_exists('current_theme')) {
1206 function current_theme(){
1207         $app_base_themes = array('duepuntozero', 'loozah');
1208         
1209         $a = get_app();
1210         
1211         $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
1212         $theme_name = ((is_array($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme);
1213         
1214         if($theme_name && file_exists('view/theme/' . $theme_name . '/style.css'))
1215                 return($theme_name);
1216         
1217         foreach($app_base_themes as $t) {
1218                 if(file_exists('view/theme/' . $t . '/style.css'))
1219                         return($t);
1220         }
1221         
1222         $fallback = glob('view/theme/*/style.css');
1223         if(count($fallback))
1224                 return (str_replace('view/theme/','', str_replace("/style.css","",$fallback[0])));
1225
1226 }}
1227
1228 /*
1229 * Return full URL to theme which is currently in effect.
1230 * Provide a sane default if nothing is chosen or the specified theme does not exist.
1231 */
1232 if(! function_exists('current_theme_url')) {
1233 function current_theme_url() {
1234         global $a;
1235         $t = current_theme();
1236         return($a->get_baseurl() . '/view/theme/' . $t . '/style.css');
1237 }}
1238
1239 if(! function_exists('feed_birthday')) {
1240 function feed_birthday($uid,$tz) {
1241
1242         /**
1243          *
1244          * Determine the next birthday, but only if the birthday is published
1245          * in the default profile. We _could_ also look for a private profile that the
1246          * recipient can see, but somebody could get mad at us if they start getting
1247          * public birthday greetings when they haven't made this info public. 
1248          *
1249          * Assuming we are able to publish this info, we are then going to convert
1250          * the start time from the owner's timezone to UTC. 
1251          *
1252          * This will potentially solve the problem found with some social networks
1253          * where birthdays are converted to the viewer's timezone and salutations from
1254          * elsewhere in the world show up on the wrong day. We will convert it to the
1255          * viewer's timezone also, but first we are going to convert it from the birthday
1256          * person's timezone to GMT - so the viewer may find the birthday starting at
1257          * 6:00PM the day before, but that will correspond to midnight to the birthday person.
1258          *
1259          */
1260
1261         $birthday = '';
1262
1263         $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
1264                 intval($uid)
1265         );
1266
1267         if($p && count($p)) {
1268                 $tmp_dob = substr($p[0]['dob'],5);
1269                 if(intval($tmp_dob)) {
1270                         $y = datetime_convert($tz,$tz,'now','Y');
1271                         $bd = $y . '-' . $tmp_dob . ' 00:00';
1272                         $t_dob = strtotime($bd);
1273                         $now = strtotime(datetime_convert($tz,$tz,'now'));
1274                         if($t_dob < $now)
1275                                 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
1276                         $birthday = datetime_convert($tz,'UTC',$bd,ATOM_TIME); 
1277                 }
1278         }
1279
1280         return $birthday;
1281 }}
1282
1283 if(! function_exists('is_site_admin')) {
1284 function is_site_admin() {
1285         $a = get_app();
1286         if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
1287                 return true;
1288         return false;
1289 }}
1290
1291
1292 if(! function_exists('load_contact_links')) {
1293 function load_contact_links($uid) {
1294
1295         $a = get_app();
1296
1297         $ret = array();
1298
1299         if(! $uid || x($a->contacts,'empty'))
1300                 return;
1301
1302         $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 ",
1303                         intval($uid)
1304         );
1305         if(count($r)) {
1306                 foreach($r as $rr){
1307                         $url = normalise_link($rr['url']);
1308                         $ret[$url] = $rr;
1309                 }
1310         }
1311         else 
1312                 $ret['empty'] = true;   
1313         $a->contacts = $ret;
1314         return;         
1315 }}
1316
1317 if(! function_exists('profile_tabs')){
1318 function profile_tabs($a, $is_owner=False, $nickname=Null){
1319         //echo "<pre>"; var_dump($a->user); killme();
1320         
1321         if (is_null($nickname))
1322                 $nickname  = $a->user['nickname'];
1323                 
1324         if(x($_GET,'tab'))
1325                 $tab = notags(trim($_GET['tab']));
1326         
1327         $url = $a->get_baseurl() . '/profile/' . $nickname;
1328
1329         $tabs = array(
1330                 array(
1331                         'label'=>t('Status'),
1332                         'url' => $url,
1333                         'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''),
1334                 ),
1335                 array(
1336                         'label' => t('Profile'),
1337                         'url'   => $url.'/?tab=profile',
1338                         'sel'   => (($tab=='profile')?'active':''),
1339                 ),
1340                 array(
1341                         'label' => t('Photos'),
1342                         'url'   => $a->get_baseurl() . '/photos/' . $nickname,
1343                         'sel'   => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''),
1344                 ),
1345         );
1346         
1347         if ($is_owner){
1348                  $tabs[] = array(
1349                         'label' => t('Events'),
1350                         'url'   => $a->get_baseurl() . '/events',
1351                         'sel'   =>((!isset($tab)&&$a->argv[0]=='events')?'active':''),
1352                 );
1353                 $tabs[] = array(
1354                         'label' => t('Personal Notes'),
1355                         'url'   => $a->get_baseurl() . '/notes',
1356                         'sel'   =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''),
1357                 );
1358         }
1359
1360         $tpl = get_markup_template('common_tabs.tpl');
1361         return replace_macros($tpl,array('$tabs'=>$tabs));
1362 }}