コード例 #1
0
 public function __construct(Request $request, $type = "form", $data = array(), $options = array(), ContainerInterface $container = null)
 {
     $this->data = $data;
     parent::__construct($request, $type, $data, $options, $container);
     // TODO: Change the autogenerated stub
 }
コード例 #2
0
ファイル: TaxCreationForm.php プロジェクト: badelas/thelia
 public function __construct(Request $request, $type = "form", $data = array(), $options = array())
 {
     $this->taxEngine = $options["tax_engine"];
     unset($options["tax_engine"]);
     parent::__construct($request, $type, $data, $options);
 }
コード例 #3
0
ファイル: TaxCreationForm.php プロジェクト: alex63530/thelia
 public function __construct(Request $request, $type = "form", $data = array(), $options = array(), TaxEngine $taxEngine = null)
 {
     $this->taxEngine = $taxEngine;
     parent::__construct($request, $type, $data, $options);
 }
コード例 #4
0
ファイル: ImportForm.php プロジェクト: alex63530/thelia
 public function __construct(Request $request, $type = "form", $data = array(), $options = array())
 {
     $this->translator = Translator::getInstance();
     parent::__construct($request, $type, $data, $options);
     // TODO: Change the autogenerated stub
 }
コード例 #5
0
ファイル: ExportForm.php プロジェクト: badelas/thelia
 public function __construct(Request $request, $type = "form", $data = array(), $options = array())
 {
     $this->translator = Translator::getInstance();
     parent::__construct($request, $type, $data, $options);
 }