2016-03-20 08:06:33 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Zotlabs\Project;
|
|
|
|
|
|
|
|
class System {
|
|
|
|
|
2016-05-17 19:05:14 +02:00
|
|
|
static public function get_platform_name() {
|
2016-04-17 16:29:18 +02:00
|
|
|
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['platform_name'])
|
|
|
|
return \App::$config['system']['platform_name'];
|
2016-03-20 08:06:33 +01:00
|
|
|
return PLATFORM_NAME;
|
|
|
|
}
|
|
|
|
|
2016-05-17 19:05:14 +02:00
|
|
|
static public function get_site_name() {
|
2016-04-17 16:29:18 +02:00
|
|
|
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['sitename'])
|
|
|
|
return \App::$config['system']['sitename'];
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2016-05-17 19:05:14 +02:00
|
|
|
static public function get_project_version() {
|
2016-04-17 16:29:18 +02:00
|
|
|
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['hide_version'])
|
2016-03-20 08:06:33 +01:00
|
|
|
return '';
|
2016-05-17 19:05:14 +02:00
|
|
|
return self::get_std_version();
|
2016-03-20 08:06:33 +01:00
|
|
|
}
|
|
|
|
|
2016-05-17 19:05:14 +02:00
|
|
|
static public function get_update_version() {
|
2016-04-17 16:29:18 +02:00
|
|
|
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['hide_version'])
|
2016-03-20 08:06:33 +01:00
|
|
|
return '';
|
|
|
|
return DB_UPDATE_VERSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-17 19:05:14 +02:00
|
|
|
static public function get_notify_icon() {
|
2016-04-17 16:29:18 +02: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'];
|
2016-03-20 08:06:33 +01:00
|
|
|
return z_root() . '/images/hz-white-32.png';
|
|
|
|
}
|
|
|
|
|
2016-05-17 19:05:14 +02:00
|
|
|
static public function get_site_icon() {
|
2016-04-17 16:29:18 +02:00
|
|
|
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['site_icon_url'])
|
|
|
|
return \App::$config['system']['site_icon_url'];
|
2016-03-20 08:06:33 +01:00
|
|
|
return z_root() . '/images/hz-32.png';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-17 19:05:14 +02:00
|
|
|
static public function get_server_role() {
|
2016-03-20 08:06:33 +01:00
|
|
|
if(UNO)
|
|
|
|
return 'basic';
|
|
|
|
return 'advanced';
|
|
|
|
}
|
|
|
|
|
2016-05-17 19:05:14 +02:00
|
|
|
static public function get_std_version() {
|
2016-03-20 08:06:33 +01:00
|
|
|
if(defined('STD_VERSION'))
|
|
|
|
return STD_VERSION;
|
|
|
|
return '0.0.0';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|