]> git.mxchange.org Git - friendica.git/blob - boot.php
fix live update on display page
[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/datetime.php');
8 require_once('include/pgettext.php');
9 require_once('include/nav.php');
10 require_once('include/cache.php');
11 require_once('library/Mobile_Detect/Mobile_Detect.php');
12 require_once('include/features.php');
13
14 define ( 'FRIENDICA_PLATFORM',     'Friendica');
15 define ( 'FRIENDICA_VERSION',      '3.1.1586' );
16 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
17 define ( 'DB_UPDATE_VERSION',      1157      );
18
19 define ( 'EOL',                    "<br />\r\n"     );
20 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
21
22
23 /**
24  *
25  * Image storage quality. Lower numbers save space at cost of image detail.
26  * For ease of upgrade, please do not change here. Change jpeg quality with
27  * $a->config['system']['jpeg_quality'] = n;
28  * in .htconfig.php, where n is netween 1 and 100, and with very poor results
29  * below about 50
30  *
31  */
32
33 define ( 'JPEG_QUALITY',            100  );
34 /**
35  * $a->config['system']['png_quality'] from 0 (uncompressed) to 9
36  */
37 define ( 'PNG_QUALITY',             8  );
38
39 /**
40  *
41  * An alternate way of limiting picture upload sizes. Specify the maximum pixel
42  * length that pictures are allowed to be (for non-square pictures, it will apply
43  * to the longest side). Pictures longer than this length will be resized to be
44  * this length (on the longest side, the other side will be scaled appropriately).
45  * Modify this value using
46  *
47  *    $a->config['system']['max_image_length'] = n;
48  *
49  * in .htconfig.php
50  *
51  * If you don't want to set a maximum length, set to -1. The default value is
52  * defined by 'MAX_IMAGE_LENGTH' below.
53  *
54  */
55 define ( 'MAX_IMAGE_LENGTH',        -1  );
56
57
58 /**
59  * Not yet used
60  */
61
62 define ( 'DEFAULT_DB_ENGINE',  'MyISAM'  );
63
64 /**
65  * SSL redirection policies
66  */
67
68 define ( 'SSL_POLICY_NONE',         0 );
69 define ( 'SSL_POLICY_FULL',         1 );
70 define ( 'SSL_POLICY_SELFSIGN',     2 );
71
72
73 /**
74  * log levels
75  */
76
77 define ( 'LOGGER_NORMAL',          0 );
78 define ( 'LOGGER_TRACE',           1 );
79 define ( 'LOGGER_DEBUG',           2 );
80 define ( 'LOGGER_DATA',            3 );
81 define ( 'LOGGER_ALL',             4 );
82
83 /**
84  * registration policies
85  */
86
87 define ( 'REGISTER_CLOSED',        0 );
88 define ( 'REGISTER_APPROVE',       1 );
89 define ( 'REGISTER_OPEN',          2 );
90
91 /**
92  * relationship types
93  */
94
95 define ( 'CONTACT_IS_FOLLOWER', 1);
96 define ( 'CONTACT_IS_SHARING',  2);
97 define ( 'CONTACT_IS_FRIEND',   3);
98
99
100 /**
101  * DB update return values
102  */
103
104 define ( 'UPDATE_SUCCESS', 0);
105 define ( 'UPDATE_FAILED',  1);
106
107
108 /**
109  *
110  * page/profile types
111  *
112  * PAGE_NORMAL is a typical personal profile account
113  * PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
114  * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with
115  *      write access to wall and comments (no email and not included in page owner's ACL lists)
116  * PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).
117  *
118  */
119
120 define ( 'PAGE_NORMAL',            0 );
121 define ( 'PAGE_SOAPBOX',           1 );
122 define ( 'PAGE_COMMUNITY',         2 );
123 define ( 'PAGE_FREELOVE',          3 );
124 define ( 'PAGE_BLOG',              4 );
125 define ( 'PAGE_PRVGROUP',          5 );
126
127 /**
128  * Network and protocol family types
129  */
130
131 define ( 'NETWORK_DFRN',             'dfrn');    // Friendica, Mistpark, other DFRN implementations
132 define ( 'NETWORK_ZOT',              'zot!');    // Zot!
133 define ( 'NETWORK_OSTATUS',          'stat');    // status.net, identi.ca, GNU-social, other OStatus implementations
134 define ( 'NETWORK_FEED',             'feed');    // RSS/Atom feeds with no known "post/notify" protocol
135 define ( 'NETWORK_DIASPORA',         'dspr');    // Diaspora
136 define ( 'NETWORK_MAIL',             'mail');    // IMAP/POP
137 define ( 'NETWORK_MAIL2',            'mai2');    // extended IMAP/POP
138 define ( 'NETWORK_FACEBOOK',         'face');    // Facebook API
139 define ( 'NETWORK_LINKEDIN',         'lnkd');    // LinkedIn
140 define ( 'NETWORK_XMPP',             'xmpp');    // XMPP
141 define ( 'NETWORK_MYSPACE',          'mysp');    // MySpace
142 define ( 'NETWORK_GPLUS',            'goog');    // Google+
143
144 define ( 'NETWORK_PHANTOM',          'unkn');    // Place holder
145
146 /**
147  * These numbers are used in stored permissions
148  * and existing allocations MUST NEVER BE CHANGED
149  * OR RE-ASSIGNED! You may only add to them.
150  */
151
152 $netgroup_ids = array(
153         NETWORK_DFRN     => (-1),
154         NETWORK_ZOT      => (-2),
155         NETWORK_OSTATUS  => (-3),
156         NETWORK_FEED     => (-4),
157         NETWORK_DIASPORA => (-5),
158         NETWORK_MAIL     => (-6),
159         NETWORK_MAIL2    => (-7),
160         NETWORK_FACEBOOK => (-8),
161         NETWORK_LINKEDIN => (-9),
162         NETWORK_XMPP     => (-10),
163         NETWORK_MYSPACE  => (-11),
164         NETWORK_GPLUS    => (-12),
165
166         NETWORK_PHANTOM  => (-127),
167 );
168
169
170 /**
171  * Maximum number of "people who like (or don't like) this"  that we will list by name
172  */
173
174 define ( 'MAX_LIKERS',    75);
175
176 /**
177  * Communication timeout
178  */
179
180 define ( 'ZCURL_TIMEOUT' , (-1));
181
182
183 /**
184  * email notification options
185  */
186
187 define ( 'NOTIFY_INTRO',    0x0001 );
188 define ( 'NOTIFY_CONFIRM',  0x0002 );
189 define ( 'NOTIFY_WALL',     0x0004 );
190 define ( 'NOTIFY_COMMENT',  0x0008 );
191 define ( 'NOTIFY_MAIL',     0x0010 );
192 define ( 'NOTIFY_SUGGEST',  0x0020 );
193 define ( 'NOTIFY_PROFILE',  0x0040 );
194 define ( 'NOTIFY_TAGSELF',  0x0080 );
195 define ( 'NOTIFY_TAGSHARE', 0x0100 );
196 define ( 'NOTIFY_POKE',     0x0200 );
197
198 define ( 'NOTIFY_SYSTEM',   0x8000 );
199
200
201 /**
202  * Tag/term types
203  */
204
205 define ( 'TERM_UNKNOWN',   0 );
206 define ( 'TERM_HASHTAG',   1 );
207 define ( 'TERM_MENTION',   2 );   
208 define ( 'TERM_CATEGORY',  3 );
209 define ( 'TERM_PCATEGORY', 4 );
210 define ( 'TERM_FILE',      5 );
211
212 define ( 'TERM_OBJ_POST',  1 );
213 define ( 'TERM_OBJ_PHOTO', 2 );
214
215
216
217 /**
218  * various namespaces we may need to parse
219  */
220
221 define ( 'NAMESPACE_ZOT',             'http://purl.org/zot' );
222 define ( 'NAMESPACE_DFRN' ,           'http://purl.org/macgirvin/dfrn/1.0' );
223 define ( 'NAMESPACE_THREAD' ,         'http://purl.org/syndication/thread/1.0' );
224 define ( 'NAMESPACE_TOMB' ,           'http://purl.org/atompub/tombstones/1.0' );
225 define ( 'NAMESPACE_ACTIVITY',        'http://activitystrea.ms/spec/1.0/' );
226 define ( 'NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/' );
227 define ( 'NAMESPACE_MEDIA',           'http://purl.org/syndication/atommedia' );
228 define ( 'NAMESPACE_SALMON_ME',       'http://salmon-protocol.org/ns/magic-env' );
229 define ( 'NAMESPACE_OSTATUSSUB',      'http://ostatus.org/schema/1.0/subscribe' );
230 define ( 'NAMESPACE_GEORSS',          'http://www.georss.org/georss' );
231 define ( 'NAMESPACE_POCO',            'http://portablecontacts.net/spec/1.0' );
232 define ( 'NAMESPACE_FEED',            'http://schemas.google.com/g/2010#updates-from' );
233 define ( 'NAMESPACE_OSTATUS',         'http://ostatus.org/schema/1.0' );
234 define ( 'NAMESPACE_STATUSNET',       'http://status.net/schema/api/1/' );
235 define ( 'NAMESPACE_ATOM1',           'http://www.w3.org/2005/Atom' );
236 /**
237  * activity stream defines
238  */
239
240 define ( 'ACTIVITY_LIKE',        NAMESPACE_ACTIVITY_SCHEMA . 'like' );
241 define ( 'ACTIVITY_DISLIKE',     NAMESPACE_DFRN            . '/dislike' );
242 define ( 'ACTIVITY_OBJ_HEART',   NAMESPACE_DFRN            . '/heart' );
243
244 define ( 'ACTIVITY_FRIEND',      NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
245 define ( 'ACTIVITY_REQ_FRIEND',  NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
246 define ( 'ACTIVITY_UNFRIEND',    NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
247 define ( 'ACTIVITY_FOLLOW',      NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
248 define ( 'ACTIVITY_UNFOLLOW',    NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
249 define ( 'ACTIVITY_JOIN',        NAMESPACE_ACTIVITY_SCHEMA . 'join' );
250
251 define ( 'ACTIVITY_POST',        NAMESPACE_ACTIVITY_SCHEMA . 'post' );
252 define ( 'ACTIVITY_UPDATE',      NAMESPACE_ACTIVITY_SCHEMA . 'update' );
253 define ( 'ACTIVITY_TAG',         NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
254 define ( 'ACTIVITY_FAVORITE',    NAMESPACE_ACTIVITY_SCHEMA . 'favorite' );
255
256 define ( 'ACTIVITY_POKE',        NAMESPACE_ZOT . '/activity/poke' );
257 define ( 'ACTIVITY_MOOD',        NAMESPACE_ZOT . '/activity/mood' );
258
259 define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
260 define ( 'ACTIVITY_OBJ_NOTE',    NAMESPACE_ACTIVITY_SCHEMA . 'note' );
261 define ( 'ACTIVITY_OBJ_PERSON',  NAMESPACE_ACTIVITY_SCHEMA . 'person' );
262 define ( 'ACTIVITY_OBJ_PHOTO',   NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
263 define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
264 define ( 'ACTIVITY_OBJ_ALBUM',   NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
265 define ( 'ACTIVITY_OBJ_EVENT',   NAMESPACE_ACTIVITY_SCHEMA . 'event' );
266 define ( 'ACTIVITY_OBJ_GROUP',   NAMESPACE_ACTIVITY_SCHEMA . 'group' );
267 define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN            . '/tagterm' );
268 define ( 'ACTIVITY_OBJ_PROFILE', NAMESPACE_DFRN            . '/profile' );
269
270 /**
271  * item weight for query ordering
272  */
273
274 define ( 'GRAVITY_PARENT',       0);
275 define ( 'GRAVITY_LIKE',         3);
276 define ( 'GRAVITY_COMMENT',      6);
277
278 /**
279  *
280  * Reverse the effect of magic_quotes_gpc if it is enabled.
281  * Please disable magic_quotes_gpc so we don't have to do this.
282  * See http://php.net/manual/en/security.magicquotes.disabling.php
283  *
284  */
285
286 function startup() {
287         
288         error_reporting(E_ERROR | E_WARNING | E_PARSE);
289
290         set_time_limit(0);
291
292         // This has to be quite large to deal with embedded private photos
293         ini_set('pcre.backtrack_limit', 500000);
294
295
296         if (get_magic_quotes_gpc()) {
297                 $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
298                 while (list($key, $val) = each($process)) {
299                         foreach ($val as $k => $v) {
300                                 unset($process[$key][$k]);
301                                 if (is_array($v)) {
302                                         $process[$key][stripslashes($k)] = $v;
303                                         $process[] = &$process[$key][stripslashes($k)];
304                                 } else {
305                                         $process[$key][stripslashes($k)] = stripslashes($v);
306                                 }
307                         }
308                 }
309                 unset($process);
310         }
311
312 }
313
314 /**
315  *
316  * class: App
317  *
318  * Our main application structure for the life of this page
319  * Primarily deals with the URL that got us here
320  * and tries to make some sense of it, and
321  * stores our page contents and config storage
322  * and anything else that might need to be passed around
323  * before we spit the page out.
324  *
325  */
326
327 if(! class_exists('App')) {
328         class App {
329
330                 public  $module_loaded = false;
331                 public  $query_string;
332                 public  $config;
333                 public  $page;
334                 public  $profile;
335                 public  $user;
336                 public  $cid;
337                 public  $contact;
338                 public  $contacts;
339                 public  $page_contact;
340                 public  $content;
341                 public  $data = array();
342                 public  $error = false;
343                 public  $cmd;
344                 public  $argv;
345                 public  $argc;
346                 public  $module;
347                 public  $pager;
348                 public  $strings;
349                 public  $path;
350                 public  $hooks;
351                 public  $timezone;
352                 public  $interactive = true;
353                 public  $plugins;
354                 public  $apps = array();
355                 public  $identities;
356                 public  $is_mobile;
357                 public  $is_tablet;
358         
359                 public $nav_sel;
360
361                 public $category;
362
363
364                 // Allow themes to control internal parameters
365                 // by changing App values in theme.php
366
367                 public  $sourcename = '';
368                 public  $videowidth = 425;
369                 public  $videoheight = 350;
370                 public  $force_max_items = 0;
371                 public  $theme_thread_allow = true;
372
373                 // An array for all theme-controllable parameters
374                 // Mostly unimplemented yet. Only options 'stylesheet' and
375                 // beyond are used.
376
377                 public  $theme = array(
378                         'sourcename' => '',
379                         'videowidth' => 425,
380                         'videoheight' => 350,
381                         'force_max_items' => 0,
382                         'thread_allow' => true,
383                         'stylesheet' => '',
384                         'template_engine' => 'internal',
385                 );
386
387                 private $ldelim = array(
388                         'internal' => '',
389                         'smarty3' => '{{'
390                 );
391                 private $rdelim = array(
392                         'internal' => '',
393                         'smarty3' => '}}'
394                 );
395
396                 private $scheme;
397                 private $hostname;
398                 private $baseurl;
399                 private $db;
400
401                 private $curl_code;
402                 private $curl_headers;
403
404                 private $cached_profile_image;
405                 private $cached_profile_picdate;
406                                                         
407                 function __construct() {
408
409                         global $default_timezone, $argv, $argc;
410
411                         $this->timezone = ((x($default_timezone)) ? $default_timezone : 'UTC');
412
413                         date_default_timezone_set($this->timezone);
414
415                         $this->config = array();
416                         $this->page = array();
417                         $this->pager= array();
418
419                         $this->query_string = '';
420
421                         startup();
422
423                         $this->scheme = 'http';
424                         if(x($_SERVER,'HTTPS') && $_SERVER['HTTPS'])
425                                 $this->scheme = 'https';
426                         elseif(x($_SERVER,'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443))
427                         $this->scheme = 'https';
428
429                         if(x($_SERVER,'SERVER_NAME')) {
430                                 $this->hostname = $_SERVER['SERVER_NAME'];
431
432                                 // See bug 437 - this didn't work so disabling it
433                                 //if(stristr($this->hostname,'xn--')) {
434                                         // PHP or webserver may have converted idn to punycode, so
435                                         // convert punycode back to utf-8
436                                 //      require_once('library/simplepie/idn/idna_convert.class.php');
437                                 //      $x = new idna_convert();
438                                 //      $this->hostname = $x->decode($_SERVER['SERVER_NAME']);
439                                 //}
440
441                                 if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443)
442                                         $this->hostname .= ':' . $_SERVER['SERVER_PORT'];
443                                 /**
444                                  * Figure out if we are running at the top of a domain
445                                  * or in a sub-directory and adjust accordingly
446                                  */
447
448                                 $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
449                                 if(isset($path) && strlen($path) && ($path != $this->path))
450                                         $this->path = $path;
451                         }
452                         if (is_array($argv) && $argc>1 && substr(end($argv), 0, 4)=="http" ) {
453                                 $this->set_baseurl(array_pop($argv) );
454                                 $argc --;
455                         }
456
457                         set_include_path(
458                                         "include/$this->hostname" . PATH_SEPARATOR
459                                         . 'include' . PATH_SEPARATOR
460                                         . 'library' . PATH_SEPARATOR
461                                         . 'library/phpsec' . PATH_SEPARATOR
462                                         . 'library/langdet' . PATH_SEPARATOR
463                                         . '.' );
464             
465
466                         if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") {
467                                 $this->query_string = substr($_SERVER['QUERY_STRING'],2);
468                                 // removing trailing / - maybe a nginx problem
469                                 if (substr($this->query_string, 0, 1) == "/")
470                                         $this->query_string = substr($this->query_string, 1);
471                         }
472                         if(x($_GET,'q'))
473                                 $this->cmd = trim($_GET['q'],'/\\');
474
475                         // unix style "homedir"
476
477                         if(substr($this->cmd,0,1) === '~')
478                                 $this->cmd = 'profile/' . substr($this->cmd,1);
479
480                         // Diaspora style profile url
481
482                         if(substr($this->cmd,0,2) === 'u/')
483                                 $this->cmd = 'profile/' . substr($this->cmd,2);
484
485                         /**
486                          *
487                          * Break the URL path into C style argc/argv style arguments for our
488                          * modules. Given "http://example.com/module/arg1/arg2", $this->argc
489                          * will be 3 (integer) and $this->argv will contain:
490                          *   [0] => 'module'
491                          *   [1] => 'arg1'
492                          *   [2] => 'arg2'
493                          *
494                          *
495                          * There will always be one argument. If provided a naked domain
496                          * URL, $this->argv[0] is set to "home".
497                          *
498                          */
499
500                         $this->argv = explode('/',$this->cmd);
501                         $this->argc = count($this->argv);
502                         if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
503                                 $this->module = str_replace(".", "_", $this->argv[0]);
504                                 $this->module = str_replace("-", "_", $this->module);
505                         }
506                         else {
507                                 $this->argc = 1;
508                                 $this->argv = array('home');
509                                 $this->module = 'home';
510                         }
511
512                         /**
513                          * See if there is any page number information, and initialise
514                          * pagination
515                          */
516
517                         $this->pager['page'] = ((x($_GET,'page') && intval($_GET['page']) > 0) ? intval($_GET['page']) : 1);
518                         $this->pager['itemspage'] = 50;
519                         $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
520                         if($this->pager['start'] < 0)
521                                 $this->pager['start'] = 0;
522                         $this->pager['total'] = 0;
523
524                         /**
525                          * Detect mobile devices
526                          */
527
528                         $mobile_detect = new Mobile_Detect();
529                         $this->is_mobile = $mobile_detect->isMobile();
530                         $this->is_tablet = $mobile_detect->isTablet();
531                 }
532
533                 function get_basepath() {
534
535                         $basepath = get_config("system", "basepath");
536
537                         if ($basepath == "")
538                                 $basepath = $_SERVER["DOCUMENT_ROOT"];
539
540                         if ($basepath == "")
541                                 $basepath = $_SERVER["PWD"];
542
543                         return($basepath);
544                 }
545
546                 function get_baseurl($ssl = false) {
547
548                         $scheme = $this->scheme;
549
550                         if((x($this->config,'system')) && (x($this->config['system'],'ssl_policy'))) {
551                                 if(intval($this->config['system']['ssl_policy']) === intval(SSL_POLICY_FULL))
552                                         $scheme = 'https';
553
554                                 //      Basically, we have $ssl = true on any links which can only be seen by a logged in user
555                                 //      (and also the login link). Anything seen by an outsider will have it turned off.
556
557                                 if($this->config['system']['ssl_policy'] == SSL_POLICY_SELFSIGN) {
558                                         if($ssl)
559                                                 $scheme = 'https';
560                                         else
561                                                 $scheme = 'http';
562                                 }
563                         }
564
565                         $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
566                         return $this->baseurl;
567                 }
568
569                 function set_baseurl($url) {
570                         $parsed = @parse_url($url);
571
572                         $this->baseurl = $url;
573
574                         if($parsed) {
575                                 $this->scheme = $parsed['scheme'];
576
577                                 $this->hostname = $parsed['host'];
578                                 if(x($parsed,'port'))
579                                         $this->hostname .= ':' . $parsed['port'];
580                                 if(x($parsed,'path'))
581                                         $this->path = trim($parsed['path'],'\\/');
582                         }
583
584                 }
585
586                 function get_hostname() {
587                         return $this->hostname;
588                 }
589
590                 function set_hostname($h) {
591                         $this->hostname = $h;
592                 }
593
594                 function set_path($p) {
595                         $this->path = trim(trim($p),'/');
596                 }
597
598                 function get_path() {
599                         return $this->path;
600                 }
601
602                 function set_pager_total($n) {
603                         $this->pager['total'] = intval($n);
604                 }
605
606                 function set_pager_itemspage($n) {
607                         $this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0);
608                         $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
609
610                 }
611
612                 function init_pagehead() {
613                         $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000);
614                         if($interval < 10000)
615                                 $interval = 40000;
616
617                         $this->page['title'] = $this->config['sitename'];
618
619                         /* put the head template at the beginning of page['htmlhead']
620                          * since the code added by the modules frequently depends on it
621                          * being first
622                          */
623                         if(!isset($this->page['htmlhead']))
624                                 $this->page['htmlhead'] = '';
625                         $tpl = get_markup_template('head.tpl');
626
627                         // If we're using Smarty, then doing replace_macros() will replace
628                         // any unrecognized variables with a blank string. Since we delay
629                         // replacing $stylesheet until later, we need to replace it now
630                         // with another variable name
631                         if($this->theme['template_engine'] === 'smarty3')
632                                 $stylesheet = $this->get_template_ldelim('smarty3') . '$stylesheet' . $this->get_template_rdelim('smarty3');
633                         else
634                                 $stylesheet = '$stylesheet';
635
636                         $this->page['htmlhead'] = replace_macros($tpl,array(
637                                 '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
638                                 '$local_user' => local_user(),
639                                 '$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
640                                 '$delitem' => t('Delete this item?'),
641                                 '$comment' => t('Comment'),
642                                 '$showmore' => t('show more'),
643                                 '$showfewer' => t('show fewer'),
644                                 '$update_interval' => $interval,
645                                 '$stylesheet' => $stylesheet
646                         )) . $this->page['htmlhead'];
647                 }
648
649                 function init_page_end() {
650                         if(!isset($this->page['end']))
651                                 $this->page['end'] = '';
652                         $tpl = get_markup_template('end.tpl');
653                         $this->page['end'] = replace_macros($tpl,array(
654                                 '$baseurl' => $this->get_baseurl() // FIXME for z_path!!!!
655                         )) . $this->page['end'];
656                 }
657
658                 function set_curl_code($code) {
659                         $this->curl_code = $code;
660                 }
661
662                 function get_curl_code() {
663                         return $this->curl_code;
664                 }
665
666                 function set_curl_headers($headers) {
667                         $this->curl_headers = $headers;
668                 }
669
670                 function get_curl_headers() {
671                         return $this->curl_headers;
672                 }
673
674                 function get_cached_avatar_image($avatar_image){
675                         if($this->cached_profile_image[$avatar_image])
676                                 return $this->cached_profile_image[$avatar_image];
677
678                         $path_parts = explode("/",$avatar_image);
679                         $common_filename = $path_parts[count($path_parts)-1];
680
681                         if($this->cached_profile_picdate[$common_filename]){
682                                 $this->cached_profile_image[$avatar_image] = $avatar_image . $this->cached_profile_picdate[$common_filename];
683                         } else {
684                                 $r = q("SELECT `contact`.`avatar-date` AS picdate FROM `contact` WHERE `contact`.`thumb` like \"%%/%s\"",
685                                         $common_filename);
686                                 if(! count($r)){
687                                         $this->cached_profile_image[$avatar_image] = $avatar_image;
688                                 } else {
689                                         $this->cached_profile_picdate[$common_filename] = "?rev=" . urlencode($r[0]['picdate']);
690                                         $this->cached_profile_image[$avatar_image] = $avatar_image . $this->cached_profile_picdate[$common_filename];
691                                 }
692                         }
693                         return $this->cached_profile_image[$avatar_image];
694                 }
695
696                 function get_template_engine() {
697                         return $this->theme['template_engine'];
698                 }
699
700                 function set_template_engine($engine = 'internal') {
701
702                         $this->theme['template_engine'] = 'internal';
703
704                         switch($engine) {
705                                 case 'smarty3':
706                                         if(is_writable('view/smarty3/'))
707                                                 $this->theme['template_engine'] = 'smarty3';
708                                         break;
709                                 default:
710                                         break;
711                         }
712                 }
713
714                 function get_template_ldelim($engine = 'internal') {
715                         return $this->ldelim[$engine];
716                 }
717
718                 function get_template_rdelim($engine = 'internal') {
719                         return $this->rdelim[$engine];
720                 }
721
722         }
723 }
724
725 // retrieve the App structure
726 // useful in functions which require it but don't get it passed to them
727
728 if(! function_exists('get_app')) {
729         function get_app() {
730                 global $a;
731                 return $a;
732         }
733 };
734
735
736 // Multi-purpose function to check variable state.
737 // Usage: x($var) or $x($array,'key')
738 // returns false if variable/key is not set
739 // if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
740 // e.g. x('') or x(0) returns 0;
741
742 if(! function_exists('x')) {
743         function x($s,$k = NULL) {
744                 if($k != NULL) {
745                         if((is_array($s)) && (array_key_exists($k,$s))) {
746                                 if($s[$k])
747                                         return (int) 1;
748                                 return (int) 0;
749                 }
750                         return false;
751                 }
752                 else {
753                         if(isset($s)) {
754                                 if($s) {
755                                         return (int) 1;
756                                 }
757                                 return (int) 0;
758                         }
759                         return false;
760                 }
761         }
762 }
763
764 // called from db initialisation if db is dead.
765
766 if(! function_exists('system_unavailable')) {
767         function system_unavailable() {
768                 include('system_unavailable.php');
769                 system_down();
770                 killme();
771         }
772 }
773
774
775
776 function clean_urls() {
777         global $a;
778         //      if($a->config['system']['clean_urls'])
779         return true;
780         //      return false;
781 }
782
783 function z_path() {
784         global $a;
785         $base = $a->get_baseurl();
786         if(! clean_urls())
787                 $base .= '/?q=';
788         return $base;
789 }
790
791 function z_root() {
792         global $a;
793         return $a->get_baseurl();
794 }
795
796 function absurl($path) {
797         if(strpos($path,'/') === 0)
798                 return z_path() . $path;
799         return $path;
800 }
801
802 function is_ajax() {
803         return (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');
804 }
805
806
807 // Primarily involved with database upgrade, but also sets the
808 // base url for use in cmdline programs which don't have
809 // $_SERVER variables, and synchronising the state of installed plugins.
810
811
812 if(! function_exists('check_config')) {
813         function check_config(&$a) {
814
815                 $build = get_config('system','build');
816                 if(! x($build))
817                         $build = set_config('system','build',DB_UPDATE_VERSION);
818
819                 $url = get_config('system','url');
820
821                 // if the url isn't set or the stored url is radically different
822                 // than the currently visited url, store the current value accordingly.
823                 // "Radically different" ignores common variations such as http vs https
824                 // and www.example.com vs example.com.
825                 // We will only change the url to an ip address if there is no existing setting
826
827                 if(! x($url))
828                         $url = set_config('system','url',$a->get_baseurl());
829                 if((! link_compare($url,$a->get_baseurl())) && (! preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/",$a->get_hostname)))
830                         $url = set_config('system','url',$a->get_baseurl());
831
832
833                 if($build != DB_UPDATE_VERSION) {
834                         $stored = intval($build);
835                         $current = intval(DB_UPDATE_VERSION);
836                         if(($stored < $current) && file_exists('update.php')) {
837
838                                 load_config('database');
839
840                                 // We're reporting a different version than what is currently installed.
841                                 // Run any existing update scripts to bring the database up to current.
842
843                                 require_once('update.php');
844
845                                 // make sure that boot.php and update.php are the same release, we might be
846                                 // updating right this very second and the correct version of the update.php
847                                 // file may not be here yet. This can happen on a very busy site.
848
849                                 if(DB_UPDATE_VERSION == UPDATE_VERSION) {
850
851                                         for($x = $stored; $x < $current; $x ++) {
852                                                 if(function_exists('update_' . $x)) {
853
854                                                         // There could be a lot of processes running or about to run.
855                                                         // We want exactly one process to run the update command.
856                                                         // So store the fact that we're taking responsibility
857                                                         // after first checking to see if somebody else already has.
858
859                                                         // If the update fails or times-out completely you may need to
860                                                         // delete the config entry to try again.
861
862                                                         $t = get_config('database','update_' . $x);
863                                                         if($t !== false)
864                                                                 break;
865                                                         set_config('database','update_' . $x, time());
866
867                                                         // call the specific update
868
869                                                         $func = 'update_' . $x;
870                                                         $retval = $func();
871                                                         if($retval) {
872                                                                 //send the administrator an e-mail
873                                                                 $email_tpl = get_intltext_template("update_fail_eml.tpl");
874                                                                 $email_msg = replace_macros($email_tpl, array(
875                                                                         '$sitename' => $a->config['sitename'],
876                                                                         '$siteurl' =>  $a->get_baseurl(),
877                                                                         '$update' => $x,
878                                                                         '$error' => sprintf( t('Update %s failed. See error logs.'), $x)
879                                                                 ));
880                                                                 $subject=sprintf(t('Update Error at %s'), $a->get_baseurl());
881                                                                 require_once('include/email.php');
882                                                                 $subject = email_header_encode($subject,'UTF-8');       
883                                                                 mail($a->config['admin_email'], $subject, $email_msg,
884                                                                         'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
885                                                                         . 'Content-type: text/plain; charset=UTF-8' . "\n"
886                                                                         . 'Content-transfer-encoding: 8bit' );
887                                                                 //try the logger
888                                                                 logger('CRITICAL: Update Failed: '. $x);
889                                                                 break;
890                                                         }
891                                                         else {
892                                                                 set_config('database','update_' . $x, 'success');
893                                                                 set_config('system','build', $x + 1);
894                                                         }                                                               
895                                                 }
896                                         }
897                                 }
898                         }
899                 }
900
901                 /**
902                  *
903                  * Synchronise plugins:
904                  *
905                  * $a->config['system']['addon'] contains a comma-separated list of names
906                  * of plugins/addons which are used on this system.
907                  * Go through the database list of already installed addons, and if we have
908                  * an entry, but it isn't in the config list, call the uninstall procedure
909                  * and mark it uninstalled in the database (for now we'll remove it).
910                  * Then go through the config list and if we have a plugin that isn't installed,
911                  * call the install procedure and add it to the database.
912                  *
913                  */
914
915                 $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
916                 if(count($r))
917                         $installed = $r;
918                 else
919                         $installed = array();
920
921                 $plugins = get_config('system','addon');
922                 $plugins_arr = array();
923
924                 if($plugins)
925                         $plugins_arr = explode(',',str_replace(' ', '',$plugins));
926
927                 $a->plugins = $plugins_arr;
928
929                 $installed_arr = array();
930
931                 if(count($installed)) {
932                         foreach($installed as $i) {
933                                 if(! in_array($i['name'],$plugins_arr)) {
934                                         uninstall_plugin($i['name']);
935                                 }
936                                 else {
937                                         $installed_arr[] = $i['name'];
938                                 }
939                         }
940                 }
941
942                 if(count($plugins_arr)) {
943                         foreach($plugins_arr as $p) {
944                                 if(! in_array($p,$installed_arr)) {
945                                         install_plugin($p);
946                                 }
947                         }
948                 }
949
950
951                 load_hooks();
952
953                 return;
954         }
955 }
956
957
958 function get_guid($size=16) {
959         $exists = true; // assume by default that we don't have a unique guid
960         do {
961                 $s = random_string($size);
962                 $r = q("select id from guid where guid = '%s' limit 1", dbesc($s));
963                 if(! count($r))
964                         $exists = false;
965         } while($exists);
966         q("insert into guid ( guid ) values ( '%s' ) ", dbesc($s));
967         return $s;
968 }
969
970
971 // wrapper for adding a login box. If $register == true provide a registration
972 // link. This will most always depend on the value of $a->config['register_policy'].
973 // returns the complete html for inserting into the page
974
975 if(! function_exists('login')) {
976         function login($register = false, $hiddens=false) {
977                 $a = get_app();
978                 $o = "";
979                 $reg = false;
980                 if ($register) {
981                         $reg = array(
982                                 'title' => t('Create a New Account'),
983                                 'desc' => t('Register')
984                         );
985                 }
986
987                 $noid = get_config('system','no_openid');
988         
989                 $dest_url = $a->get_baseurl(true) . '/' . $a->query_string;
990
991                 if(local_user()) {
992                         $tpl = get_markup_template("logout.tpl");
993                 }
994                 else {
995                         $a->page['htmlhead'] .= replace_macros(get_markup_template("login_head.tpl"),array(
996                                 '$baseurl'              => $a->get_baseurl(true)
997                         ));
998
999                         $tpl = get_markup_template("login.tpl");
1000                         $_SESSION['return_url'] = $a->query_string;
1001                         $a->module = 'login';
1002                 }
1003
1004                 $o .= replace_macros($tpl, array(
1005
1006                         '$dest_url'     => $dest_url,
1007                         '$logout'       => t('Logout'),
1008                         '$login'        => t('Login'),
1009         
1010                         '$lname'                => array('username', t('Nickname or Email address: ') , '', ''),
1011                         '$lpassword'    => array('password', t('Password: '), '', ''),
1012                         '$lremember'    => array('remember', t('Remember me'), 0, ''),
1013         
1014                         '$openid'               => !$noid,
1015                         '$lopenid'      => array('openid_url', t('Or login using OpenID: '),'',''),
1016         
1017                         '$hiddens'      => $hiddens,
1018         
1019                         '$register'     => $reg,
1020         
1021                         '$lostpass'     => t('Forgot your password?'),
1022                         '$lostlink'     => t('Password Reset'),
1023
1024                         '$tostitle'     => t('Website Terms of Service'),
1025                         '$toslink'      => t('terms of service'),
1026
1027                         '$privacytitle' => t('Website Privacy Policy'),
1028                         '$privacylink'  => t('privacy policy'),
1029
1030                 ));
1031
1032                 call_hooks('login_hook',$o);
1033
1034                 return $o;
1035         }
1036 }
1037
1038 // Used to end the current process, after saving session state.
1039
1040 if(! function_exists('killme')) {
1041         function killme() {
1042                 session_write_close();
1043                 exit;
1044         }
1045 }
1046
1047 // redirect to another URL and terminate this process.
1048
1049 if(! function_exists('goaway')) {
1050         function goaway($s) {
1051                 header("Location: $s");
1052                 killme();
1053         }
1054 }
1055
1056
1057 // Returns the uid of locally logged in user or false.
1058
1059 if(! function_exists('local_user')) {
1060         function local_user() {
1061                 if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid')))
1062                         return intval($_SESSION['uid']);
1063                 return false;
1064         }
1065 }
1066
1067 // Returns contact id of authenticated site visitor or false
1068
1069 if(! function_exists('remote_user')) {
1070         function remote_user() {
1071                 if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id')))
1072                         return intval($_SESSION['visitor_id']);
1073                 return false;
1074         }
1075 }
1076
1077 // contents of $s are displayed prominently on the page the next time
1078 // a page is loaded. Usually used for errors or alerts.
1079
1080 if(! function_exists('notice')) {
1081         /**
1082          * Show an error message to user.
1083          * 
1084          * This function save text in session, to be shown to the user at next page load
1085          * 
1086          * @param string $s - Text of notice
1087          */
1088         function notice($s) {
1089                 $a = get_app();
1090                 if(! x($_SESSION,'sysmsg'))     $_SESSION['sysmsg'] = array();
1091                 if($a->interactive)
1092                         $_SESSION['sysmsg'][] = $s;
1093         }
1094 }
1095 if(! function_exists('info')) {
1096         /**
1097          * Show an info message to user.
1098          * 
1099          * This function save text in session, to be shown to the user at next page load
1100          * 
1101          * @param string $s - Text of notice
1102          */
1103         function info($s) {
1104                 $a = get_app();
1105                 if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array();
1106                 if($a->interactive)
1107                         $_SESSION['sysmsg_info'][] = $s;
1108         }
1109 }
1110
1111
1112 // wrapper around config to limit the text length of an incoming message
1113
1114 if(! function_exists('get_max_import_size')) {
1115         function get_max_import_size() {
1116                 global $a;
1117                 return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
1118         }
1119 }
1120
1121
1122
1123 /**
1124  *
1125  * Function : profile_load
1126  * @parameter App    $a
1127  * @parameter string $nickname
1128  * @parameter int    $profile
1129  *
1130  * Summary: Loads a profile into the page sidebar.
1131  * The function requires a writeable copy of the main App structure, and the nickname
1132  * of a registered local account.
1133  *
1134  * If the viewer is an authenticated remote viewer, the profile displayed is the
1135  * one that has been configured for his/her viewing in the Contact manager.
1136  * Passing a non-zero profile ID can also allow a preview of a selected profile
1137  * by the owner.
1138  *
1139  * Profile information is placed in the App structure for later retrieval.
1140  * Honours the owner's chosen theme for display.
1141  *
1142  * IMPORTANT: Should only be run in the _init() functions of a module. That ensures that
1143  * the theme is chosen before the _init() function of a theme is run, which will usually
1144  * load a lot of theme-specific content
1145  *
1146  */
1147
1148 if(! function_exists('profile_load')) {
1149         function profile_load(&$a, $nickname, $profile = 0) {
1150
1151                 $user = q("select uid from user where nickname = '%s' limit 1",
1152                         dbesc($nickname)
1153                 );
1154                 
1155                 if(! ($user && count($user))) {
1156                         logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
1157                         notice( t('Requested account is not available.') . EOL );
1158                         $a->error = 404;
1159                         return;
1160                 }
1161
1162                 if(remote_user() && count($_SESSION['remote'])) {
1163                         foreach($_SESSION['remote'] as $visitor) {
1164                                 if($visitor['uid'] == $user[0]['uid']) {
1165                                         $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
1166                                                 intval($visitor['cid'])
1167                                         );
1168                                         if(count($r))
1169                                                 $profile = $r[0]['profile-id'];
1170                                         break;
1171                                 }
1172                         }
1173                 }
1174
1175                 $r = null;
1176                           
1177                 if($profile) {
1178                         $profile_int = intval($profile);
1179                         $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
1180                                         left join `contact` on `contact`.`uid` = `profile`.`uid` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
1181                                         WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d and `contact`.`self` = 1 LIMIT 1",
1182                                         dbesc($nickname),
1183                                         intval($profile_int)
1184                         );
1185                 }
1186                 if((! $r) && (!  count($r))) {
1187                         $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
1188                                         left join `contact` on `contact`.`uid` = `profile`.`uid` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
1189                                         WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 and `contact`.`self` = 1 LIMIT 1",
1190                                         dbesc($nickname)
1191                         );
1192                 }
1193
1194                 if(($r === false) || (! count($r))) {
1195                         logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
1196                         notice( t('Requested profile is not available.') . EOL );
1197                         $a->error = 404;
1198                         return;
1199                 }
1200         
1201                 // fetch user tags if this isn't the default profile
1202
1203                 if(! $r[0]['is-default']) {
1204                         $x = q("select `pub_keywords` from `profile` where uid = %d and `is-default` = 1 limit 1",
1205                                         intval($r[0]['profile_uid'])
1206                         );
1207                         if($x && count($x))
1208                                 $r[0]['pub_keywords'] = $x[0]['pub_keywords'];
1209                 }
1210
1211                 $a->profile = $r[0];
1212
1213                 $a->profile['mobile-theme'] = get_pconfig($a->profile['profile_uid'], 'system', 'mobile_theme');
1214
1215
1216                 $a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
1217                 $_SESSION['theme'] = $a->profile['theme'];
1218                 $_SESSION['mobile-theme'] = $a->profile['mobile-theme'];
1219
1220                 /**
1221                  * load/reload current theme info
1222                  */
1223
1224                 $a->set_template_engine(); // reset the template engine to the default in case the user's theme doesn't specify one
1225
1226                 $theme_info_file = "view/theme/".current_theme()."/theme.php";
1227                 if (file_exists($theme_info_file)){
1228                         require_once($theme_info_file);
1229                 }
1230
1231                 if(! (x($a->page,'aside')))
1232                         $a->page['aside'] = '';
1233
1234                 if(local_user() && local_user() == $a->profile['uid']) {
1235                         $a->page['aside'] .= replace_macros(get_markup_template('profile_edlink.tpl'),array(
1236                                 '$editprofile' => t('Edit profile'),
1237                                 '$profid' => $a->profile['id']
1238                         ));
1239                 }
1240
1241                 $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
1242
1243                 $a->page['aside'] .= profile_sidebar($a->profile, $block);
1244
1245                 /*if(! $block)
1246                  $a->page['aside'] .= contact_block();*/
1247
1248                 return;
1249         }
1250 }
1251
1252
1253 /**
1254  *
1255  * Function: profile_sidebar
1256  *
1257  * Formats a profile for display in the sidebar.
1258  * It is very difficult to templatise the HTML completely
1259  * because of all the conditional logic.
1260  *
1261  * @parameter: array $profile
1262  *
1263  * Returns HTML string stuitable for sidebar inclusion
1264  * Exceptions: Returns empty string if passed $profile is wrong type or not populated
1265  *
1266  */
1267
1268
1269 if(! function_exists('profile_sidebar')) {
1270         function profile_sidebar($profile, $block = 0) {
1271
1272                 $a = get_app();
1273
1274                 $o = '';
1275                 $location = false;
1276                 $address = false;
1277                 $pdesc = true;
1278
1279                 if((! is_array($profile)) && (! count($profile)))
1280                         return $o;
1281
1282                 $profile['picdate'] = urlencode($profile['picdate']);
1283
1284                 call_hooks('profile_sidebar_enter', $profile);
1285
1286         
1287                 // don't show connect link to yourself
1288                 $connect = (($profile['uid'] != local_user()) ? t('Connect')  : False);
1289
1290                 // don't show connect link to authenticated visitors either
1291
1292                 if(remote_user() && count($_SESSION['remote'])) {
1293                         foreach($_SESSION['remote'] as $visitor) {
1294                                 if($visitor['uid'] == $profile['uid']) {
1295                                         $connect = false;
1296                                         break;
1297                                 }
1298                         }
1299                 }
1300
1301                 if(get_my_url() && $profile['unkmail'])
1302                         $wallmessage = t('Message');
1303                 else
1304                         $wallmessage = false;
1305
1306
1307
1308                 // show edit profile to yourself
1309                 if ($profile['uid'] == local_user() && feature_enabled(local_user(),'multi_profiles')) {
1310                         $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
1311                 
1312                         $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
1313                                         local_user());
1314                 
1315                         $profile['menu'] = array(
1316                                 'chg_photo' => t('Change profile photo'),
1317                                 'cr_new' => t('Create New Profile'),
1318                                 'entries' => array(),
1319                         );
1320
1321                         if(count($r)) {
1322
1323                                 foreach($r as $rr) {
1324                                         $profile['menu']['entries'][] = array(
1325                                                 'photo' => $rr['thumb'],
1326                                                 'id' => $rr['id'],
1327                                                 'alt' => t('Profile Image'),
1328                                                 'profile_name' => $rr['profile-name'],
1329                                                 'isdefault' => $rr['is-default'],
1330                                                 'visibile_to_everybody' =>  t('visible to everybody'),
1331                                                 'edit_visibility' => t('Edit visibility'),
1332
1333                                         );
1334                                 }
1335
1336
1337                         }
1338
1339
1340                 }
1341
1342
1343
1344         
1345                 if((x($profile,'address') == 1)
1346                                 || (x($profile,'locality') == 1)
1347                                 || (x($profile,'region') == 1)
1348                                 || (x($profile,'postal-code') == 1)
1349                                 || (x($profile,'country-name') == 1))
1350                         $location = t('Location:');
1351
1352                 $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
1353
1354
1355                 $marital = ((x($profile,'marital') == 1) ?  t('Status:') : False);
1356
1357                 $homepage = ((x($profile,'homepage') == 1) ?  t('Homepage:') : False);
1358
1359                 if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
1360                         $location = $pdesc = $gender = $marital = $homepage = False;
1361                 }
1362
1363                 $firstname = ((strpos($profile['name'],' '))
1364                                 ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']);
1365                 $lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname))));
1366
1367                 $diaspora = array(
1368                         'podloc' => $a->get_baseurl(),
1369                         'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
1370                         'nickname' => $profile['nickname'],
1371                         'fullname' => $profile['name'],
1372                         'firstname' => $firstname,
1373                         'lastname' => $lastname,
1374                         'photo300' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg'),
1375                         'photo100' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg'),
1376                         'photo50' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/50/'  . $profile['uid'] . '.jpg'),
1377                 );
1378
1379                 if (!$block){
1380                         $contact_block = contact_block();
1381                 }
1382
1383
1384                 $tpl = get_markup_template('profile_vcard.tpl');
1385
1386                 $p = array();
1387                 foreach($profile as $k => $v) {
1388                         $k = str_replace('-','_',$k);
1389                         $p[$k] = $v;
1390                 }
1391
1392                 if($a->theme['template_engine'] === 'internal')
1393                         $location = template_escape($location);
1394
1395                 $o .= replace_macros($tpl, array(
1396                         '$profile' => $p,
1397                         '$connect'  => $connect,
1398                         '$wallmessage' => $wallmessage,
1399                         '$location' => $location,
1400                         '$gender'   => $gender,
1401                         '$pdesc'        => $pdesc,
1402                         '$marital'  => $marital,
1403                         '$homepage' => $homepage,
1404                         '$diaspora' => $diaspora,
1405                         '$contact_block' => $contact_block,
1406                 ));
1407
1408
1409                 $arr = array('profile' => &$profile, 'entry' => &$o);
1410
1411                 call_hooks('profile_sidebar', $arr);
1412
1413                 return $o;
1414         }
1415 }
1416
1417
1418 if(! function_exists('get_birthdays')) {
1419         function get_birthdays() {
1420
1421                 $a = get_app();
1422                 $o = '';
1423
1424                 if(! local_user() || $a->is_mobile || $a->is_tablet)
1425                         return $o;
1426
1427 //              $mobile_detect = new Mobile_Detect();
1428 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1429
1430 //              if($is_mobile)
1431 //                      return $o;
1432
1433                 $bd_format = t('g A l F d') ; // 8 AM Friday January 18
1434                 $bd_short = t('F d');
1435
1436                 $r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
1437                                 LEFT JOIN `contact` ON `contact`.`id` = `event`.`cid`
1438                                 WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s'
1439                                 ORDER BY `start` ASC ",
1440                                 intval(local_user()),
1441                                 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
1442                                 dbesc(datetime_convert('UTC','UTC','now'))
1443                 );
1444
1445                 if($r && count($r)) {
1446                         $total = 0;
1447                         $now = strtotime('now');
1448                         $cids = array();
1449
1450                         $istoday = false;
1451                         foreach($r as $rr) {
1452                                 if(strlen($rr['name']))
1453                                         $total ++;
1454                                 if((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now))
1455                                         $istoday = true;
1456                         }
1457                         $classtoday = $istoday ? ' birthday-today ' : '';
1458                         if($total) {
1459                                 foreach($r as &$rr) {
1460                                         if(! strlen($rr['name']))
1461                                                 continue;
1462
1463                                         // avoid duplicates
1464
1465                                         if(in_array($rr['cid'],$cids))
1466                                                 continue;
1467                                         $cids[] = $rr['cid'];
1468
1469                                         $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
1470                                         $sparkle = '';
1471                                         $url = $rr['url'];
1472                                         if($rr['network'] === NETWORK_DFRN) {
1473                                                 $sparkle = " sparkle";
1474                                                 $url = $a->get_baseurl() . '/redir/'  . $rr['cid'];
1475                                         }
1476         
1477                                         $rr['link'] = $url;
1478                                         $rr['title'] = $rr['name'];
1479                                         $rr['date'] = day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ?  ' ' . t('[today]') : '');
1480                                         $rr['startime'] = Null;
1481                                         $rr['today'] = $today;
1482         
1483                                 }
1484                         }
1485                 }
1486                 $tpl = get_markup_template("birthdays_reminder.tpl");
1487                 return replace_macros($tpl, array(
1488                         '$baseurl' => $a->get_baseurl(),
1489                         '$classtoday' => $classtoday,
1490                         '$count' => $total,
1491                         '$event_reminders' => t('Birthday Reminders'),
1492                         '$event_title' => t('Birthdays this week:'),
1493                         '$events' => $r,
1494                         '$lbr' => '{',  // raw brackets mess up if/endif macro processing
1495                         '$rbr' => '}'
1496
1497                 ));
1498         }
1499 }
1500
1501
1502 if(! function_exists('get_events')) {
1503         function get_events() {
1504
1505                 require_once('include/bbcode.php');
1506
1507                 $a = get_app();
1508
1509                 if(! local_user() || $a->is_mobile || $a->is_tablet)
1510                         return $o;
1511
1512
1513 //              $mobile_detect = new Mobile_Detect();
1514 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1515
1516 //              if($is_mobile)
1517 //                      return $o;
1518
1519                 $bd_format = t('g A l F d') ; // 8 AM Friday January 18
1520                 $bd_short = t('F d');
1521
1522                 $r = q("SELECT `event`.* FROM `event`
1523                                 WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `start` > '%s'
1524                                 ORDER BY `start` ASC ",
1525                                 intval(local_user()),
1526                                 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
1527                                 dbesc(datetime_convert('UTC','UTC','now - 1 days'))
1528                 );
1529
1530                 if($r && count($r)) {
1531                         $now = strtotime('now');
1532                         $istoday = false;
1533                         foreach($r as $rr) {
1534                                 if(strlen($rr['name']))
1535                                         $total ++;
1536
1537                                 $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start'],'Y-m-d');
1538                                 if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
1539                                         $istoday = true;
1540                         }
1541                         $classtoday = (($istoday) ? 'event-today' : '');
1542
1543
1544                         foreach($r as &$rr) {
1545                                 if($rr['adjust'])
1546                                         $md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m');
1547                                 else
1548                                         $md = datetime_convert('UTC','UTC',$rr['start'],'Y/m');
1549                                 $md .= "/#link-".$rr['id'];
1550
1551                                 $title = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
1552                                 if(! $title)
1553                                         $title = t('[No description]');
1554
1555                                 $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
1556                                 $today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);
1557                                 
1558                                 $rr['link'] = $md;
1559                                 $rr['title'] = $title;
1560                                 $rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ?  ' ' . t('[today]') : '');
1561                                 $rr['startime'] = $strt;
1562                                 $rr['today'] = $today;
1563                         }
1564                 }
1565
1566                 $tpl = get_markup_template("events_reminder.tpl");
1567                 return replace_macros($tpl, array(
1568                         '$baseurl' => $a->get_baseurl(),
1569                         '$classtoday' => $classtoday,
1570                         '$count' => count($r),
1571                         '$event_reminders' => t('Event Reminders'),
1572                         '$event_title' => t('Events this week:'),
1573                         '$events' => $r,
1574                 ));
1575         }
1576 }
1577
1578
1579 /**
1580  *
1581  * Wrap calls to proc_close(proc_open()) and call hook
1582  * so plugins can take part in process :)
1583  *
1584  * args:
1585  * $cmd program to run
1586  *  next args are passed as $cmd command line
1587  *
1588  * e.g.: proc_run("ls","-la","/tmp");
1589  *
1590  * $cmd and string args are surrounded with ""
1591  */
1592
1593 if(! function_exists('proc_run')) {
1594         function proc_run($cmd){
1595
1596                 $a = get_app();
1597
1598                 $args = func_get_args();
1599
1600                 $newargs = array();
1601                 if(! count($args))
1602                         return;
1603
1604                 // expand any arrays
1605
1606                 foreach($args as $arg) {
1607                         if(is_array($arg)) {
1608                                 foreach($arg as $n) {
1609                                         $newargs[] = $n;
1610                                 }
1611                         }
1612                         else
1613                                 $newargs[] = $arg;
1614                 }
1615
1616                 $args = $newargs;
1617                 
1618                 $arr = array('args' => $args, 'run_cmd' => true);
1619
1620                 call_hooks("proc_run", $arr);
1621                 if(! $arr['run_cmd'])
1622                         return;
1623
1624                 if(count($args) && $args[0] === 'php')
1625                         $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
1626         
1627         // add baseurl to args. cli scripts can't construct it
1628         $args[] = $a->get_baseurl();
1629         
1630         for($x = 0; $x < count($args); $x ++)
1631                         $args[$x] = escapeshellarg($args[$x]);
1632
1633         
1634
1635                 $cmdline = implode($args," ");
1636                 if(get_config('system','proc_windows'))
1637                         proc_close(proc_open('cmd /c start /b ' . $cmdline,array(),$foo,dirname(__FILE__)));
1638                 else
1639                         proc_close(proc_open($cmdline." &",array(),$foo,dirname(__FILE__)));
1640         }
1641 }
1642
1643 if(! function_exists('current_theme')) {
1644         function current_theme(){
1645                 $app_base_themes = array('duepuntozero', 'dispy', 'quattro');
1646         
1647                 $a = get_app();
1648         
1649 //              $mobile_detect = new Mobile_Detect();
1650 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1651                 $is_mobile = $a->is_mobile || $a->is_tablet;
1652
1653                 if($is_mobile) {
1654                         if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
1655                                 $system_theme = '';
1656                                 $theme_name = '';
1657                         }
1658                         else {
1659                                 $system_theme = ((isset($a->config['system']['mobile-theme'])) ? $a->config['system']['mobile-theme'] : '');
1660                                 $theme_name = ((isset($_SESSION) && x($_SESSION,'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme);
1661
1662                                 if($theme_name === '---') {
1663                                         // user has selected to have the mobile theme be the same as the normal one
1664                                         $system_theme = '';
1665                                         $theme_name = '';
1666                                 }
1667                         }
1668                 }
1669                 if(!$is_mobile || ($system_theme === '' && $theme_name === '')) {
1670                         $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
1671                         $theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme);
1672                 }
1673
1674                 if($theme_name &&
1675                                 (file_exists('view/theme/' . $theme_name . '/style.css') ||
1676                                                 file_exists('view/theme/' . $theme_name . '/style.php')))
1677                         return($theme_name);
1678         
1679                 foreach($app_base_themes as $t) {
1680                         if(file_exists('view/theme/' . $t . '/style.css')||
1681                                         file_exists('view/theme/' . $t . '/style.php'))
1682                                 return($t);
1683                 }
1684         
1685                 $fallback = array_merge(glob('view/theme/*/style.css'),glob('view/theme/*/style.php'));
1686                 if(count($fallback))
1687                         return (str_replace('view/theme/','', substr($fallback[0],0,-10)));
1688         
1689         }
1690 }
1691
1692 /*
1693  * Return full URL to theme which is currently in effect.
1694 * Provide a sane default if nothing is chosen or the specified theme does not exist.
1695 */
1696 if(! function_exists('current_theme_url')) {
1697         function current_theme_url() {
1698                 global $a;
1699                 $t = current_theme();
1700                 if (file_exists('view/theme/' . $t . '/style.php'))
1701                         return($a->get_baseurl() . '/view/theme/' . $t . '/style.pcss');
1702                 return($a->get_baseurl() . '/view/theme/' . $t . '/style.css');
1703         }
1704 }
1705
1706 if(! function_exists('feed_birthday')) {
1707         function feed_birthday($uid,$tz) {
1708
1709                 /**
1710                  *
1711                  * Determine the next birthday, but only if the birthday is published
1712                  * in the default profile. We _could_ also look for a private profile that the
1713                  * recipient can see, but somebody could get mad at us if they start getting
1714                  * public birthday greetings when they haven't made this info public.
1715                  *
1716                  * Assuming we are able to publish this info, we are then going to convert
1717                  * the start time from the owner's timezone to UTC.
1718                  *
1719                  * This will potentially solve the problem found with some social networks
1720                  * where birthdays are converted to the viewer's timezone and salutations from
1721                  * elsewhere in the world show up on the wrong day. We will convert it to the
1722                  * viewer's timezone also, but first we are going to convert it from the birthday
1723                  * person's timezone to GMT - so the viewer may find the birthday starting at
1724                  * 6:00PM the day before, but that will correspond to midnight to the birthday person.
1725                  *
1726                  */
1727
1728         
1729                 $birthday = '';
1730
1731                 if(! strlen($tz))
1732                         $tz = 'UTC';
1733
1734                 $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
1735                                 intval($uid)
1736                 );
1737
1738                 if($p && count($p)) {
1739                         $tmp_dob = substr($p[0]['dob'],5);
1740                         if(intval($tmp_dob)) {
1741                                 $y = datetime_convert($tz,$tz,'now','Y');
1742                                 $bd = $y . '-' . $tmp_dob . ' 00:00';
1743                                 $t_dob = strtotime($bd);
1744                                 $now = strtotime(datetime_convert($tz,$tz,'now'));
1745                                 if($t_dob < $now)
1746                                         $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
1747                                 $birthday = datetime_convert($tz,'UTC',$bd,ATOM_TIME);
1748                         }
1749                 }
1750
1751                 return $birthday;
1752         }
1753 }
1754
1755 if(! function_exists('is_site_admin')) {
1756         function is_site_admin() {
1757                 $a = get_app();
1758                 if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
1759                         return true;
1760                 return false;
1761         }
1762 }
1763
1764
1765 if(! function_exists('load_contact_links')) {
1766         function load_contact_links($uid) {
1767
1768                 $a = get_app();
1769
1770                 $ret = array();
1771
1772                 if(! $uid || x($a->contacts,'empty'))
1773                         return;
1774
1775                 $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 ",
1776                                 intval($uid)
1777                 );
1778                 if(count($r)) {
1779                         foreach($r as $rr){
1780                                 $url = normalise_link($rr['url']);
1781                                 $ret[$url] = $rr;
1782                         }
1783                 }
1784                 else
1785                         $ret['empty'] = true;
1786                 $a->contacts = $ret;
1787                 return;
1788         }
1789 }
1790
1791 if(! function_exists('profile_tabs')){
1792         function profile_tabs($a, $is_owner=False, $nickname=Null){
1793                 //echo "<pre>"; var_dump($a->user); killme();
1794         
1795                 if (is_null($nickname))
1796                         $nickname  = $a->user['nickname'];
1797                 
1798                 if(x($_GET,'tab'))
1799                         $tab = notags(trim($_GET['tab']));
1800         
1801                 $url = $a->get_baseurl() . '/profile/' . $nickname;
1802
1803                 $tabs = array(
1804                         array(
1805                                 'label'=>t('Status'),
1806                                 'url' => $url,
1807                                 'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''),
1808                                 'title' => t('Status Messages and Posts'),
1809                                 'id' => 'status-tab',
1810                         ),
1811                         array(
1812                                 'label' => t('Profile'),
1813                                 'url'   => $url.'/?tab=profile',
1814                                 'sel'   => ((isset($tab) && $tab=='profile')?'active':''),
1815                                 'title' => t('Profile Details'),
1816                                 'id' => 'profile-tab',
1817                         ),
1818                         array(
1819                                 'label' => t('Photos'),
1820                                 'url'   => $a->get_baseurl() . '/photos/' . $nickname,
1821                                 'sel'   => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''),
1822                                 'title' => t('Photo Albums'),
1823                                 'id' => 'photo-tab',
1824                         ),
1825                 );
1826         
1827                 if ($is_owner){
1828                         $tabs[] = array(
1829                                 'label' => t('Events'),
1830                                 'url'   => $a->get_baseurl() . '/events',
1831                                 'sel'   =>((!isset($tab)&&$a->argv[0]=='events')?'active':''),
1832                                 'title' => t('Events and Calendar'),
1833                                 'id' => 'events-tab',
1834                         );
1835                         $tabs[] = array(
1836                                 'label' => t('Personal Notes'),
1837                                 'url'   => $a->get_baseurl() . '/notes',
1838                                 'sel'   =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''),
1839                                 'title' => t('Only You Can See This'),
1840                                 'id' => 'notes-tab',
1841                         );
1842                 }
1843
1844
1845                 $arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
1846                 call_hooks('profile_tabs', $arr);
1847         
1848                 $tpl = get_markup_template('common_tabs.tpl');
1849
1850                 return replace_macros($tpl,array('$tabs' => $arr['tabs']));
1851         }
1852 }
1853
1854 function get_my_url() {
1855         if(x($_SESSION,'my_url'))
1856                 return $_SESSION['my_url'];
1857         return false;
1858 }
1859
1860 function zrl_init(&$a) {
1861         $tmp_str = get_my_url();
1862         if(validate_url($tmp_str)) {
1863                 proc_run('php','include/gprobe.php',bin2hex($tmp_str));
1864                 $arr = array('zrl' => $tmp_str, 'url' => $a->cmd);
1865                 call_hooks('zrl_init',$arr);
1866         }
1867 }
1868
1869 function zrl($s,$force = false) {
1870         if(! strlen($s))
1871                 return $s;
1872         if((! strpos($s,'/profile/')) && (! $force))
1873                 return $s;
1874         if($force && substr($s,-1,1) !== '/')
1875                 $s = $s . '/';
1876         $achar = strpos($s,'?') ? '&' : '?';
1877         $mine = get_my_url();
1878         if($mine and ! link_compare($mine,$s))
1879                 return $s . $achar . 'zrl=' . urlencode($mine);
1880         return $s;
1881 }
1882
1883 /**
1884 * returns querystring as string from a mapped array
1885 *
1886 * @param params Array 
1887 * @return string
1888 */
1889 function build_querystring($params, $name=null) { 
1890     $ret = ""; 
1891     foreach($params as $key=>$val) {
1892         if(is_array($val)) { 
1893             if($name==null) {
1894                 $ret .= build_querystring($val, $key); 
1895             } else {
1896                 $ret .= build_querystring($val, $name."[$key]");    
1897             }
1898         } else {
1899             $val = urlencode($val);
1900             if($name!=null) {
1901                 $ret.=$name."[$key]"."=$val&"; 
1902             } else {
1903                 $ret.= "$key=$val&"; 
1904             }
1905         } 
1906     } 
1907     return $ret;    
1908 }
1909
1910 /**
1911 * Returns the complete URL of the current page, e.g.: http(s)://something.com/network
1912 *
1913 * Taken from http://webcheatsheet.com/php/get_current_page_url.php
1914 */
1915 function curPageURL() {
1916         $pageURL = 'http';
1917         if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
1918         $pageURL .= "://";
1919         if ($_SERVER["SERVER_PORT"] != "80" && $_SERVER["SERVER_PORT"] != "443") {
1920                 $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
1921         } else {
1922                 $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
1923         }
1924         return $pageURL;
1925 }
1926
1927 function random_digits($digits) {
1928         $rn = '';
1929         for($i = 0; $i < $digits; $i++) {
1930                 $rn .= rand(0,9);
1931         }
1932         return $rn;
1933 }
1934
1935 function get_cachefile($file, $writemode = true) {
1936         $cache = get_config("system","itemcache");
1937
1938         if ($cache == "")
1939                 return("");
1940
1941         if (!is_dir($cache))
1942                 return("");
1943
1944         $subfolder = $cache."/".substr($file, 0, 2);
1945
1946         $cachepath = $subfolder."/".$file;
1947
1948         if ($writemode) {
1949                 if (!is_dir($subfolder)) {
1950                         mkdir($subfolder);
1951                         chmod($subfolder, 0777);
1952                 }
1953         }
1954
1955         return($cachepath);
1956 }
1957
1958 function clear_cache($basepath = "", $path = "") {
1959         if ($path == "") {
1960                 $basepath = get_config('system','itemcache');
1961                 $path = $basepath;
1962         }
1963
1964         if (($path == "") OR (!is_dir($path)))
1965                 return;
1966
1967         if (substr(realpath($path), 0, strlen($basepath)) != $basepath)
1968                 return;
1969
1970         $cachetime = (int)get_config('system','itemcache_duration');
1971         if ($cachetime == 0)
1972                 $cachetime = 86400;
1973
1974         if ($dh = opendir($path)) {
1975                 while (($file = readdir($dh)) !== false) {
1976                         $fullpath = $path."/".$file;
1977                         if ((filetype($fullpath) == "dir") and ($file != ".") and ($file != ".."))
1978                                 clear_cache($basepath, $fullpath);
1979                         if ((filetype($fullpath) == "file") and (filectime($fullpath) < (time() - $cachetime)))
1980                                 unlink($fullpath);
1981                 }
1982                 closedir($dh);
1983         }
1984 }
1985
1986 function set_template_engine(&$a, $engine = 'internal') {
1987 // This function is no longer necessary, but keep it as a wrapper to the class method
1988 // to avoid breaking themes again unnecessarily
1989
1990         $a->set_template_engine($engine);
1991 }
1992