Line 18... |
Line 18... |
18 |
|
18 |
|
19 |
private $version = array('titre', 'acronyme', 'version', 'date_prod',
|
19 |
private $version = array('titre', 'acronyme', 'version', 'date_prod',
|
20 |
'auteur_principal', 'coordinateur', 'editeur', 'contact',
|
20 |
'auteur_principal', 'coordinateur', 'editeur', 'contact',
|
21 |
'contributeur',
|
21 |
'contributeur',
|
22 |
'classification', 'dom_tax', 'dom_geo', 'dom_code',
|
22 |
'classification', 'dom_tax', 'dom_geo', 'dom_code',
|
- |
|
23 |
'source', 'copyright', 'licence', 'referencement',
|
23 |
'source', 'copyright', 'licence', 'referencement');
|
24 |
'errata', 'notes');
|
24 |
private $referentiel = null;
|
25 |
private $referentiel = null;
|
25 |
private $referentielDao = null;
|
26 |
private $referentielDao = null;
|
Line 26... |
Line 27... |
26 |
private $traitementDao = null;
|
27 |
private $traitementDao = null;
|
Line 177... |
Line 178... |
177 |
'contact' => 'Courriel de contact',
|
178 |
'contact' => 'Courriel de contact',
|
178 |
'classification' => 'Classification par défaut',
|
179 |
'classification' => 'Classification par défaut',
|
179 |
'dom_tax' => 'Domaine taxonomique',
|
180 |
'dom_tax' => 'Domaine taxonomique',
|
180 |
'dom_geo' => 'Domaine géographique',
|
181 |
'dom_geo' => 'Domaine géographique',
|
181 |
'dom_code' => 'Codes botaniques utilisés',
|
182 |
'dom_code' => 'Codes botaniques utilisés',
|
182 |
'referencement' => 'Comment citer ce référentiel?');
|
183 |
'referencement' => 'Comment citer ce référentiel?',
|
- |
|
184 |
'errata' => 'Errata (URL)');
|
183 |
foreach ($champs_obligatoires as $champ_id => $champ_nom) {
|
185 |
foreach ($champs_obligatoires as $champ_id => $champ_nom) {
|
184 |
if (!isset($_POST[$champ_id]) || empty($_POST[$champ_id])) {
|
186 |
if (!isset($_POST[$champ_id]) || empty($_POST[$champ_id])) {
|
185 |
$this->addMessage("Le champ '$champ_nom' doit être obligatoirement rempli.");
|
187 |
$this->addMessage("Le champ '$champ_nom' doit être obligatoirement rempli.");
|
186 |
$ok = false;
|
188 |
$ok = false;
|
187 |
}
|
189 |
}
|