Search the Community
Showing results for tags 'customerformatter'.
-
Bonjour, J'ai overridé la classe CustomerFormatter pour ajouter plusieurs champs personnalisés au formulaire d'inscription dans la fonction getFormat(). Par exemple : $format['website'] = (new FormField()) ->setName('website') ->setType('text') ->setLabel($this->translator->trans(...
- 7 replies
-
- override
- traduction
-
(and 2 more)
Tagged with:
-
I'm overriding the getFormat () function in the customerformatter class. Here $this-> translator-> trans doesn't work. So what is the best way to call the translation from override? $format['company'] = (new FormField) ->setName('company') ->setType('text') ->setLabel($this->translator->tra...
-
- customerformatter
- override
-
(and 1 more)
Tagged with:
-
How can I insert an attribute (id) into the input (radio) of my form? I tried some ways but I did not succeed, could anyone give me a tip? My last attempt...: CustomerFormatter.php: getFormat(){} $doc_typeField = (new FormField) ->setName('doc_type') ->setType('radio...
- 3 replies
-
- addAvailableValue
- customerformatter
- (and 4 more)