src/Util/GenericForm.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Util;
  3. use App\Util\VaciFacilController as VF;
  4. use Doctrine\Persistence\ManagerRegistry as DMR;
  5. class GenericForm extends CustomType
  6. {
  7.     public function __construct(VF $controllerDMR $entityManage)
  8.     {
  9.         parent::__construct($controller$entityManage);
  10.         $this->default[self::BUTTON_CLOSE]["ignore"] = true;
  11.         $this->default[self::BUTTON_SAVE]["ignore"] = true;
  12.     }
  13. }