diff options
author | Wave <wave72@users.noreply.github.com> | 2016-07-22 10:55:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-22 10:55:02 +0200 |
commit | 744ad84714fe0f7a3d90250a4ff02dc4327b9061 (patch) | |
tree | 595fb74ec9ea0bc7130d18bd7993d719a222d343 /Zotlabs/Lib/System.php | |
parent | c38c79d71c8ef70ef649f83e322f1984b75ee2dd (diff) | |
parent | 7d897a3f03bd57ed556433eb84a41963ba44e02e (diff) | |
download | volse-hubzilla-744ad84714fe0f7a3d90250a4ff02dc4327b9061.tar.gz volse-hubzilla-744ad84714fe0f7a3d90250a4ff02dc4327b9061.tar.bz2 volse-hubzilla-744ad84714fe0f7a3d90250a4ff02dc4327b9061.zip |
Merge pull request #6 from redmatrix/dev
Dev
Diffstat (limited to 'Zotlabs/Lib/System.php')
-rw-r--r-- | Zotlabs/Lib/System.php | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/Zotlabs/Lib/System.php b/Zotlabs/Lib/System.php new file mode 100644 index 000000000..c52a90338 --- /dev/null +++ b/Zotlabs/Lib/System.php @@ -0,0 +1,58 @@ +<?php + +namespace Zotlabs\Lib; + +class System { + + static public function get_platform_name() { + if(is_array(\App::$config) && is_array(\App::$config['system']) && array_key_exists('platform_name',\App::$config['system'])) + 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 'pro'; + } + + static public function get_std_version() { + if(defined('STD_VERSION')) + return STD_VERSION; + return '0.0.0'; + } + + +} |