Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

Ignore whitespace Rev 1299 → Rev 1300

/trunk/services/modules/0.1/commun/MetaDonnees.php
23,7 → 23,7
class MetaDonnees extends Commun {
 
protected $requete_champ = '*';
protected $requete_condition = null;
protected $requete_condition = [];
protected $retour_format = 'max';
protected $table_retour = array();
protected $format_reponse = 'metaDonnees';
330,7 → 330,7
if ($table_contact[0] != array()) {
$this->table_retour[$key.'.contact'] = '';
foreach ($table_contact as $info => $valeur) {
$this->table_retour[$key.'.contact'] .= $valeur['contact.prenom']." ".$valeur['contact.nom'];
$this->table_retour[$key.'.contact'] .= ($valeur['contact.prenom'] ?? '')." ". ($valeur['contact.nom'] ?? '');
}
//on affiche les détails des autres contacts :
$this->afficherTableDetails($key.'.contact', $table_contact);