Update web view with blocked accounts

This commit is contained in:
root
2010-11-02 19:59:49 +01:00
parent c012ab042e
commit 31c7652e83
2 changed files with 25 additions and 5 deletions

View File

@@ -45,6 +45,15 @@ class User
return LoadCategory($this, $id);
}
function IsAccountBlocked($id)
{
foreach($this->accounts as $i => $ac)
if ($ac->id == $id)
return $ac["blocked"] == "1";
return false;
}
function GetAccountName($id)
{
foreach($this->accounts as $i => $account)
@@ -54,4 +63,5 @@ class User
}
}
?>