Skip to content

Instantly share code, notes, and snippets.

@wgm89
Forked from MrSoundless/gist:1073729
Created April 26, 2013 09:11
Show Gist options
  • Save wgm89/5465946 to your computer and use it in GitHub Desktop.
Save wgm89/5465946 to your computer and use it in GitHub Desktop.
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