Example #1
0
function removeData($key = "", $appID = "")
{
    if (!\Lobby::$installed) {
        return false;
    } else {
        $appID = $appID == "" ? $GLOBALS['AppID'] : $appID;
        return \Lobby\DB::removeData($appID, $key);
    }
}
Example #2
0
 public function removeData($key)
 {
     return DB::removeData($this->id, $key);
 }