Skip to content

Instantly share code, notes, and snippets.

@MrSoundless
Created July 9, 2011 16:45
Show Gist options
  • Save MrSoundless/1073729 to your computer and use it in GitHub Desktop.
Save MrSoundless/1073729 to your computer and use it in GitHub Desktop.
Yii loadModel method v1.02
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment