aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/SConfig.php
blob: ab6f49025f01659f66547b19c59560eb72fb1139 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php

namespace Zotlabs\Lib;

/**
 * @brief Account configuration storage is built on top of the under-utilised xconfig.
 *
 * @see XConfig
 */
class SConfig {

	static public function Load($server_id) {
		return XConfig::Load('s_' . $server_id);
	}

	static public function Get($server_id,$family,$key,$default = false) {
		return XConfig::Get('s_' . $server_id,$family,$key, $default);
	}

	static public function Set($server_id,$family,$key,$value) {
		return XConfig::Set('s_' . $server_id,$family,$key,$value);
	}

	static public function Delete($server_id,$family,$key) {
		return XConfig::Delete('s_' . $server_id,$family,$key);
	}

}