コード例 #1
0
 protected function doSave($con = null)
 {
     $this->savePreferredTransportersList($con);
     parent::doSave($con);
 }
コード例 #2
0
ファイル: FrontController.php プロジェクト: M03G/PrestaShop
 protected function makeCustomerForm()
 {
     $form = new CustomerForm($this->context->smarty, $this->context, $this->getTranslator(), $this->makeCustomerFormatter(), new CustomerPersister($this->context, new Hashing(), $this->getTranslator(), $this->guestAllowed), $this->getTemplateVarUrls());
     $form->setGuestAllowed($this->guestAllowed);
     $form->setAction($this->getCurrentURL());
     return $form;
 }