frontend\modules\user\controllers\DefaultController::actionPoint PHP Method

actionPoint() public method

public actionPoint ( $username = '' )
    public function actionPoint($username = '')
    {
        $user = $this->user($username);
        $dataProvider = new ActiveDataProvider(['query' => MeritLog::find()->where(['user_id' => $user->id, 'type' => 1])->orderBy(['created_at' => SORT_DESC])]);
        return $this->render('show', ['user' => $user, 'dataProvider' => $dataProvider]);
    }