aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Project
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-05-20 22:52:47 -0700
committerredmatrix <git@macgirvin.com>2016-05-20 22:52:47 -0700
commitd8ace38041ad3ef161cf9c727c94b6ce2a00ce75 (patch)
tree80326bb033ded557c846cecafba3882459f20906 /Zotlabs/Project
parentbc20cf9fa3479be20417f78187f7302f13fbf0ec (diff)
downloadvolse-hubzilla-d8ace38041ad3ef161cf9c727c94b6ce2a00ce75.tar.gz
volse-hubzilla-d8ace38041ad3ef161cf9c727c94b6ce2a00ce75.tar.bz2
volse-hubzilla-d8ace38041ad3ef161cf9c727c94b6ce2a00ce75.zip
rework the conversation object stuff at a high level - still needs a bit of refactoring
Diffstat (limited to 'Zotlabs/Project')
-rw-r--r--Zotlabs/Project/System.php58
1 files changed, 0 insertions, 58 deletions
diff --git a/Zotlabs/Project/System.php b/Zotlabs/Project/System.php
deleted file mode 100644
index d95bd033c..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']) && 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';
- }
-
-
-}