2024-07-27 12:14:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace YesWiki\Meeo\Eleve;
|
|
|
|
|
|
|
|
use YesWiki\Bazar\Service\EntryManager;
|
|
|
|
|
|
|
|
class Eleve {
|
2024-07-27 13:22:09 +00:00
|
|
|
private $data;
|
|
|
|
private $user;
|
2024-07-27 12:14:54 +00:00
|
|
|
|
2024-08-02 17:00:18 +00:00
|
|
|
public function __construct(EntryManager $entryManager, $yunoshostFormId, $data) {
|
2024-07-27 12:14:54 +00:00
|
|
|
$this->data = $data;
|
2024-07-27 13:22:09 +00:00
|
|
|
// echo "<p>".var_dump($data)."</p>";
|
2024-08-02 17:00:18 +00:00
|
|
|
$userId = $data['listefiche'.$yunoshostFormId.'Listebf_nom'];
|
2024-07-27 13:22:09 +00:00
|
|
|
|
|
|
|
$this->user = $entryManager->getOne($userId);
|
2024-07-27 12:14:54 +00:00
|
|
|
// echo "<p>".var_dump($this)."</p>";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getId() {
|
|
|
|
return $this->data['id_fiche'];
|
|
|
|
}
|
|
|
|
|
2024-08-05 17:02:45 +00:00
|
|
|
public function getUserId() {
|
|
|
|
return $this->user['bf_titre'];
|
|
|
|
}
|
|
|
|
|
2024-07-27 12:14:54 +00:00
|
|
|
public function getNom() {
|
|
|
|
if (empty($this->user['bf_nom'])) {
|
|
|
|
return $this->user['bf_titre'];
|
|
|
|
} else {
|
|
|
|
return $this->user['bf_nom'];
|
|
|
|
}
|
|
|
|
}
|
2024-07-27 13:22:09 +00:00
|
|
|
|
|
|
|
public function getClasse() {
|
|
|
|
if (empty($this->data['listeListeClassesbf_classe'])) {
|
|
|
|
return $this->data['bf_classe'];
|
|
|
|
}
|
|
|
|
return $this->data['listeListeClassesbf_classe'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setClasse(string $classe) {
|
|
|
|
$this->data['listeListeClassesbf_classe'] = $classe;
|
|
|
|
}
|
|
|
|
|
2024-07-29 16:58:52 +00:00
|
|
|
public function getEmail() {
|
|
|
|
return $this->user['bf_mail'];
|
|
|
|
}
|
|
|
|
|
2024-07-27 13:22:09 +00:00
|
|
|
public function getData() {
|
|
|
|
return $this->data;
|
|
|
|
}
|
2024-07-27 12:14:54 +00:00
|
|
|
}
|