56 |
function setVal(&$form,$maj,$validation){ |
function setVal(&$form,$maj,$validation){ |
57 |
|
|
58 |
if ($maj > 1){ |
if ($maj > 1){ |
59 |
//Traitement des données pour l'affichage |
//Traitement des données pour l'affichage du select |
60 |
$temp = $this->val[array_search('type_consultation', array_keys($form->val))]; |
$temp = $this->val[array_search('type_consultation', array_keys($form->val))]; |
61 |
|
|
62 |
if ( strcmp($temp, 'pour_information') == 0 ){ |
if ( strcmp($temp, 'pour_information') == 0 ){ |
77 |
} |
} |
78 |
} |
} |
79 |
|
|
80 |
//Formatage des intitulés des champs. |
|
|
function setLib(&$form,$maj) { |
|
|
parent::setLib($form,$maj); |
|
|
$form->setLib('abrege','Abrégé'); |
|
|
$form->setLib('libelle','Libellé'); |
|
|
$form->setLib('adresse','Adresse'); |
|
|
$form->setLib('adresse2','Complément d\'adresse'); |
|
|
$form->setLib('cp','Code postal'); |
|
|
$form->setLib('ville','Ville'); |
|
|
$form->setLib('email','Email'); |
|
|
$form->setLib('type_consultation','Type de consultation'); |
|
|
$form->setLib('type_consultation','Type de consultation'); |
|
|
$form->setLib('consultation_papier','Consultation papier'); |
|
|
$form->setLib('om_validite_debut','Debut de validité'); |
|
|
$form->setLib('om_validite_fin','Fin de validité'); |
|
|
} |
|
81 |
}// fin classe |
}// fin classe |
82 |
?> |
?> |