aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Lib/AConfig.php
blob: ab8648a18ec94f138bf61d2ce6c99db1d6222065 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                              
                                                                            






                                                                        
<?php

namespace Zotlabs\Lib;

// account configuration storage is built on top of the under-utilised xconfig

class AConfig {

	static public function Load($account_id) {
		return XConfig::Load('a_' . $account_id);
	}

	static public function Get($account_id,$family,$key) {
		return XConfig::Get('a_' . $account_id,$family,$key);
	}

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

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

}