Ejemplo n.º 1
0
 public function actionItemProps($category_id, $item_id = 0, $tree_id)
 {
     $itemProps = ItemProp::findAll(['category_id' => $category_id]);
     $model = Item::findOne(['item_id' => $item_id]);
     return $this->renderPartial('_form_prop', array('itemProps' => $itemProps, 'model' => $model, 'tree_id' => $tree_id));
 }