aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-04-10 21:56:16 -0700
committerredmatrix <git@macgirvin.com>2016-04-10 21:56:16 -0700
commit0269825bc09c2e41a46992cc0bb6415a1e39e0c7 (patch)
tree9f0ac927ec232d156b13997fffc5324a7ee5ee9e /Zotlabs
parent5cb3143c0448834f7bd164320bec15ef2a030c52 (diff)
downloadvolse-hubzilla-0269825bc09c2e41a46992cc0bb6415a1e39e0c7.tar.gz
volse-hubzilla-0269825bc09c2e41a46992cc0bb6415a1e39e0c7.tar.bz2
volse-hubzilla-0269825bc09c2e41a46992cc0bb6415a1e39e0c7.zip
localise the opensearch link
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Project/System.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/Zotlabs/Project/System.php b/Zotlabs/Project/System.php
index f87f827bb..a67742db5 100644
--- a/Zotlabs/Project/System.php
+++ b/Zotlabs/Project/System.php
@@ -5,21 +5,24 @@ namespace Zotlabs\Project;
class System {
function get_platform_name() {
- $a = get_app();
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_site_name() {
+ if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['sitename'])
+ return \App::$config['system']['sitename'];
+ return '';
+ }
+
function get_project_version() {
- $a = get_app();
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(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['hide_version'])
return '';
return DB_UPDATE_VERSION;
@@ -27,14 +30,12 @@ class System {
function get_notify_icon() {
- $a = get_app();
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(\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';