Exemple #1
0
 public function actionScorelog()
 {
     $id = intval(Yii::app()->request->getParam('id'));
     $player = Player::model()->findByPk($id);
     if (!$id || !$player) {
         throw new CHttpException(404);
     }
     $history = Score_log::model()->findAll("player_id={$id} order by id desc");
     //TODO 分页
     $this->pageTitle = '用户等级分历史记录:' . $player->nickname . '  ' . Yii::app()->params['title'];
     $this->render('scorelog', array('player' => $player, 'history' => $history));
 }