Jump to content

HelperForm valeur par défaut et champ grisé


BonCev

Recommended Posts

Bonjour,

 

 

Dans un formulaire prestashop avec HelperForm :

Je voudrais savoir comment mettre une valeur par défaut :

- dans un champ texte

- dans un "switch"

 

Et comment rendre non-modifiable un champ (propriété readonly) ?

 

Rien dans la doc :

http://doc.prestashop.com/display/PS15/HelperForm

 

Le formulaire que je souhaite modifié est dans la page Créer un client du BO

/index.php?controller=AdminCustomers&addcustomer

 

Merci

Link to comment
Share on other sites

Une partie de la réponse :

 

pour un champ texte :

exemple generer un mot de passe aléatoire

$helper->fields_value['passwd'] = substr(str_shuffle('abcdefghijklmnopqrstuvwxyz0123456789'), 1, 6);

dans le fichier classes/controller/admincontroller.php

Ligne 2118 environ

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...