/**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer $id the ID of the model to be loaded
  * @return SubCategoria the loaded model
  * @throws CHttpException
  */
 public function loadModel($id)
 {
     $model = SubCategoria::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }
Exemplo n.º 2
0
 /**
  * Manages all models.
  */
 public function actionIndex()
 {
     $model = new Produto('search');
     $model->unsetAttributes();
     // clear any default values
     if (isset($_GET['Produto'])) {
         $model->attributes = $_GET['Produto'];
     }
     $this->render('index', array('model' => $model, 'arraySubCategoria' => CHtml::listData(SubCategoria::model()->validos()->findAll(), 'id', 'descricao')));
 }