aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Project
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-03-31 16:06:03 -0700
committerredmatrix <git@macgirvin.com>2016-03-31 16:06:03 -0700
commit9abd95fad3784a10fc48bc40f9b8a75d7d74edda (patch)
tree3cf2eec6a29f384b80a8c607aa97172b84e37e62 /Zotlabs/Project
parent256c228efd249f2ce93405db8e36f52030aa4876 (diff)
downloadvolse-hubzilla-9abd95fad3784a10fc48bc40f9b8a75d7d74edda.tar.gz
volse-hubzilla-9abd95fad3784a10fc48bc40f9b8a75d7d74edda.tar.bz2
volse-hubzilla-9abd95fad3784a10fc48bc40f9b8a75d7d74edda.zip
static App
Diffstat (limited to 'Zotlabs/Project')
-rw-r--r--Zotlabs/Project/System.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/Zotlabs/Project/System.php b/Zotlabs/Project/System.php
index ca57c50a3..f87f827bb 100644
--- a/Zotlabs/Project/System.php
+++ b/Zotlabs/Project/System.php
@@ -6,21 +6,21 @@ class System {
function get_platform_name() {
$a = get_app();
- if(is_array($a->config) && is_array($a->config['system']) && $a->config['system']['platform_name'])
- return $a->config['system']['platform_name'];
+ if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['platform_name'])
+ return \App::$config['system']['platform_name'];
return PLATFORM_NAME;
}
function get_project_version() {
$a = get_app();
- if(is_array($a->config) && is_array($a->config['system']) && $a->config['system']['hide_version'])
+ if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['hide_version'])
return '';
return RED_VERSION;
}
function get_update_version() {
$a = get_app();
- if(is_array($a->config) && is_array($a->config['system']) && $a->config['system']['hide_version'])
+ if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['hide_version'])
return '';
return DB_UPDATE_VERSION;
}
@@ -28,15 +28,15 @@ class System {
function get_notify_icon() {
$a = get_app();
- if(is_array($a->config) && is_array($a->config['system']) && $a->config['system']['email_notify_icon_url'])
- return $a->config['system']['email_notify_icon_url'];
+ if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['email_notify_icon_url'])
+ return \App::$config['system']['email_notify_icon_url'];
return z_root() . '/images/hz-white-32.png';
}
function get_site_icon() {
$a = get_app();
- if(is_array($a->config) && is_array($a->config['system']) && $a->config['system']['site_icon_url'])
- return $a->config['system']['site_icon_url'];
+ if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['site_icon_url'])
+ return \App::$config['system']['site_icon_url'];
return z_root() . '/images/hz-32.png';
}