Ejemplo n.º 1
0
 /**
  * @see parent::haltForm()
  */
 protected function haltForm(Object $Object, $method = 'edit')
 {
     if ($method == 'add') {
         return $this->halt('edit/' . $Object->Id, true);
     }
     return parent::haltForm($Object, $method);
 }
Ejemplo n.º 2
0
 /**
  * @see parent::haltForm()
  */
 protected function haltForm($Object, $method = 'edit')
 {
     if ($method == 'editi' || $method == 'addi') {
         return $this->halt('items/' . $Object->GalleryId, true);
     }
     return parent::haltForm($Object, $method);
 }
Ejemplo n.º 3
0
 public function haltForm(Object $Object, $method = 'edit')
 {
     if ($method == 'add') {
         if ($Object->Id) {
             $Object->send();
         }
     }
     return parent::haltForm($Object, $method);
 }