aboutsummaryrefslogtreecommitdiffstats
path: root/include/apps.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-06-10 21:21:50 -0700
committerfriendica <info@friendica.com>2014-06-10 21:21:50 -0700
commit13ba9ef0037656b1e12d627f767fc2fc8781632a (patch)
treed447808b595ca2ae26e24ea7ec0646c2a625e000 /include/apps.php
parente41375c8892b547c4bb01cb07fc5b771a756fd6e (diff)
downloadvolse-hubzilla-13ba9ef0037656b1e12d627f767fc2fc8781632a.tar.gz
volse-hubzilla-13ba9ef0037656b1e12d627f767fc2fc8781632a.tar.bz2
volse-hubzilla-13ba9ef0037656b1e12d627f767fc2fc8781632a.zip
merge the app menus
Diffstat (limited to 'include/apps.php')
-rw-r--r--include/apps.php16
1 files changed, 13 insertions, 3 deletions
diff --git a/include/apps.php b/include/apps.php
index 777664c7f..df62ba774 100644
--- a/include/apps.php
+++ b/include/apps.php
@@ -62,18 +62,21 @@ function parse_app_description($f) {
}
-
if(! $ret['photo'])
$ret['photo'] = $baseurl . '/' . get_default_profile_photo(80);
+ $ret['type'] = 'system';
foreach($ret as $k => $v) {
if(strpos($v,'http') === 0)
$ret[$k] = zid($v);
}
- if(array_key_exists('hover',$ret))
- $ret['hover'] = str_replace(array('\'','"'),array('&#39;','&dquot;'),$ret['hover']);
+ if(array_key_exists('desc',$ret))
+ $ret['desc'] = str_replace(array('\'','"'),array('&#39;','&dquot;'),$ret['desc']);
+
+ if(array_key_exists('target',$ret))
+ $ret['target'] = str_replace(array('\'','"'),array('&#39;','&dquot;'),$ret['target']);
if(array_key_exists('requires',$ret)) {
$require = trim(strtolower($ret['requires']));
@@ -270,6 +273,11 @@ function app_list($uid) {
$r = q("select * from app where app_channel = %d order by app_name asc",
intval($uid)
);
+ if($r) {
+ for($x = 0; $x < count($r); $x ++) {
+ $r[$x]['type'] = 'personal';
+ }
+ }
return($r);
}
@@ -391,6 +399,8 @@ function app_encode($app,$embed = false) {
$ret = array();
+ $ret['type'] = 'personal';
+
if($app['app_id'])
$ret['guid'] = $app['app_id'];