aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Lib/SConfig.php
blob: ab6f49025f01659f66547b19c59560eb72fb1139 (plain) (tree)
1
2
3
4
5
6
7
8
9



                      




                                                                                      


















                                                                              
<?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);
	}

}