Loading module/Application/src/Application/Controller/ExportController.php +1 −0 Original line number Diff line number Diff line Loading @@ -32,6 +32,7 @@ class ExportController extends AbstractController 'Adresse électronique' => function (These $these) { return $these->getDoctorant()->getIndividu()->getEmail(); }, 'Adresse électronique personnelle' => function (These $these) { return $these->getDoctorant()->getIndividu()->getMailContact(); }, 'Numéro étudiant' => function (These $these) { return $this->sourceCodeStringHelper->removePrefixFrom($these->getDoctorant()->getSourceCode()); }, 'I.N.E.' => function (These $these) { return $these->getDoctorant()->getIndividu()->getIne(); }, //These 'Identifiant de la thèse' => function (These $these) { return $these->getSourceCode(); }, 'Titre' => function (These $these) { return $these->getTitre(); }, Loading module/Application/src/Application/Entity/Db/Individu.php +25 −0 Original line number Diff line number Diff line Loading @@ -98,6 +98,11 @@ class Individu implements HistoriqueAwareInterface, SourceAwareInterface */ private $mailsConfirmations; /** * @var string */ private $ine; public function __construct() { $this->mailsConfirmations = new ArrayCollection(); Loading Loading @@ -470,4 +475,24 @@ class Individu implements HistoriqueAwareInterface, SourceAwareInterface } return null; } /** * @return string */ public function getIne() { return $this->ine; } /** * @param string $ine * @return Individu */ public function setIne($ine) { $this->ine = $ine; return $this; } } No newline at end of file Loading
module/Application/src/Application/Controller/ExportController.php +1 −0 Original line number Diff line number Diff line Loading @@ -32,6 +32,7 @@ class ExportController extends AbstractController 'Adresse électronique' => function (These $these) { return $these->getDoctorant()->getIndividu()->getEmail(); }, 'Adresse électronique personnelle' => function (These $these) { return $these->getDoctorant()->getIndividu()->getMailContact(); }, 'Numéro étudiant' => function (These $these) { return $this->sourceCodeStringHelper->removePrefixFrom($these->getDoctorant()->getSourceCode()); }, 'I.N.E.' => function (These $these) { return $these->getDoctorant()->getIndividu()->getIne(); }, //These 'Identifiant de la thèse' => function (These $these) { return $these->getSourceCode(); }, 'Titre' => function (These $these) { return $these->getTitre(); }, Loading
module/Application/src/Application/Entity/Db/Individu.php +25 −0 Original line number Diff line number Diff line Loading @@ -98,6 +98,11 @@ class Individu implements HistoriqueAwareInterface, SourceAwareInterface */ private $mailsConfirmations; /** * @var string */ private $ine; public function __construct() { $this->mailsConfirmations = new ArrayCollection(); Loading Loading @@ -470,4 +475,24 @@ class Individu implements HistoriqueAwareInterface, SourceAwareInterface } return null; } /** * @return string */ public function getIne() { return $this->ine; } /** * @param string $ine * @return Individu */ public function setIne($ine) { $this->ine = $ine; return $this; } } No newline at end of file