diff options
author | redmatrix <git@macgirvin.com> | 2016-02-18 15:24:58 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-18 15:24:58 -0800 |
commit | 342fda94e4162634eeb67c18c1d284e7d78f217f (patch) | |
tree | 8171ce097a62ddf6de743a4ec25b2dd9ae3ccc41 /Zotlabs/Project | |
parent | c107bcfbd972a900cfd81b217014f7d4915fd73d (diff) | |
download | volse-hubzilla-342fda94e4162634eeb67c18c1d284e7d78f217f.tar.gz volse-hubzilla-342fda94e4162634eeb67c18c1d284e7d78f217f.tar.bz2 volse-hubzilla-342fda94e4162634eeb67c18c1d284e7d78f217f.zip |
Provide Zotlabs\Project and System class for querying details about the project/version info. Move these out of /boot.php
Diffstat (limited to 'Zotlabs/Project')
-rw-r--r-- | Zotlabs/Project/System.php | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/Zotlabs/Project/System.php b/Zotlabs/Project/System.php new file mode 100644 index 000000000..ca57c50a3 --- /dev/null +++ b/Zotlabs/Project/System.php @@ -0,0 +1,62 @@ +<?php + +namespace Zotlabs\Project; + +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']; + 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']) + 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']) + return ''; + return DB_UPDATE_VERSION; + } + + + 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']; + 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']; + return z_root() . '/images/hz-32.png'; + } + + + function get_server_role() { + if(UNO) + return 'basic'; + return 'advanced'; + } + + // return the standardised version. Since we can't easily compare + // before the STD_VERSION definition was applied, we have to treat + // all prior release versions the same. You can dig through them + // with other means (such as RED_VERSION) if necessary. + + function get_std_version() { + if(defined('STD_VERSION')) + return STD_VERSION; + return '0.0.0'; + } + + +} |