streams/Zotlabs/Lib/System.php

109 lines
3.2 KiB
PHP
Raw Normal View History

<?php
namespace Zotlabs\Lib;
2018-10-08 02:54:25 +00:00
use App;
class System {
2016-05-02 02:29:30 +00:00
static public function get_platform_name() {
2018-10-08 02:54:25 +00:00
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;
}
2016-05-02 02:29:30 +00:00
static public function get_site_name() {
2018-10-08 02:54:25 +00:00
if(is_array(App::$config) && is_array(App::$config['system']) && App::$config['system']['sitename'])
return App::$config['system']['sitename'];
2016-04-11 04:56:16 +00:00
return '';
}
2018-10-08 02:54:25 +00:00
static public function get_banner() {
2020-09-10 00:29:46 +00:00
if(is_array(App::$config) && is_array(App::$config['system']) && array_key_exists('banner',App::$config['system']) && App::$config['system']['banner']) {
2018-10-08 02:54:25 +00:00
return App::$config['system']['banner'];
2020-09-10 00:29:46 +00:00
}
return self::get_site_name();
2018-10-14 00:53:17 +00:00
}
static public function get_project_icon() {
2019-05-06 04:06:02 +00:00
if(is_array(App::$config) && is_array(App::$config['system']) && array_key_exists('icon',App::$config['system'])) {
return App::$config['system']['icon'];
}
2020-08-10 01:08:40 +00:00
return z_root() . '/images/' . PLATFORM_NAME . '-64.png';
2018-10-08 02:54:25 +00:00
}
2016-05-02 02:29:30 +00:00
static public function get_project_version() {
2018-10-08 02:54:25 +00:00
if(is_array(App::$config) && is_array(App::$config['system']) && App::$config['system']['hide_version'])
return '';
2018-10-08 02:54:25 +00:00
if(is_array(App::$config) && is_array(App::$config['system']) && array_key_exists('std_version',App::$config['system']))
return App::$config['system']['std_version'];
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() {
2018-10-08 02:54:25 +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() {
2018-10-08 02:54:25 +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'];
2020-09-10 00:29:46 +00:00
return self::get_project_icon();
}
2016-05-02 02:29:30 +00:00
static public function get_site_icon() {
2018-10-08 02:54:25 +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'];
2020-09-10 00:29:46 +00:00
return self::get_project_icon();
}
static public function get_project_link() {
2018-10-08 02:54:25 +00:00
if(is_array(App::$config) && is_array(App::$config['system']) && App::$config['system']['project_link'])
return App::$config['system']['project_link'];
2020-08-10 01:13:30 +00:00
return 'https://zotlabs.com/' . PLATFORM_NAME;
}
static public function get_project_srclink() {
2018-10-08 02:54:25 +00:00
if(is_array(App::$config) && is_array(App::$config['system']) && App::$config['system']['project_srclink'])
return App::$config['system']['project_srclink'];
2020-08-10 01:08:40 +00:00
return 'https://codeberg.org/zot/' . PLATFORM_NAME;
}
2016-05-02 02:29:30 +00:00
static public function get_server_role() {
2017-03-10 02:54:10 +00:00
return 'pro';
}
2018-12-13 22:14:01 +00:00
static public function ebs() {
2018-12-13 22:35:14 +00:00
if(defined('EBSSTATE')) {
return EBSSTATE;
}
2018-12-13 22:14:01 +00:00
return 'armed';
}
2017-09-26 03:11:21 +00:00
static public function get_zot_revision() {
$x = [ 'revision' => ZOT_REVISION ];
2017-09-26 03:12:43 +00:00
call_hooks('zot_revision',$x);
2017-09-26 03:11:21 +00:00
return $x['revision'];
}
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) {
2020-09-04 02:04:35 +00:00
if (in_array(strtolower($p),['hubzilla','zap','red','misty','mistpark','redmatrix','osada'])) {
2017-03-10 02:54:10 +00:00
return true;
2020-09-04 02:04:35 +00:00
}
return false;
}
}