streams/Zotlabs/Lib/AConfig.php

30 lines
695 B
PHP
Raw Normal View History

2016-06-08 01:17:39 +00:00
<?php
namespace Zotlabs\Lib;
// account configuration storage is built on top of the under-utilised xconfig
2021-12-03 03:01:39 +00:00
class AConfig
{
public static function Load($account_id)
{
return XConfig::Load('a_' . $account_id);
}
public static function Get($account_id, $family, $key, $default = false)
{
return XConfig::Get('a_' . $account_id, $family, $key, $default);
}
public static function Set($account_id, $family, $key, $value)
{
return XConfig::Set('a_' . $account_id, $family, $key, $value);
}
public static function Delete($account_id, $family, $key)
{
return XConfig::Delete('a_' . $account_id, $family, $key);
}
2016-06-08 01:17:39 +00:00
}