app\controllers\DashboardController::findModel PHP Method

findModel() protected method

protected findModel ( $id )
    protected function findModel($id)
    {
        if (($model = Dashboard::findOne($id)) !== null) {
            return $model;
        } else {
            throw new NotFoundHttpException('The requested page does not exist.');
        }
    }