diff options
author | redmatrix <git@macgirvin.com> | 2016-06-19 19:12:33 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-06-19 19:12:33 -0700 |
commit | fb61c4fb3497d3751bb43f12cadee9e9c7776be9 (patch) | |
tree | 604989e10424456783fccff1fccc5b14da26db7f /Zotlabs/Project/System.php | |
parent | bfaabfb7b5ff639992a01b0e1fc374cd43d536e9 (diff) | |
parent | 4578649f758e65f1d87ebb98da7cd891d0b90d0d (diff) | |
download | volse-hubzilla-fb61c4fb3497d3751bb43f12cadee9e9c7776be9.tar.gz volse-hubzilla-fb61c4fb3497d3751bb43f12cadee9e9c7776be9.tar.bz2 volse-hubzilla-fb61c4fb3497d3751bb43f12cadee9e9c7776be9.zip |
Merge branch '1.8RC'
Diffstat (limited to 'Zotlabs/Project/System.php')
-rw-r--r-- | Zotlabs/Project/System.php | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/Zotlabs/Project/System.php b/Zotlabs/Project/System.php deleted file mode 100644 index f61313da0..000000000 --- a/Zotlabs/Project/System.php +++ /dev/null @@ -1,58 +0,0 @@ -<?php - -namespace Zotlabs\Project; - -class System { - - static public function get_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; - } - - static public function get_site_name() { - if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['sitename']) - return \App::$config['system']['sitename']; - return ''; - } - - static public function get_project_version() { - if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['hide_version']) - return ''; - return self::get_std_version(); - } - - static public function get_update_version() { - if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['hide_version']) - return ''; - return DB_UPDATE_VERSION; - } - - - static public function get_notify_icon() { - 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'; - } - - static public function get_site_icon() { - 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'; - } - - - static public function get_server_role() { - if(UNO) - return 'basic'; - return 'advanced'; - } - - static public function get_std_version() { - if(defined('STD_VERSION')) - return STD_VERSION; - return '0.0.0'; - } - - -} |