Example #1
0
 function BanHistoryAction()
 {
     $request = Project::getRequest();
     $user_id = $request->getKeyByNumber(0);
     $info = array();
     $ban_model = new BanHistoryModel();
     $info['ban_list'] = $ban_model->loadUserHistory($user_id);
     $this->_view->BanHistoryList($info);
     $this->_view->parse();
 }