/**
  * get the user Ban list
  * @return array
  */
 public function getBanList()
 {
     $Object = new BlockList();
     $result = $Object->getBlockList();
     return $result;
 }
Exemple #2
0
function GetUserBlockList($inputs)
{
    include "BlockList.php";
    $BlockList = new BlockList();
    $BlockList->GetUserBlockList($inputs[0]);
}