Exemplo n.º 1
0
 /**
  * Displays a particular model.
  * @param integer $id the ID of the model to be displayed
  */
 public function actionView($id)
 {
     $oimodel = new OrderItem('search');
     $oimodel->unsetAttributes();
     if (isset($_GET['OrderItem'])) {
         $oimodel->attributes = $_GET['OrderItem'];
     }
     $this->render('view', array('dataProvider' => $oimodel->searchWithOrderId($id), 'oimodel' => $oimodel, 'model' => $this->loadModel($id)));
 }