Esempio n. 1
0
 public function initialize($entity = null, $options = null)
 {
     $category = new Select('categoryid', DishCategory::find(), array('using' => array('id', 'category'), 'useEmpty' => TRUE, 'emptyText' => 'Seleccione una Categoria'));
     $category->setLabel('Category');
     $this->add($category);
     $gallery = new Select('galleryid', Gallery::find(), array('using' => array('id', 'name'), 'useEmpty' => TRUE, 'emptyText' => 'Seleccione una galeria'));
     $gallery->setLabel('Galeria');
     $this->add($gallery);
     $name = new Text('name');
     $name->setLabel('Name');
     $this->add($name);
     $price = new Text('price');
     $price->setLabel('Price');
     $this->add($price);
     $image_path = new Text('image_path');
     $image_path->setLabel('Image');
     $this->add($image_path);
     $description = new TextArea('description');
     $description->setLabel('Description');
     $this->add($description);
 }