streams/Zotlabs/Lib/System.php

65 lines
1.9 KiB
PHP
Raw Normal View History

<?php
namespace Zotlabs\Lib;
class System {
2016-05-02 02:29:30 +00:00
static public function get_platform_name() {
if(is_array(\App::$config) && is_array(\App::$config['system']) && array_key_exists('platform_name',\App::$config['system']))
2016-03-31 23:06:03 +00:00
return \App::$config['system']['platform_name'];
return PLATFORM_NAME;
}
2016-05-02 02:29:30 +00:00
static public function get_site_name() {
2016-04-11 04:56:16 +00:00
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['sitename'])
return \App::$config['system']['sitename'];
return '';
}
2016-05-02 02:29:30 +00:00
static public function get_project_version() {
2016-03-31 23:06:03 +00:00
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['hide_version'])
return '';
2016-05-02 02:29:30 +00:00
return self::get_std_version();
}
2016-05-02 02:29:30 +00:00
static public function get_update_version() {
2016-03-31 23:06:03 +00:00
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['hide_version'])
return '';
return DB_UPDATE_VERSION;
}
2016-05-02 02:29:30 +00:00
static public function get_notify_icon() {
2016-03-31 23:06:03 +00:00
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() . DEFAULT_NOTIFY_ICON;
}
2016-05-02 02:29:30 +00:00
static public function get_site_icon() {
2016-03-31 23:06:03 +00:00
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() . DEFAULT_PLATFORM_ICON ;
}
2016-05-02 02:29:30 +00:00
static public function get_server_role() {
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['server_role'])
return \App::$config['system']['server_role'];
2016-08-22 23:21:07 +00:00
return 'standard';
}
2016-05-02 02:29:30 +00:00
static public function get_std_version() {
if(defined('STD_VERSION'))
return STD_VERSION;
return '0.0.0';
}
static public function compatible_project($p) {
foreach(['hubzilla','zap'] as $t) {
if(stristr($p,$t))
return true;
}
return false;
}
}