function loadModel($type, $id, $errorMessage='This page does not exist', $errorNum=404) { $model = CActiveRecord::model($type)->findByPk($id); if ($model === null) throw new CHttpException($errorNum, $errorMessage); return $model; }