module/Agrement/src/Entity/Db/Traits/AgrementAwareTrait.php
  1. <?php
  2.  
  3. namespace Agrement\Entity\Db\Traits;
  4.  
  5. use Agrement\Entity\Db\Agrement;
  6.  
  7. /**
  8.  * Description of AgrementAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait AgrementAwareTrait
  13. {
  14. protected ?Agrement $agrement = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Agrement $agrement
  20.   *
  21.   * @return self
  22.   */
  23. public function setAgrement( ?Agrement $agrement )
  24. {
  25. $this->agrement = $agrement;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getAgrement(): ?Agrement
  33. {
  34. return $this->agrement;
  35. }
  36. }
module/Agrement/src/Entity/Db/Traits/TblAgrementAwareTrait.php
  1. <?php
  2.  
  3. namespace Agrement\Entity\Db\Traits;
  4.  
  5. use Agrement\Entity\Db\TblAgrement;
  6.  
  7. /**
  8.  * Description of TblAgrementAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TblAgrementAwareTrait
  13. {
  14. protected ?TblAgrement $tblAgrement = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TblAgrement $tblAgrement
  20.   *
  21.   * @return self
  22.   */
  23. public function setTblAgrement( ?TblAgrement $tblAgrement )
  24. {
  25. $this->tblAgrement = $tblAgrement;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTblAgrement(): ?TblAgrement
  33. {
  34. return $this->tblAgrement;
  35. }
  36. }
module/Agrement/src/Entity/Db/Traits/TypeAgrementAwareTrait.php
  1. <?php
  2.  
  3. namespace Agrement\Entity\Db\Traits;
  4.  
  5. use Agrement\Entity\Db\TypeAgrement;
  6.  
  7. /**
  8.  * Description of TypeAgrementAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeAgrementAwareTrait
  13. {
  14. protected ?TypeAgrement $typeAgrement = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeAgrement $typeAgrement
  20.   *
  21.   * @return self
  22.   */
  23. public function setTypeAgrement( ?TypeAgrement $typeAgrement )
  24. {
  25. $this->typeAgrement = $typeAgrement;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTypeAgrement(): ?TypeAgrement
  33. {
  34. return $this->typeAgrement;
  35. }
  36. }
module/Agrement/src/Form/Traits/SaisieAwareTrait.php
  1. <?php
  2.  
  3. namespace Agrement\Form\Traits;
  4.  
  5. use Agrement\Form\Saisie;
  6.  
  7. /**
  8.  * Description of SaisieAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait SaisieAwareTrait
  13. {
  14. protected ?Saisie $formSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Saisie $formSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormSaisie(?Saisie $formSaisie)
  24. {
  25. $this->formSaisie = $formSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormSaisie(): ?Saisie
  33. {
  34. if (!empty($this->formSaisie)) {
  35. return $this->formSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(Saisie::class);
  39. }
  40. }
module/Agrement/src/Service/Traits/AgrementServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Agrement\Service\Traits;
  4.  
  5. use Agrement\Service\AgrementService;
  6.  
  7. /**
  8.  * Description of AgrementServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait AgrementServiceAwareTrait
  13. {
  14. protected ?AgrementService $serviceAgrement = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param AgrementService $serviceAgrement
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceAgrement(?AgrementService $serviceAgrement)
  24. {
  25. $this->serviceAgrement = $serviceAgrement;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceAgrement(): ?AgrementService
  33. {
  34. if (empty($this->serviceAgrement)) {
  35. $this->serviceAgrement = \Application::$container->get(AgrementService::class);
  36. }
  37.  
  38. return $this->serviceAgrement;
  39. }
  40. }
module/Agrement/src/Service/Traits/TblAgrementServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Agrement\Service\Traits;
  4.  
  5. use Agrement\Service\TblAgrementService;
  6.  
  7. /**
  8.  * Description of TblAgrementServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TblAgrementServiceAwareTrait
  13. {
  14. protected ?TblAgrementService $serviceTblAgrement = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TblAgrementService $serviceTblAgrement
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceTblAgrement(?TblAgrementService $serviceTblAgrement)
  24. {
  25. $this->serviceTblAgrement = $serviceTblAgrement;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceTblAgrement(): ?TblAgrementService
  33. {
  34. if (empty($this->serviceTblAgrement)) {
  35. $this->serviceTblAgrement = \Application::$container->get(TblAgrementService::class);
  36. }
  37.  
  38. return $this->serviceTblAgrement;
  39. }
  40. }
module/Agrement/src/Service/Traits/TypeAgrementServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Agrement\Service\Traits;
  4.  
  5. use Agrement\Service\TypeAgrementService;
  6.  
  7. /**
  8.  * Description of TypeAgrementServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeAgrementServiceAwareTrait
  13. {
  14. protected ?TypeAgrementService $serviceTypeAgrement = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeAgrementService $serviceTypeAgrement
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceTypeAgrement(?TypeAgrementService $serviceTypeAgrement)
  24. {
  25. $this->serviceTypeAgrement = $serviceTypeAgrement;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceTypeAgrement(): ?TypeAgrementService
  33. {
  34. if (empty($this->serviceTypeAgrement)) {
  35. $this->serviceTypeAgrement = \Application::$container->get(TypeAgrementService::class);
  36. }
  37.  
  38. return $this->serviceTypeAgrement;
  39. }
  40. }
module/Application/src/Connecteur/Traits/LdapConnecteurAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Connecteur\Traits;
  4.  
  5. use Application\Connecteur\LdapConnecteur;
  6.  
  7. /**
  8.  * Description of LdapConnecteurAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait LdapConnecteurAwareTrait
  13. {
  14. protected ?LdapConnecteur $connecteurLdap = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param LdapConnecteur $connecteurLdap
  20.   *
  21.   * @return self
  22.   */
  23. public function setConnecteurLdap(?LdapConnecteur $connecteurLdap)
  24. {
  25. $this->connecteurLdap = $connecteurLdap;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getConnecteurLdap(): ?LdapConnecteur
  33. {
  34. if (empty($this->connecteurLdap)) {
  35. $this->connecteurLdap = \Application::$container->get(LdapConnecteur::class);
  36. }
  37.  
  38. return $this->connecteurLdap;
  39. }
  40. }
module/Application/src/Entity/Chargens/Traits/LienAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Chargens\Traits;
  4.  
  5. use Application\Entity\Chargens\Lien;
  6.  
  7. /**
  8.  * Description of LienAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait LienAwareTrait
  13. {
  14. protected ?Lien $lien = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Lien $lien
  20.   *
  21.   * @return self
  22.   */
  23. public function setLien( ?Lien $lien )
  24. {
  25. $this->lien = $lien;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getLien(): ?Lien
  33. {
  34. return $this->lien;
  35. }
  36. }
module/Application/src/Entity/Chargens/Traits/NoeudAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Chargens\Traits;
  4.  
  5. use Application\Entity\Chargens\Noeud;
  6.  
  7. /**
  8.  * Description of NoeudAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait NoeudAwareTrait
  13. {
  14. protected ?Noeud $noeud = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Noeud $noeud
  20.   *
  21.   * @return self
  22.   */
  23. public function setNoeud( ?Noeud $noeud )
  24. {
  25. $this->noeud = $noeud;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getNoeud(): ?Noeud
  33. {
  34. return $this->noeud;
  35. }
  36. }
module/Application/src/Entity/Chargens/Traits/ScenarioLienAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Chargens\Traits;
  4.  
  5. use Application\Entity\Chargens\ScenarioLien;
  6.  
  7. /**
  8.  * Description of ScenarioLienAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ScenarioLienAwareTrait
  13. {
  14. protected ?ScenarioLien $scenarioLien = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ScenarioLien $scenarioLien
  20.   *
  21.   * @return self
  22.   */
  23. public function setScenarioLien( ?ScenarioLien $scenarioLien )
  24. {
  25. $this->scenarioLien = $scenarioLien;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getScenarioLien(): ?ScenarioLien
  33. {
  34. return $this->scenarioLien;
  35. }
  36. }
module/Application/src/Entity/Chargens/Traits/ScenarioNoeudAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Chargens\Traits;
  4.  
  5. use Application\Entity\Chargens\ScenarioNoeud;
  6.  
  7. /**
  8.  * Description of ScenarioNoeudAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ScenarioNoeudAwareTrait
  13. {
  14. protected ?ScenarioNoeud $scenarioNoeud = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ScenarioNoeud $scenarioNoeud
  20.   *
  21.   * @return self
  22.   */
  23. public function setScenarioNoeud( ?ScenarioNoeud $scenarioNoeud )
  24. {
  25. $this->scenarioNoeud = $scenarioNoeud;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getScenarioNoeud(): ?ScenarioNoeud
  33. {
  34. return $this->scenarioNoeud;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/AffectationAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Affectation;
  6.  
  7. /**
  8.  * Description of AffectationAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait AffectationAwareTrait
  13. {
  14. protected ?Affectation $affectation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Affectation $affectation
  20.   *
  21.   * @return self
  22.   */
  23. public function setAffectation( ?Affectation $affectation )
  24. {
  25. $this->affectation = $affectation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getAffectation(): ?Affectation
  33. {
  34. return $this->affectation;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/AffectationRechercheAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\AffectationRecherche;
  6.  
  7. /**
  8.  * Description of AffectationRechercheAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait AffectationRechercheAwareTrait
  13. {
  14. protected ?AffectationRecherche $affectationRecherche = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param AffectationRecherche $affectationRecherche
  20.   *
  21.   * @return self
  22.   */
  23. public function setAffectationRecherche( ?AffectationRecherche $affectationRecherche )
  24. {
  25. $this->affectationRecherche = $affectationRecherche;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getAffectationRecherche(): ?AffectationRecherche
  33. {
  34. return $this->affectationRecherche;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/AnneeAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Annee;
  6.  
  7. /**
  8.  * Description of AnneeAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait AnneeAwareTrait
  13. {
  14. protected ?Annee $annee = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Annee $annee
  20.   *
  21.   * @return self
  22.   */
  23. public function setAnnee( ?Annee $annee )
  24. {
  25. $this->annee = $annee;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getAnnee(): ?Annee
  33. {
  34. return $this->annee;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/CiviliteAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Civilite;
  6.  
  7. /**
  8.  * Description of CiviliteAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait CiviliteAwareTrait
  13. {
  14. protected ?Civilite $civilite = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Civilite $civilite
  20.   *
  21.   * @return self
  22.   */
  23. public function setCivilite( ?Civilite $civilite )
  24. {
  25. $this->civilite = $civilite;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getCivilite(): ?Civilite
  33. {
  34. return $this->civilite;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/CorpsAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Corps;
  6.  
  7. /**
  8.  * Description of CorpsAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait CorpsAwareTrait
  13. {
  14. protected ?Corps $corps = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Corps $corps
  20.   *
  21.   * @return self
  22.   */
  23. public function setCorps( ?Corps $corps )
  24. {
  25. $this->corps = $corps;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getCorps(): ?Corps
  33. {
  34. return $this->corps;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/DepartementAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Departement;
  6.  
  7. /**
  8.  * Description of DepartementAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DepartementAwareTrait
  13. {
  14. protected ?Departement $departement = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Departement $departement
  20.   *
  21.   * @return self
  22.   */
  23. public function setDepartement( ?Departement $departement )
  24. {
  25. $this->departement = $departement;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getDepartement(): ?Departement
  33. {
  34. return $this->departement;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/DomaineFonctionnelAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\DomaineFonctionnel;
  6.  
  7. /**
  8.  * Description of DomaineFonctionnelAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DomaineFonctionnelAwareTrait
  13. {
  14. protected ?DomaineFonctionnel $domaineFonctionnel = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DomaineFonctionnel $domaineFonctionnel
  20.   *
  21.   * @return self
  22.   */
  23. public function setDomaineFonctionnel( ?DomaineFonctionnel $domaineFonctionnel )
  24. {
  25. $this->domaineFonctionnel = $domaineFonctionnel;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getDomaineFonctionnel(): ?DomaineFonctionnel
  33. {
  34. return $this->domaineFonctionnel;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/EtablissementAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Etablissement;
  6.  
  7. /**
  8.  * Description of EtablissementAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EtablissementAwareTrait
  13. {
  14. protected ?Etablissement $etablissement = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Etablissement $etablissement
  20.   *
  21.   * @return self
  22.   */
  23. public function setEtablissement( ?Etablissement $etablissement )
  24. {
  25. $this->etablissement = $etablissement;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getEtablissement(): ?Etablissement
  33. {
  34. return $this->etablissement;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/FichierAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Fichier;
  6.  
  7. /**
  8.  * Description of FichierAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FichierAwareTrait
  13. {
  14. protected ?Fichier $fichier = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Fichier $fichier
  20.   *
  21.   * @return self
  22.   */
  23. public function setFichier( ?Fichier $fichier )
  24. {
  25. $this->fichier = $fichier;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFichier(): ?Fichier
  33. {
  34. return $this->fichier;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/FormuleAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Formule;
  6.  
  7. /**
  8.  * Description of FormuleAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleAwareTrait
  13. {
  14. protected ?Formule $formule = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Formule $formule
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormule( ?Formule $formule )
  24. {
  25. $this->formule = $formule;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormule(): ?Formule
  33. {
  34. return $this->formule;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/FormuleResultatAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\FormuleResultat;
  6.  
  7. /**
  8.  * Description of FormuleResultatAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleResultatAwareTrait
  13. {
  14. protected ?FormuleResultat $formuleResultat = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FormuleResultat $formuleResultat
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormuleResultat( ?FormuleResultat $formuleResultat )
  24. {
  25. $this->formuleResultat = $formuleResultat;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormuleResultat(): ?FormuleResultat
  33. {
  34. return $this->formuleResultat;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/FormuleResultatServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\FormuleResultatService;
  6.  
  7. /**
  8.  * Description of FormuleResultatServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleResultatServiceAwareTrait
  13. {
  14. protected ?FormuleResultatService $formuleResultatService = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FormuleResultatService $formuleResultatService
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormuleResultatService( ?FormuleResultatService $formuleResultatService )
  24. {
  25. $this->formuleResultatService = $formuleResultatService;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormuleResultatService(): ?FormuleResultatService
  33. {
  34. return $this->formuleResultatService;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/FormuleResultatServiceReferentielAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\FormuleResultatServiceReferentiel;
  6.  
  7. /**
  8.  * Description of FormuleResultatServiceReferentielAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleResultatServiceReferentielAwareTrait
  13. {
  14. protected ?FormuleResultatServiceReferentiel $formuleResultatServiceReferentiel = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FormuleResultatServiceReferentiel $formuleResultatServiceReferentiel
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormuleResultatServiceReferentiel( ?FormuleResultatServiceReferentiel $formuleResultatServiceReferentiel )
  24. {
  25. $this->formuleResultatServiceReferentiel = $formuleResultatServiceReferentiel;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormuleResultatServiceReferentiel(): ?FormuleResultatServiceReferentiel
  33. {
  34. return $this->formuleResultatServiceReferentiel;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/FormuleResultatVolumeHoraireAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\FormuleResultatVolumeHoraire;
  6.  
  7. /**
  8.  * Description of FormuleResultatVolumeHoraireAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleResultatVolumeHoraireAwareTrait
  13. {
  14. protected ?FormuleResultatVolumeHoraire $formuleResultatVolumeHoraire = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FormuleResultatVolumeHoraire $formuleResultatVolumeHoraire
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormuleResultatVolumeHoraire( ?FormuleResultatVolumeHoraire $formuleResultatVolumeHoraire )
  24. {
  25. $this->formuleResultatVolumeHoraire = $formuleResultatVolumeHoraire;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormuleResultatVolumeHoraire(): ?FormuleResultatVolumeHoraire
  33. {
  34. return $this->formuleResultatVolumeHoraire;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/FormuleResultatVolumeHoraireReferentielAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\FormuleResultatVolumeHoraireReferentiel;
  6.  
  7. /**
  8.  * Description of FormuleResultatVolumeHoraireReferentielAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleResultatVolumeHoraireReferentielAwareTrait
  13. {
  14. protected ?FormuleResultatVolumeHoraireReferentiel $formuleResultatVolumeHoraireReferentiel = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FormuleResultatVolumeHoraireReferentiel $formuleResultatVolumeHoraireReferentiel
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormuleResultatVolumeHoraireReferentiel( ?FormuleResultatVolumeHoraireReferentiel $formuleResultatVolumeHoraireReferentiel )
  24. {
  25. $this->formuleResultatVolumeHoraireReferentiel = $formuleResultatVolumeHoraireReferentiel;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormuleResultatVolumeHoraireReferentiel(): ?FormuleResultatVolumeHoraireReferentiel
  33. {
  34. return $this->formuleResultatVolumeHoraireReferentiel;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/GradeAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Grade;
  6.  
  7. /**
  8.  * Description of GradeAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait GradeAwareTrait
  13. {
  14. protected ?Grade $grade = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Grade $grade
  20.   *
  21.   * @return self
  22.   */
  23. public function setGrade( ?Grade $grade )
  24. {
  25. $this->grade = $grade;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getGrade(): ?Grade
  33. {
  34. return $this->grade;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/IntervenantAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Intervenant;
  6.  
  7. /**
  8.  * Description of IntervenantAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait IntervenantAwareTrait
  13. {
  14. protected ?Intervenant $intervenant = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Intervenant $intervenant
  20.   *
  21.   * @return self
  22.   */
  23. public function setIntervenant( ?Intervenant $intervenant )
  24. {
  25. $this->intervenant = $intervenant;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getIntervenant(): ?Intervenant
  33. {
  34. return $this->intervenant;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/ParametreAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Parametre;
  6.  
  7. /**
  8.  * Description of ParametreAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ParametreAwareTrait
  13. {
  14. protected ?Parametre $parametre = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Parametre $parametre
  20.   *
  21.   * @return self
  22.   */
  23. public function setParametre( ?Parametre $parametre )
  24. {
  25. $this->parametre = $parametre;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getParametre(): ?Parametre
  33. {
  34. return $this->parametre;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/PaysAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Pays;
  6.  
  7. /**
  8.  * Description of PaysAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait PaysAwareTrait
  13. {
  14. protected ?Pays $pays = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Pays $pays
  20.   *
  21.   * @return self
  22.   */
  23. public function setPays( ?Pays $pays )
  24. {
  25. $this->pays = $pays;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getPays(): ?Pays
  33. {
  34. return $this->pays;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/PerimetreAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Perimetre;
  6.  
  7. /**
  8.  * Description of PerimetreAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait PerimetreAwareTrait
  13. {
  14. protected ?Perimetre $perimetre = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Perimetre $perimetre
  20.   *
  21.   * @return self
  22.   */
  23. public function setPerimetre( ?Perimetre $perimetre )
  24. {
  25. $this->perimetre = $perimetre;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getPerimetre(): ?Perimetre
  33. {
  34. return $this->perimetre;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/PeriodeAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Periode;
  6.  
  7. /**
  8.  * Description of PeriodeAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait PeriodeAwareTrait
  13. {
  14. protected ?Periode $periode = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Periode $periode
  20.   *
  21.   * @return self
  22.   */
  23. public function setPeriode( ?Periode $periode )
  24. {
  25. $this->periode = $periode;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getPeriode(): ?Periode
  33. {
  34. return $this->periode;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/RoleAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Role;
  6.  
  7. /**
  8.  * Description of RoleAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait RoleAwareTrait
  13. {
  14. protected ?Role $role = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Role $role
  20.   *
  21.   * @return self
  22.   */
  23. public function setRole( ?Role $role )
  24. {
  25. $this->role = $role;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getRole(): ?Role
  33. {
  34. return $this->role;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/ScenarioAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Scenario;
  6.  
  7. /**
  8.  * Description of ScenarioAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ScenarioAwareTrait
  13. {
  14. protected ?Scenario $scenario = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Scenario $scenario
  20.   *
  21.   * @return self
  22.   */
  23. public function setScenario( ?Scenario $scenario )
  24. {
  25. $this->scenario = $scenario;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getScenario(): ?Scenario
  33. {
  34. return $this->scenario;
  35. }
  36. }
module/Enseignement/src/Entity/Db/Traits/ServiceAPayerInterfaceAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Entity\Db\Traits;
  4.  
  5. use Enseignement\Entity\Db\ServiceAPayerInterface;
  6.  
  7. /**
  8.  * Description of ServiceAPayerInterfaceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ServiceAPayerInterfaceAwareTrait
  13. {
  14. protected ?ServiceAPayerInterface $serviceAPayerInterface = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ServiceAPayerInterface $serviceAPayerInterface
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceAPayerInterface( ?ServiceAPayerInterface $serviceAPayerInterface )
  24. {
  25. $this->serviceAPayerInterface = $serviceAPayerInterface;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceAPayerInterface(): ?ServiceAPayerInterface
  33. {
  34. return $this->serviceAPayerInterface;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/SeuilChargeAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\SeuilCharge;
  6.  
  7. /**
  8.  * Description of SeuilChargeAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait SeuilChargeAwareTrait
  13. {
  14. protected ?SeuilCharge $seuilCharge = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param SeuilCharge $seuilCharge
  20.   *
  21.   * @return self
  22.   */
  23. public function setSeuilCharge( ?SeuilCharge $seuilCharge )
  24. {
  25. $this->seuilCharge = $seuilCharge;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getSeuilCharge(): ?SeuilCharge
  33. {
  34. return $this->seuilCharge;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/StructureAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Structure;
  6.  
  7. /**
  8.  * Description of StructureAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait StructureAwareTrait
  13. {
  14. protected ?Structure $structure = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Structure $structure
  20.   *
  21.   * @return self
  22.   */
  23. public function setStructure( ?Structure $structure )
  24. {
  25. $this->structure = $structure;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getStructure(): ?Structure
  33. {
  34. return $this->structure;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/TblContratAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\TblContrat;
  6.  
  7. /**
  8.  * Description of TblContratAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TblContratAwareTrait
  13. {
  14. protected ?TblContrat $tblContrat = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TblContrat $tblContrat
  20.   *
  21.   * @return self
  22.   */
  23. public function setTblContrat( ?TblContrat $tblContrat )
  24. {
  25. $this->tblContrat = $tblContrat;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTblContrat(): ?TblContrat
  33. {
  34. return $this->tblContrat;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/TblWorkflowAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\TblWorkflow;
  6.  
  7. /**
  8.  * Description of TblWorkflowAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TblWorkflowAwareTrait
  13. {
  14. protected ?TblWorkflow $tblWorkflow = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TblWorkflow $tblWorkflow
  20.   *
  21.   * @return self
  22.   */
  23. public function setTblWorkflow( ?TblWorkflow $tblWorkflow )
  24. {
  25. $this->tblWorkflow = $tblWorkflow;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTblWorkflow(): ?TblWorkflow
  33. {
  34. return $this->tblWorkflow;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/TypePosteAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\TypePoste;
  6.  
  7. /**
  8.  * Description of TypePosteAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypePosteAwareTrait
  13. {
  14. protected ?TypePoste $typePoste = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypePoste $typePoste
  20.   *
  21.   * @return self
  22.   */
  23. public function setTypePoste( ?TypePoste $typePoste )
  24. {
  25. $this->typePoste = $typePoste;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTypePoste(): ?TypePoste
  33. {
  34. return $this->typePoste;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/TypeValidationAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\TypeValidation;
  6.  
  7. /**
  8.  * Description of TypeValidationAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeValidationAwareTrait
  13. {
  14. protected ?TypeValidation $typeValidation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeValidation $typeValidation
  20.   *
  21.   * @return self
  22.   */
  23. public function setTypeValidation( ?TypeValidation $typeValidation )
  24. {
  25. $this->typeValidation = $typeValidation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTypeValidation(): ?TypeValidation
  33. {
  34. return $this->typeValidation;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/UtilisateurAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Utilisateur;
  6.  
  7. /**
  8.  * Description of UtilisateurAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait UtilisateurAwareTrait
  13. {
  14. protected ?Utilisateur $utilisateur = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Utilisateur $utilisateur
  20.   *
  21.   * @return self
  22.   */
  23. public function setUtilisateur( ?Utilisateur $utilisateur )
  24. {
  25. $this->utilisateur = $utilisateur;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getUtilisateur(): ?Utilisateur
  33. {
  34. return $this->utilisateur;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/ValidationAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\Validation;
  6.  
  7. /**
  8.  * Description of ValidationAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ValidationAwareTrait
  13. {
  14. protected ?Validation $validation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Validation $validation
  20.   *
  21.   * @return self
  22.   */
  23. public function setValidation( ?Validation $validation )
  24. {
  25. $this->validation = $validation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getValidation(): ?Validation
  33. {
  34. return $this->validation;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/WfDepBloquanteAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\WfDepBloquante;
  6.  
  7. /**
  8.  * Description of WfDepBloquanteAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait WfDepBloquanteAwareTrait
  13. {
  14. protected ?WfDepBloquante $wfDepBloquante = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param WfDepBloquante $wfDepBloquante
  20.   *
  21.   * @return self
  22.   */
  23. public function setWfDepBloquante( ?WfDepBloquante $wfDepBloquante )
  24. {
  25. $this->wfDepBloquante = $wfDepBloquante;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getWfDepBloquante(): ?WfDepBloquante
  33. {
  34. return $this->wfDepBloquante;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/WfEtapeAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\WfEtape;
  6.  
  7. /**
  8.  * Description of WfEtapeAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait WfEtapeAwareTrait
  13. {
  14. protected ?WfEtape $wfEtape = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param WfEtape $wfEtape
  20.   *
  21.   * @return self
  22.   */
  23. public function setWfEtape( ?WfEtape $wfEtape )
  24. {
  25. $this->wfEtape = $wfEtape;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getWfEtape(): ?WfEtape
  33. {
  34. return $this->wfEtape;
  35. }
  36. }
module/Application/src/Entity/Db/Traits/WfEtapeDepAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Db\Traits;
  4.  
  5. use Application\Entity\Db\WfEtapeDep;
  6.  
  7. /**
  8.  * Description of WfEtapeDepAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait WfEtapeDepAwareTrait
  13. {
  14. protected ?WfEtapeDep $wfEtapeDep = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param WfEtapeDep $wfEtapeDep
  20.   *
  21.   * @return self
  22.   */
  23. public function setWfEtapeDep( ?WfEtapeDep $wfEtapeDep )
  24. {
  25. $this->wfEtapeDep = $wfEtapeDep;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getWfEtapeDep(): ?WfEtapeDep
  33. {
  34. return $this->wfEtapeDep;
  35. }
  36. }
module/Application/src/Entity/Traits/NiveauEtapeAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Traits;
  4.  
  5. use Application\Entity\NiveauEtape;
  6.  
  7. /**
  8.  * Description of NiveauEtapeAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait NiveauEtapeAwareTrait
  13. {
  14. protected ?NiveauEtape $niveauEtape = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param NiveauEtape $niveauEtape
  20.   *
  21.   * @return self
  22.   */
  23. public function setNiveauEtape( ?NiveauEtape $niveauEtape )
  24. {
  25. $this->niveauEtape = $niveauEtape;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getNiveauEtape(): ?NiveauEtape
  33. {
  34. return $this->niveauEtape;
  35. }
  36. }
module/Application/src/Form/Chargens/Traits/DifferentielFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Chargens\Traits;
  4.  
  5. use Application\Form\Chargens\DifferentielForm;
  6.  
  7. /**
  8.  * Description of DifferentielFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DifferentielFormAwareTrait
  13. {
  14. protected ?DifferentielForm $formChargensDifferentiel = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DifferentielForm $formChargensDifferentiel
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormChargensDifferentiel(?DifferentielForm $formChargensDifferentiel)
  24. {
  25. $this->formChargensDifferentiel = $formChargensDifferentiel;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormChargensDifferentiel(): ?DifferentielForm
  33. {
  34. if (!empty($this->formChargensDifferentiel)) {
  35. return $this->formChargensDifferentiel;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(DifferentielForm::class);
  39. }
  40. }
module/Application/src/Form/Chargens/Traits/DuplicationScenarioFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Chargens\Traits;
  4.  
  5. use Application\Form\Chargens\DuplicationScenarioForm;
  6.  
  7. /**
  8.  * Description of DuplicationScenarioFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DuplicationScenarioFormAwareTrait
  13. {
  14. protected ?DuplicationScenarioForm $formChargensDuplicationScenario = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DuplicationScenarioForm $formChargensDuplicationScenario
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormChargensDuplicationScenario(?DuplicationScenarioForm $formChargensDuplicationScenario)
  24. {
  25. $this->formChargensDuplicationScenario = $formChargensDuplicationScenario;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormChargensDuplicationScenario(): ?DuplicationScenarioForm
  33. {
  34. if (!empty($this->formChargensDuplicationScenario)) {
  35. return $this->formChargensDuplicationScenario;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(DuplicationScenarioForm::class);
  39. }
  40. }
module/Application/src/Form/Chargens/Traits/FiltreFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Chargens\Traits;
  4.  
  5. use Application\Form\Chargens\FiltreForm;
  6.  
  7. /**
  8.  * Description of FiltreFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FiltreFormAwareTrait
  13. {
  14. protected ?FiltreForm $formChargensFiltre = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FiltreForm $formChargensFiltre
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormChargensFiltre(?FiltreForm $formChargensFiltre)
  24. {
  25. $this->formChargensFiltre = $formChargensFiltre;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormChargensFiltre(): ?FiltreForm
  33. {
  34. if (!empty($this->formChargensFiltre)) {
  35. return $this->formChargensFiltre;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(FiltreForm::class);
  39. }
  40. }
module/Application/src/Form/Chargens/Traits/ScenarioFiltreFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Chargens\Traits;
  4.  
  5. use Application\Form\Chargens\ScenarioFiltreForm;
  6.  
  7. /**
  8.  * Description of ScenarioFiltreFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ScenarioFiltreFormAwareTrait
  13. {
  14. protected ?ScenarioFiltreForm $formChargensScenarioFiltre = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ScenarioFiltreForm $formChargensScenarioFiltre
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormChargensScenarioFiltre(?ScenarioFiltreForm $formChargensScenarioFiltre)
  24. {
  25. $this->formChargensScenarioFiltre = $formChargensScenarioFiltre;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormChargensScenarioFiltre(): ?ScenarioFiltreForm
  33. {
  34. if (!empty($this->formChargensScenarioFiltre)) {
  35. return $this->formChargensScenarioFiltre;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(ScenarioFiltreForm::class);
  39. }
  40. }
module/Application/src/Form/Chargens/Traits/ScenarioFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Chargens\Traits;
  4.  
  5. use Application\Form\Chargens\ScenarioForm;
  6.  
  7. /**
  8.  * Description of ScenarioFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ScenarioFormAwareTrait
  13. {
  14. protected ?ScenarioForm $formChargensScenario = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ScenarioForm $formChargensScenario
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormChargensScenario(?ScenarioForm $formChargensScenario)
  24. {
  25. $this->formChargensScenario = $formChargensScenario;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormChargensScenario(): ?ScenarioForm
  33. {
  34. if (!empty($this->formChargensScenario)) {
  35. return $this->formChargensScenario;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(ScenarioForm::class);
  39. }
  40. }
module/Application/src/Form/Corps/Traits/CorpsSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Corps\Traits;
  4.  
  5. use Application\Form\Corps\CorpsSaisieForm;
  6.  
  7. /**
  8.  * Description of CorpsSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait CorpsSaisieFormAwareTrait
  13. {
  14. protected ?CorpsSaisieForm $formCorpsCorpsSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param CorpsSaisieForm $formCorpsCorpsSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormCorpsCorpsSaisie(?CorpsSaisieForm $formCorpsCorpsSaisie)
  24. {
  25. $this->formCorpsCorpsSaisie = $formCorpsCorpsSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormCorpsCorpsSaisie(): ?CorpsSaisieForm
  33. {
  34. if (!empty($this->formCorpsCorpsSaisie)) {
  35. return $this->formCorpsCorpsSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(CorpsSaisieForm::class);
  39. }
  40. }
module/Application/src/Form/Departement/Traits/DepartementSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Departement\Traits;
  4.  
  5. use Application\Form\Departement\DepartementSaisieForm;
  6.  
  7. /**
  8.  * Description of DepartementSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DepartementSaisieFormAwareTrait
  13. {
  14. protected ?DepartementSaisieForm $formDepartementDepartementSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DepartementSaisieForm $formDepartementDepartementSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormDepartementDepartementSaisie(?DepartementSaisieForm $formDepartementDepartementSaisie)
  24. {
  25. $this->formDepartementDepartementSaisie = $formDepartementDepartementSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormDepartementDepartementSaisie(): ?DepartementSaisieForm
  33. {
  34. if (!empty($this->formDepartementDepartementSaisie)) {
  35. return $this->formDepartementDepartementSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(DepartementSaisieForm::class);
  39. }
  40. }
module/Application/src/Form/DomaineFonctionnel/Traits/DomaineFonctionnelSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\DomaineFonctionnel\Traits;
  4.  
  5. use Application\Form\DomaineFonctionnel\DomaineFonctionnelSaisieForm;
  6.  
  7. /**
  8.  * Description of DomaineFonctionnelSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DomaineFonctionnelSaisieFormAwareTrait
  13. {
  14. protected ?DomaineFonctionnelSaisieForm $formDomaineFonctionnelDomaineFonctionnelSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DomaineFonctionnelSaisieForm $formDomaineFonctionnelDomaineFonctionnelSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormDomaineFonctionnelDomaineFonctionnelSaisie(?DomaineFonctionnelSaisieForm $formDomaineFonctionnelDomaineFonctionnelSaisie)
  24. {
  25. $this->formDomaineFonctionnelDomaineFonctionnelSaisie = $formDomaineFonctionnelDomaineFonctionnelSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormDomaineFonctionnelDomaineFonctionnelSaisie(): ?DomaineFonctionnelSaisieForm
  33. {
  34. if (!empty($this->formDomaineFonctionnelDomaineFonctionnelSaisie)) {
  35. return $this->formDomaineFonctionnelDomaineFonctionnelSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(DomaineFonctionnelSaisieForm::class);
  39. }
  40. }
module/Application/src/Form/Droits/Traits/AffectationFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Droits\Traits;
  4.  
  5. use Application\Form\Droits\AffectationForm;
  6.  
  7. /**
  8.  * Description of AffectationFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait AffectationFormAwareTrait
  13. {
  14. protected ?AffectationForm $formDroitsAffectation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param AffectationForm $formDroitsAffectation
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormDroitsAffectation(?AffectationForm $formDroitsAffectation)
  24. {
  25. $this->formDroitsAffectation = $formDroitsAffectation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormDroitsAffectation(): ?AffectationForm
  33. {
  34. if (!empty($this->formDroitsAffectation)) {
  35. return $this->formDroitsAffectation;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(AffectationForm::class);
  39. }
  40. }
module/Application/src/Form/Droits/Traits/RoleFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Droits\Traits;
  4.  
  5. use Application\Form\Droits\RoleForm;
  6.  
  7. /**
  8.  * Description of RoleFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait RoleFormAwareTrait
  13. {
  14. protected ?RoleForm $formDroitsRole = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param RoleForm $formDroitsRole
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormDroitsRole(?RoleForm $formDroitsRole)
  24. {
  25. $this->formDroitsRole = $formDroitsRole;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormDroitsRole(): ?RoleForm
  33. {
  34. if (!empty($this->formDroitsRole)) {
  35. return $this->formDroitsRole;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(RoleForm::class);
  39. }
  40. }
module/Application/src/Form/Etablissement/Traits/EtablissementSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Etablissement\Traits;
  4.  
  5. use Application\Form\Etablissement\EtablissementSaisieForm;
  6.  
  7. /**
  8.  * Description of EtablissementSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EtablissementSaisieFormAwareTrait
  13. {
  14. protected ?EtablissementSaisieForm $formEtablissementEtablissementSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param EtablissementSaisieForm $formEtablissementEtablissementSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormEtablissementEtablissementSaisie(?EtablissementSaisieForm $formEtablissementEtablissementSaisie)
  24. {
  25. $this->formEtablissementEtablissementSaisie = $formEtablissementEtablissementSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormEtablissementEtablissementSaisie(): ?EtablissementSaisieForm
  33. {
  34. if (!empty($this->formEtablissementEtablissementSaisie)) {
  35. return $this->formEtablissementEtablissementSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(EtablissementSaisieForm::class);
  39. }
  40. }
module/Application/src/Form/Grade/Traits/GradeSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Grade\Traits;
  4.  
  5. use Application\Form\Grade\GradeSaisieForm;
  6.  
  7. /**
  8.  * Description of GradeSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait GradeSaisieFormAwareTrait
  13. {
  14. protected ?GradeSaisieForm $formGradeGradeSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param GradeSaisieForm $formGradeGradeSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormGradeGradeSaisie(?GradeSaisieForm $formGradeGradeSaisie)
  24. {
  25. $this->formGradeGradeSaisie = $formGradeGradeSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormGradeGradeSaisie(): ?GradeSaisieForm
  33. {
  34. if (!empty($this->formGradeGradeSaisie)) {
  35. return $this->formGradeGradeSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(GradeSaisieForm::class);
  39. }
  40. }
module/Application/src/Form/Intervenant/Traits/EditionFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Intervenant\Traits;
  4.  
  5. use Application\Form\Intervenant\EditionForm;
  6.  
  7. /**
  8.  * Description of EditionFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EditionFormAwareTrait
  13. {
  14. protected ?EditionForm $formIntervenantEdition = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param EditionForm $formIntervenantEdition
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormIntervenantEdition(?EditionForm $formIntervenantEdition)
  24. {
  25. $this->formIntervenantEdition = $formIntervenantEdition;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormIntervenantEdition(): ?EditionForm
  33. {
  34. if (!empty($this->formIntervenantEdition)) {
  35. return $this->formIntervenantEdition;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(EditionForm::class);
  39. }
  40. }
module/Application/src/Form/Intervenant/Traits/HeuresCompFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Intervenant\Traits;
  4.  
  5. use Application\Form\Intervenant\HeuresCompForm;
  6.  
  7. /**
  8.  * Description of HeuresCompFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait HeuresCompFormAwareTrait
  13. {
  14. protected ?HeuresCompForm $formIntervenantHeuresComp = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param HeuresCompForm $formIntervenantHeuresComp
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormIntervenantHeuresComp(?HeuresCompForm $formIntervenantHeuresComp)
  24. {
  25. $this->formIntervenantHeuresComp = $formIntervenantHeuresComp;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormIntervenantHeuresComp(): ?HeuresCompForm
  33. {
  34. if (!empty($this->formIntervenantHeuresComp)) {
  35. return $this->formIntervenantHeuresComp;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(HeuresCompForm::class);
  39. }
  40. }
module/Application/src/Form/Pays/Traits/PaysSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Pays\Traits;
  4.  
  5. use Application\Form\Pays\PaysSaisieForm;
  6.  
  7. /**
  8.  * Description of PaysSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait PaysSaisieFormAwareTrait
  13. {
  14. protected ?PaysSaisieForm $formPaysPaysSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param PaysSaisieForm $formPaysPaysSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormPaysPaysSaisie(?PaysSaisieForm $formPaysPaysSaisie)
  24. {
  25. $this->formPaysPaysSaisie = $formPaysPaysSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormPaysPaysSaisie(): ?PaysSaisieForm
  33. {
  34. if (!empty($this->formPaysPaysSaisie)) {
  35. return $this->formPaysPaysSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(PaysSaisieForm::class);
  39. }
  40. }
module/Application/src/Form/Periode/Traits/PeriodeSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Periode\Traits;
  4.  
  5. use Application\Form\Periode\PeriodeSaisieForm;
  6.  
  7. /**
  8.  * Description of PeriodeSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait PeriodeSaisieFormAwareTrait
  13. {
  14. protected ?PeriodeSaisieForm $formPeriodePeriodeSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param PeriodeSaisieForm $formPeriodePeriodeSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormPeriodePeriodeSaisie(?PeriodeSaisieForm $formPeriodePeriodeSaisie)
  24. {
  25. $this->formPeriodePeriodeSaisie = $formPeriodePeriodeSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormPeriodePeriodeSaisie(): ?PeriodeSaisieForm
  33. {
  34. if (!empty($this->formPeriodePeriodeSaisie)) {
  35. return $this->formPeriodePeriodeSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(PeriodeSaisieForm::class);
  39. }
  40. }
module/Application/src/Form/Structure/Traits/StructureSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Structure\Traits;
  4.  
  5. use Application\Form\Structure\StructureSaisieForm;
  6.  
  7. /**
  8.  * Description of StructureSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait StructureSaisieFormAwareTrait
  13. {
  14. protected ?StructureSaisieForm $formStructureStructureSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param StructureSaisieForm $formStructureStructureSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormStructureStructureSaisie(?StructureSaisieForm $formStructureStructureSaisie)
  24. {
  25. $this->formStructureStructureSaisie = $formStructureStructureSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormStructureStructureSaisie(): ?StructureSaisieForm
  33. {
  34. if (!empty($this->formStructureStructureSaisie)) {
  35. return $this->formStructureStructureSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(StructureSaisieForm::class);
  39. }
  40. }
module/Application/src/Form/Traits/EtatSortieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Traits;
  4.  
  5. use Application\Form\EtatSortieForm;
  6.  
  7. /**
  8.  * Description of EtatSortieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EtatSortieFormAwareTrait
  13. {
  14. protected ?EtatSortieForm $formEtatSortie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param EtatSortieForm $formEtatSortie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormEtatSortie(?EtatSortieForm $formEtatSortie)
  24. {
  25. $this->formEtatSortie = $formEtatSortie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormEtatSortie(): ?EtatSortieForm
  33. {
  34. if (!empty($this->formEtatSortie)) {
  35. return $this->formEtatSortie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(EtatSortieForm::class);
  39. }
  40. }
module/Application/src/Form/Traits/ParametresFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Traits;
  4.  
  5. use Application\Form\ParametresForm;
  6.  
  7. /**
  8.  * Description of ParametresFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ParametresFormAwareTrait
  13. {
  14. protected ?ParametresForm $formParametres = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ParametresForm $formParametres
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormParametres(?ParametresForm $formParametres)
  24. {
  25. $this->formParametres = $formParametres;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormParametres(): ?ParametresForm
  33. {
  34. if (!empty($this->formParametres)) {
  35. return $this->formParametres;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(ParametresForm::class);
  39. }
  40. }
module/Application/src/Form/Voirie/Traits/VoirieSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Voirie\Traits;
  4.  
  5. use Application\Form\Voirie\VoirieSaisieForm;
  6.  
  7. /**
  8.  * Description of VoirieSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait VoirieSaisieFormAwareTrait
  13. {
  14. protected ?VoirieSaisieForm $formVoirieVoirieSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param VoirieSaisieForm $formVoirieVoirieSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormVoirieVoirieSaisie(?VoirieSaisieForm $formVoirieVoirieSaisie)
  24. {
  25. $this->formVoirieVoirieSaisie = $formVoirieVoirieSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormVoirieVoirieSaisie(): ?VoirieSaisieForm
  33. {
  34. if (!empty($this->formVoirieVoirieSaisie)) {
  35. return $this->formVoirieVoirieSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(VoirieSaisieForm::class);
  39. }
  40. }
module/Application/src/Form/Workflow/Traits/DependanceFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Form\Workflow\Traits;
  4.  
  5. use Application\Form\Workflow\DependanceForm;
  6.  
  7. /**
  8.  * Description of DependanceFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DependanceFormAwareTrait
  13. {
  14. protected ?DependanceForm $formWorkflowDependance = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DependanceForm $formWorkflowDependance
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormWorkflowDependance(?DependanceForm $formWorkflowDependance)
  24. {
  25. $this->formWorkflowDependance = $formWorkflowDependance;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormWorkflowDependance(): ?DependanceForm
  33. {
  34. if (!empty($this->formWorkflowDependance)) {
  35. return $this->formWorkflowDependance;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(DependanceForm::class);
  39. }
  40. }
module/Application/src/ORM/Event/Listeners/HistoriqueListenerAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\ORM\Event\Listeners;
  4.  
  5.  
  6. /**
  7.  * Description of HistoriqueListenerAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait HistoriqueListenerAwareTrait
  12. {
  13. protected ?HistoriqueListener $oRMEventListenersHistoriqueListener = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param HistoriqueListener $oRMEventListenersHistoriqueListener
  19.   *
  20.   * @return self
  21.   */
  22. public function setORMEventListenersHistoriqueListener(?HistoriqueListener $oRMEventListenersHistoriqueListener)
  23. {
  24. $this->oRMEventListenersHistoriqueListener = $oRMEventListenersHistoriqueListener;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getORMEventListenersHistoriqueListener(): ?HistoriqueListener
  32. {
  33. if (empty($this->oRMEventListenersHistoriqueListener)) {
  34. $this->oRMEventListenersHistoriqueListener = \Application::$container->get(HistoriqueListener::class);
  35. }
  36.  
  37. return $this->oRMEventListenersHistoriqueListener;
  38. }
  39. }
module/Application/src/Processus/Traits/IntervenantProcessusAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Processus\Traits;
  4.  
  5. use Application\Processus\IntervenantProcessus;
  6.  
  7. /**
  8.  * Description of IntervenantProcessusAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait IntervenantProcessusAwareTrait
  13. {
  14. protected ?IntervenantProcessus $processusIntervenant = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param IntervenantProcessus $processusIntervenant
  20.   *
  21.   * @return self
  22.   */
  23. public function setProcessusIntervenant(?IntervenantProcessus $processusIntervenant)
  24. {
  25. $this->processusIntervenant = $processusIntervenant;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getProcessusIntervenant(): ?IntervenantProcessus
  33. {
  34. if (empty($this->processusIntervenant)) {
  35. $this->processusIntervenant = \Application::$container->get(IntervenantProcessus::class);
  36. }
  37.  
  38. return $this->processusIntervenant;
  39. }
  40. }
module/Application/src/Provider/Chargens/ChargensProviderAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Provider\Chargens;
  4.  
  5.  
  6. /**
  7.  * Description of ChargensProviderAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ChargensProviderAwareTrait
  12. {
  13. protected ?ChargensProvider $providerChargensChargens = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ChargensProvider $providerChargensChargens
  19.   *
  20.   * @return self
  21.   */
  22. public function setProviderChargensChargens(?ChargensProvider $providerChargensChargens)
  23. {
  24. $this->providerChargensChargens = $providerChargensChargens;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getProviderChargensChargens(): ?ChargensProvider
  32. {
  33. if (empty($this->providerChargensChargens)) {
  34. $this->providerChargensChargens = \Application::$container->get(ChargensProvider::class);
  35. }
  36.  
  37. return $this->providerChargensChargens;
  38. }
  39. }
module/Application/src/Provider/Role/RoleProviderAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Provider\Role;
  4.  
  5.  
  6. /**
  7.  * Description of RoleProviderAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait RoleProviderAwareTrait
  12. {
  13. protected ?RoleProvider $providerRoleRole = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param RoleProvider $providerRoleRole
  19.   *
  20.   * @return self
  21.   */
  22. public function setProviderRoleRole(?RoleProvider $providerRoleRole)
  23. {
  24. $this->providerRoleRole = $providerRoleRole;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getProviderRoleRole(): ?RoleProvider
  32. {
  33. if (empty($this->providerRoleRole)) {
  34. $this->providerRoleRole = \Application::$container->get(RoleProvider::class);
  35. }
  36.  
  37. return $this->providerRoleRole;
  38. }
  39. }
module/Application/src/Service/Traits/AdresseNumeroComplServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\AdresseNumeroComplService;
  6.  
  7. /**
  8.  * Description of AdresseNumeroComplServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait AdresseNumeroComplServiceAwareTrait
  13. {
  14. protected ?AdresseNumeroComplService $serviceAdresseNumeroCompl = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param AdresseNumeroComplService $serviceAdresseNumeroCompl
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceAdresseNumeroCompl(?AdresseNumeroComplService $serviceAdresseNumeroCompl)
  24. {
  25. $this->serviceAdresseNumeroCompl = $serviceAdresseNumeroCompl;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceAdresseNumeroCompl(): ?AdresseNumeroComplService
  33. {
  34. if (empty($this->serviceAdresseNumeroCompl)) {
  35. $this->serviceAdresseNumeroCompl = \Application::$container->get(AdresseNumeroComplService::class);
  36. }
  37.  
  38. return $this->serviceAdresseNumeroCompl;
  39. }
  40. }
module/Application/src/Service/Traits/AffectationServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\AffectationService;
  6.  
  7. /**
  8.  * Description of AffectationServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait AffectationServiceAwareTrait
  13. {
  14. protected ?AffectationService $serviceAffectation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param AffectationService $serviceAffectation
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceAffectation(?AffectationService $serviceAffectation)
  24. {
  25. $this->serviceAffectation = $serviceAffectation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceAffectation(): ?AffectationService
  33. {
  34. if (empty($this->serviceAffectation)) {
  35. $this->serviceAffectation = \Application::$container->get(AffectationService::class);
  36. }
  37.  
  38. return $this->serviceAffectation;
  39. }
  40. }
module/Application/src/Service/Traits/AnneeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\AnneeService;
  6.  
  7. /**
  8.  * Description of AnneeServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait AnneeServiceAwareTrait
  13. {
  14. protected ?AnneeService $serviceAnnee = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param AnneeService $serviceAnnee
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceAnnee(?AnneeService $serviceAnnee)
  24. {
  25. $this->serviceAnnee = $serviceAnnee;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceAnnee(): ?AnneeService
  33. {
  34. if (empty($this->serviceAnnee)) {
  35. $this->serviceAnnee = \Application::$container->get(AnneeService::class);
  36. }
  37.  
  38. return $this->serviceAnnee;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/CentreCoutEpServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\CentreCoutEpService;
  6.  
  7. /**
  8.  * Description of CentreCoutEpServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait CentreCoutEpServiceAwareTrait
  13. {
  14. protected ?CentreCoutEpService $serviceCentreCoutEp = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param CentreCoutEpService $serviceCentreCoutEp
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceCentreCoutEp(?CentreCoutEpService $serviceCentreCoutEp)
  24. {
  25. $this->serviceCentreCoutEp = $serviceCentreCoutEp;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceCentreCoutEp(): ?CentreCoutEpService
  33. {
  34. if (empty($this->serviceCentreCoutEp)) {
  35. $this->serviceCentreCoutEp = \Application::$container->get(CentreCoutEpService::class);
  36. }
  37.  
  38. return $this->serviceCentreCoutEp;
  39. }
  40. }
module/Application/src/Service/Traits/CiviliteServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\CiviliteService;
  6.  
  7. /**
  8.  * Description of CiviliteServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait CiviliteServiceAwareTrait
  13. {
  14. protected ?CiviliteService $serviceCivilite = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param CiviliteService $serviceCivilite
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceCivilite(?CiviliteService $serviceCivilite)
  24. {
  25. $this->serviceCivilite = $serviceCivilite;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceCivilite(): ?CiviliteService
  33. {
  34. if (empty($this->serviceCivilite)) {
  35. $this->serviceCivilite = \Application::$container->get(CiviliteService::class);
  36. }
  37.  
  38. return $this->serviceCivilite;
  39. }
  40. }
module/Application/src/Service/Traits/ContextServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\ContextService;
  6.  
  7. /**
  8.  * Description of ContextServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ContextServiceAwareTrait
  13. {
  14. protected ?ContextService $serviceContext = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ContextService $serviceContext
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceContext(?ContextService $serviceContext)
  24. {
  25. $this->serviceContext = $serviceContext;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceContext(): ?ContextService
  33. {
  34. if (empty($this->serviceContext)) {
  35. $this->serviceContext = \Application::$container->get(ContextService::class);
  36. }
  37.  
  38. return $this->serviceContext;
  39. }
  40. }
module/Application/src/Service/Traits/CorpsServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\CorpsService;
  6.  
  7. /**
  8.  * Description of CorpsServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait CorpsServiceAwareTrait
  13. {
  14. protected ?CorpsService $serviceCorps = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param CorpsService $serviceCorps
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceCorps(?CorpsService $serviceCorps)
  24. {
  25. $this->serviceCorps = $serviceCorps;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceCorps(): ?CorpsService
  33. {
  34. if (empty($this->serviceCorps)) {
  35. $this->serviceCorps = \Application::$container->get(CorpsService::class);
  36. }
  37.  
  38. return $this->serviceCorps;
  39. }
  40. }
module/Application/src/Service/Traits/DepartementServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\DepartementService;
  6.  
  7. /**
  8.  * Description of DepartementServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DepartementServiceAwareTrait
  13. {
  14. protected ?DepartementService $serviceDepartement = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DepartementService $serviceDepartement
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceDepartement(?DepartementService $serviceDepartement)
  24. {
  25. $this->serviceDepartement = $serviceDepartement;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceDepartement(): ?DepartementService
  33. {
  34. if (empty($this->serviceDepartement)) {
  35. $this->serviceDepartement = \Application::$container->get(DepartementService::class);
  36. }
  37.  
  38. return $this->serviceDepartement;
  39. }
  40. }
module/Application/src/Service/Traits/EtablissementServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\EtablissementService;
  6.  
  7. /**
  8.  * Description of EtablissementServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EtablissementServiceAwareTrait
  13. {
  14. protected ?EtablissementService $serviceEtablissement = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param EtablissementService $serviceEtablissement
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceEtablissement(?EtablissementService $serviceEtablissement)
  24. {
  25. $this->serviceEtablissement = $serviceEtablissement;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceEtablissement(): ?EtablissementService
  33. {
  34. if (empty($this->serviceEtablissement)) {
  35. $this->serviceEtablissement = \Application::$container->get(EtablissementService::class);
  36. }
  37.  
  38. return $this->serviceEtablissement;
  39. }
  40. }
module/Application/src/Service/Traits/EtatSortieServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\EtatSortieService;
  6.  
  7. /**
  8.  * Description of EtatSortieServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EtatSortieServiceAwareTrait
  13. {
  14. protected ?EtatSortieService $serviceEtatSortie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param EtatSortieService $serviceEtatSortie
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceEtatSortie(?EtatSortieService $serviceEtatSortie)
  24. {
  25. $this->serviceEtatSortie = $serviceEtatSortie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceEtatSortie(): ?EtatSortieService
  33. {
  34. if (empty($this->serviceEtatSortie)) {
  35. $this->serviceEtatSortie = \Application::$container->get(EtatSortieService::class);
  36. }
  37.  
  38. return $this->serviceEtatSortie;
  39. }
  40. }
module/Application/src/Service/Traits/FichierServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\FichierService;
  6.  
  7. /**
  8.  * Description of FichierServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FichierServiceAwareTrait
  13. {
  14. protected ?FichierService $serviceFichier = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FichierService $serviceFichier
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceFichier(?FichierService $serviceFichier)
  24. {
  25. $this->serviceFichier = $serviceFichier;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceFichier(): ?FichierService
  33. {
  34. if (empty($this->serviceFichier)) {
  35. $this->serviceFichier = \Application::$container->get(FichierService::class);
  36. }
  37.  
  38. return $this->serviceFichier;
  39. }
  40. }
module/Application/src/Service/Traits/FormuleResultatServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\FormuleResultatService;
  6.  
  7. /**
  8.  * Description of FormuleResultatServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleResultatServiceAwareTrait
  13. {
  14. protected ?FormuleResultatService $serviceFormuleResultat = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FormuleResultatService $serviceFormuleResultat
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceFormuleResultat(?FormuleResultatService $serviceFormuleResultat)
  24. {
  25. $this->serviceFormuleResultat = $serviceFormuleResultat;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceFormuleResultat(): ?FormuleResultatService
  33. {
  34. if (empty($this->serviceFormuleResultat)) {
  35. $this->serviceFormuleResultat = \Application::$container->get(FormuleResultatService::class);
  36. }
  37.  
  38. return $this->serviceFormuleResultat;
  39. }
  40. }
module/Application/src/Service/Traits/FormuleResultatServiceReferentielServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\FormuleResultatServiceReferentielService;
  6.  
  7. /**
  8.  * Description of FormuleResultatServiceReferentielServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleResultatServiceReferentielServiceAwareTrait
  13. {
  14. protected ?FormuleResultatServiceReferentielService $serviceFormuleResultatServiceReferentiel = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FormuleResultatServiceReferentielService $serviceFormuleResultatServiceReferentiel
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceFormuleResultatServiceReferentiel(?FormuleResultatServiceReferentielService $serviceFormuleResultatServiceReferentiel)
  24. {
  25. $this->serviceFormuleResultatServiceReferentiel = $serviceFormuleResultatServiceReferentiel;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceFormuleResultatServiceReferentiel(): ?FormuleResultatServiceReferentielService
  33. {
  34. if (empty($this->serviceFormuleResultatServiceReferentiel)) {
  35. $this->serviceFormuleResultatServiceReferentiel = \Application::$container->get(FormuleResultatServiceReferentielService::class);
  36. }
  37.  
  38. return $this->serviceFormuleResultatServiceReferentiel;
  39. }
  40. }
module/Application/src/Service/Traits/FormuleResultatServiceServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\FormuleResultatServiceService;
  6.  
  7. /**
  8.  * Description of FormuleResultatServiceServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleResultatServiceServiceAwareTrait
  13. {
  14. protected ?FormuleResultatServiceService $serviceFormuleResultatService = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FormuleResultatServiceService $serviceFormuleResultatService
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceFormuleResultatService(?FormuleResultatServiceService $serviceFormuleResultatService)
  24. {
  25. $this->serviceFormuleResultatService = $serviceFormuleResultatService;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceFormuleResultatService(): ?FormuleResultatServiceService
  33. {
  34. if (empty($this->serviceFormuleResultatService)) {
  35. $this->serviceFormuleResultatService = \Application::$container->get(FormuleResultatServiceService::class);
  36. }
  37.  
  38. return $this->serviceFormuleResultatService;
  39. }
  40. }
module/Application/src/Service/Traits/FormuleResultatVolumeHoraireReferentielServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\FormuleResultatVolumeHoraireReferentielService;
  6.  
  7. /**
  8.  * Description of FormuleResultatVolumeHoraireReferentielServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleResultatVolumeHoraireReferentielServiceAwareTrait
  13. {
  14. protected ?FormuleResultatVolumeHoraireReferentielService $serviceFormuleResultatVolumeHoraireReferentiel = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FormuleResultatVolumeHoraireReferentielService $serviceFormuleResultatVolumeHoraireReferentiel
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceFormuleResultatVolumeHoraireReferentiel(?FormuleResultatVolumeHoraireReferentielService $serviceFormuleResultatVolumeHoraireReferentiel)
  24. {
  25. $this->serviceFormuleResultatVolumeHoraireReferentiel = $serviceFormuleResultatVolumeHoraireReferentiel;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceFormuleResultatVolumeHoraireReferentiel(): ?FormuleResultatVolumeHoraireReferentielService
  33. {
  34. if (empty($this->serviceFormuleResultatVolumeHoraireReferentiel)) {
  35. $this->serviceFormuleResultatVolumeHoraireReferentiel = \Application::$container->get(FormuleResultatVolumeHoraireReferentielService::class);
  36. }
  37.  
  38. return $this->serviceFormuleResultatVolumeHoraireReferentiel;
  39. }
  40. }
module/Application/src/Service/Traits/FormuleResultatVolumeHoraireServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\FormuleResultatVolumeHoraireService;
  6.  
  7. /**
  8.  * Description of FormuleResultatVolumeHoraireServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleResultatVolumeHoraireServiceAwareTrait
  13. {
  14. protected ?FormuleResultatVolumeHoraireService $serviceFormuleResultatVolumeHoraire = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FormuleResultatVolumeHoraireService $serviceFormuleResultatVolumeHoraire
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceFormuleResultatVolumeHoraire(?FormuleResultatVolumeHoraireService $serviceFormuleResultatVolumeHoraire)
  24. {
  25. $this->serviceFormuleResultatVolumeHoraire = $serviceFormuleResultatVolumeHoraire;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceFormuleResultatVolumeHoraire(): ?FormuleResultatVolumeHoraireService
  33. {
  34. if (empty($this->serviceFormuleResultatVolumeHoraire)) {
  35. $this->serviceFormuleResultatVolumeHoraire = \Application::$container->get(FormuleResultatVolumeHoraireService::class);
  36. }
  37.  
  38. return $this->serviceFormuleResultatVolumeHoraire;
  39. }
  40. }
module/Application/src/Service/Traits/FormuleServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\FormuleService;
  6.  
  7. /**
  8.  * Description of FormuleServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleServiceAwareTrait
  13. {
  14. protected ?FormuleService $serviceFormule = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FormuleService $serviceFormule
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceFormule(?FormuleService $serviceFormule)
  24. {
  25. $this->serviceFormule = $serviceFormule;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceFormule(): ?FormuleService
  33. {
  34. if (empty($this->serviceFormule)) {
  35. $this->serviceFormule = \Application::$container->get(FormuleService::class);
  36. }
  37.  
  38. return $this->serviceFormule;
  39. }
  40. }
module/Application/src/Service/Traits/FormuleTestIntervenantServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\FormuleTestIntervenantService;
  6.  
  7. /**
  8.  * Description of FormuleTestIntervenantServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait FormuleTestIntervenantServiceAwareTrait
  13. {
  14. protected ?FormuleTestIntervenantService $serviceFormuleTestIntervenant = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param FormuleTestIntervenantService $serviceFormuleTestIntervenant
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceFormuleTestIntervenant(?FormuleTestIntervenantService $serviceFormuleTestIntervenant)
  24. {
  25. $this->serviceFormuleTestIntervenant = $serviceFormuleTestIntervenant;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceFormuleTestIntervenant(): ?FormuleTestIntervenantService
  33. {
  34. if (empty($this->serviceFormuleTestIntervenant)) {
  35. $this->serviceFormuleTestIntervenant = \Application::$container->get(FormuleTestIntervenantService::class);
  36. }
  37.  
  38. return $this->serviceFormuleTestIntervenant;
  39. }
  40. }
module/Application/src/Service/Traits/GradeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\GradeService;
  6.  
  7. /**
  8.  * Description of GradeServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait GradeServiceAwareTrait
  13. {
  14. protected ?GradeService $serviceGrade = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param GradeService $serviceGrade
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceGrade(?GradeService $serviceGrade)
  24. {
  25. $this->serviceGrade = $serviceGrade;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceGrade(): ?GradeService
  33. {
  34. if (empty($this->serviceGrade)) {
  35. $this->serviceGrade = \Application::$container->get(GradeService::class);
  36. }
  37.  
  38. return $this->serviceGrade;
  39. }
  40. }
module/Application/src/Service/Traits/IntervenantServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\IntervenantService;
  6.  
  7. /**
  8.  * Description of IntervenantServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait IntervenantServiceAwareTrait
  13. {
  14. protected ?IntervenantService $serviceIntervenant = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param IntervenantService $serviceIntervenant
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceIntervenant(?IntervenantService $serviceIntervenant)
  24. {
  25. $this->serviceIntervenant = $serviceIntervenant;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceIntervenant(): ?IntervenantService
  33. {
  34. if (empty($this->serviceIntervenant)) {
  35. $this->serviceIntervenant = \Application::$container->get(IntervenantService::class);
  36. }
  37.  
  38. return $this->serviceIntervenant;
  39. }
  40. }
module/Application/src/Service/Traits/LocalContextServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\LocalContextService;
  6.  
  7. /**
  8.  * Description of LocalContextServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait LocalContextServiceAwareTrait
  13. {
  14. protected ?LocalContextService $serviceLocalContext = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param LocalContextService $serviceLocalContext
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceLocalContext(?LocalContextService $serviceLocalContext)
  24. {
  25. $this->serviceLocalContext = $serviceLocalContext;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceLocalContext(): ?LocalContextService
  33. {
  34. if (empty($this->serviceLocalContext)) {
  35. $this->serviceLocalContext = \Application::$container->get(LocalContextService::class);
  36. }
  37.  
  38. return $this->serviceLocalContext;
  39. }
  40. }
module/Application/src/Service/Traits/ParametresServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\ParametresService;
  6.  
  7. /**
  8.  * Description of ParametresServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ParametresServiceAwareTrait
  13. {
  14. protected ?ParametresService $serviceParametres = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ParametresService $serviceParametres
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceParametres(?ParametresService $serviceParametres)
  24. {
  25. $this->serviceParametres = $serviceParametres;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceParametres(): ?ParametresService
  33. {
  34. if (empty($this->serviceParametres)) {
  35. $this->serviceParametres = \Application::$container->get(ParametresService::class);
  36. }
  37.  
  38. return $this->serviceParametres;
  39. }
  40. }
module/Application/src/Service/Traits/PaysServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\PaysService;
  6.  
  7. /**
  8.  * Description of PaysServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait PaysServiceAwareTrait
  13. {
  14. protected ?PaysService $servicePays = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param PaysService $servicePays
  20.   *
  21.   * @return self
  22.   */
  23. public function setServicePays(?PaysService $servicePays)
  24. {
  25. $this->servicePays = $servicePays;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServicePays(): ?PaysService
  33. {
  34. if (empty($this->servicePays)) {
  35. $this->servicePays = \Application::$container->get(PaysService::class);
  36. }
  37.  
  38. return $this->servicePays;
  39. }
  40. }
module/Application/src/Service/Traits/PerimetreServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\PerimetreService;
  6.  
  7. /**
  8.  * Description of PerimetreServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait PerimetreServiceAwareTrait
  13. {
  14. protected ?PerimetreService $servicePerimetre = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param PerimetreService $servicePerimetre
  20.   *
  21.   * @return self
  22.   */
  23. public function setServicePerimetre(?PerimetreService $servicePerimetre)
  24. {
  25. $this->servicePerimetre = $servicePerimetre;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServicePerimetre(): ?PerimetreService
  33. {
  34. if (empty($this->servicePerimetre)) {
  35. $this->servicePerimetre = \Application::$container->get(PerimetreService::class);
  36. }
  37.  
  38. return $this->servicePerimetre;
  39. }
  40. }
module/Application/src/Service/Traits/PeriodeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\PeriodeService;
  6.  
  7. /**
  8.  * Description of PeriodeServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait PeriodeServiceAwareTrait
  13. {
  14. protected ?PeriodeService $servicePeriode = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param PeriodeService $servicePeriode
  20.   *
  21.   * @return self
  22.   */
  23. public function setServicePeriode(?PeriodeService $servicePeriode)
  24. {
  25. $this->servicePeriode = $servicePeriode;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServicePeriode(): ?PeriodeService
  33. {
  34. if (empty($this->servicePeriode)) {
  35. $this->servicePeriode = \Application::$container->get(PeriodeService::class);
  36. }
  37.  
  38. return $this->servicePeriode;
  39. }
  40. }
module/Application/src/Service/Traits/PilotageServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\PilotageService;
  6.  
  7. /**
  8.  * Description of PilotageServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait PilotageServiceAwareTrait
  13. {
  14. protected ?PilotageService $servicePilotage = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param PilotageService $servicePilotage
  20.   *
  21.   * @return self
  22.   */
  23. public function setServicePilotage(?PilotageService $servicePilotage)
  24. {
  25. $this->servicePilotage = $servicePilotage;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServicePilotage(): ?PilotageService
  33. {
  34. if (empty($this->servicePilotage)) {
  35. $this->servicePilotage = \Application::$container->get(PilotageService::class);
  36. }
  37.  
  38. return $this->servicePilotage;
  39. }
  40. }
module/Application/src/Service/Traits/PrivilegeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\PrivilegeService;
  6.  
  7. /**
  8.  * Description of PrivilegeServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait PrivilegeServiceAwareTrait
  13. {
  14. protected ?PrivilegeService $servicePrivilege = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param PrivilegeService $servicePrivilege
  20.   *
  21.   * @return self
  22.   */
  23. public function setServicePrivilege(?PrivilegeService $servicePrivilege)
  24. {
  25. $this->servicePrivilege = $servicePrivilege;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServicePrivilege(): ?PrivilegeService
  33. {
  34. if (empty($this->servicePrivilege)) {
  35. $this->servicePrivilege = \Application::$container->get(PrivilegeService::class);
  36. }
  37.  
  38. return $this->servicePrivilege;
  39. }
  40. }
module/Application/src/Service/Traits/RoleServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\RoleService;
  6.  
  7. /**
  8.  * Description of RoleServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait RoleServiceAwareTrait
  13. {
  14. protected ?RoleService $serviceRole = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param RoleService $serviceRole
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceRole(?RoleService $serviceRole)
  24. {
  25. $this->serviceRole = $serviceRole;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceRole(): ?RoleService
  33. {
  34. if (empty($this->serviceRole)) {
  35. $this->serviceRole = \Application::$container->get(RoleService::class);
  36. }
  37.  
  38. return $this->serviceRole;
  39. }
  40. }
module/Application/src/Service/Traits/ScenarioServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\ScenarioService;
  6.  
  7. /**
  8.  * Description of ScenarioServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ScenarioServiceAwareTrait
  13. {
  14. protected ?ScenarioService $serviceScenario = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ScenarioService $serviceScenario
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceScenario(?ScenarioService $serviceScenario)
  24. {
  25. $this->serviceScenario = $serviceScenario;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceScenario(): ?ScenarioService
  33. {
  34. if (empty($this->serviceScenario)) {
  35. $this->serviceScenario = \Application::$container->get(ScenarioService::class);
  36. }
  37.  
  38. return $this->serviceScenario;
  39. }
  40. }
module/Application/src/Service/Traits/SeuilChargeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\SeuilChargeService;
  6.  
  7. /**
  8.  * Description of SeuilChargeServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait SeuilChargeServiceAwareTrait
  13. {
  14. protected ?SeuilChargeService $serviceSeuilCharge = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param SeuilChargeService $serviceSeuilCharge
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceSeuilCharge(?SeuilChargeService $serviceSeuilCharge)
  24. {
  25. $this->serviceSeuilCharge = $serviceSeuilCharge;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceSeuilCharge(): ?SeuilChargeService
  33. {
  34. if (empty($this->serviceSeuilCharge)) {
  35. $this->serviceSeuilCharge = \Application::$container->get(SeuilChargeService::class);
  36. }
  37.  
  38. return $this->serviceSeuilCharge;
  39. }
  40. }
module/Application/src/Service/Traits/SourceServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\SourceService;
  6.  
  7. /**
  8.  * Description of SourceServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait SourceServiceAwareTrait
  13. {
  14. protected ?SourceService $serviceSource = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param SourceService $serviceSource
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceSource(?SourceService $serviceSource)
  24. {
  25. $this->serviceSource = $serviceSource;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceSource(): ?SourceService
  33. {
  34. if (empty($this->serviceSource)) {
  35. $this->serviceSource = \Application::$container->get(SourceService::class);
  36. }
  37.  
  38. return $this->serviceSource;
  39. }
  40. }
module/Application/src/Service/Traits/StructureServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\StructureService;
  6.  
  7. /**
  8.  * Description of StructureServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait StructureServiceAwareTrait
  13. {
  14. protected ?StructureService $serviceStructure = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param StructureService $serviceStructure
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceStructure(?StructureService $serviceStructure)
  24. {
  25. $this->serviceStructure = $serviceStructure;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceStructure(): ?StructureService
  33. {
  34. if (empty($this->serviceStructure)) {
  35. $this->serviceStructure = \Application::$container->get(StructureService::class);
  36. }
  37.  
  38. return $this->serviceStructure;
  39. }
  40. }
module/Application/src/Service/Traits/TypeValidationServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\TypeValidationService;
  6.  
  7. /**
  8.  * Description of TypeValidationServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeValidationServiceAwareTrait
  13. {
  14. protected ?TypeValidationService $serviceTypeValidation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeValidationService $serviceTypeValidation
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceTypeValidation(?TypeValidationService $serviceTypeValidation)
  24. {
  25. $this->serviceTypeValidation = $serviceTypeValidation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceTypeValidation(): ?TypeValidationService
  33. {
  34. if (empty($this->serviceTypeValidation)) {
  35. $this->serviceTypeValidation = \Application::$container->get(TypeValidationService::class);
  36. }
  37.  
  38. return $this->serviceTypeValidation;
  39. }
  40. }
module/Application/src/Service/Traits/UtilisateurServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\UtilisateurService;
  6.  
  7. /**
  8.  * Description of UtilisateurServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait UtilisateurServiceAwareTrait
  13. {
  14. protected ?UtilisateurService $serviceUtilisateur = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param UtilisateurService $serviceUtilisateur
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceUtilisateur(?UtilisateurService $serviceUtilisateur)
  24. {
  25. $this->serviceUtilisateur = $serviceUtilisateur;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceUtilisateur(): ?UtilisateurService
  33. {
  34. if (empty($this->serviceUtilisateur)) {
  35. $this->serviceUtilisateur = \Application::$container->get(UtilisateurService::class);
  36. }
  37.  
  38. return $this->serviceUtilisateur;
  39. }
  40. }
module/Application/src/Service/Traits/ValidationServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\ValidationService;
  6.  
  7. /**
  8.  * Description of ValidationServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ValidationServiceAwareTrait
  13. {
  14. protected ?ValidationService $serviceValidation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ValidationService $serviceValidation
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceValidation(?ValidationService $serviceValidation)
  24. {
  25. $this->serviceValidation = $serviceValidation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceValidation(): ?ValidationService
  33. {
  34. if (empty($this->serviceValidation)) {
  35. $this->serviceValidation = \Application::$container->get(ValidationService::class);
  36. }
  37.  
  38. return $this->serviceValidation;
  39. }
  40. }
module/Application/src/Service/Traits/VoirieServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\VoirieService;
  6.  
  7. /**
  8.  * Description of VoirieServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait VoirieServiceAwareTrait
  13. {
  14. protected ?VoirieService $serviceVoirie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param VoirieService $serviceVoirie
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceVoirie(?VoirieService $serviceVoirie)
  24. {
  25. $this->serviceVoirie = $serviceVoirie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceVoirie(): ?VoirieService
  33. {
  34. if (empty($this->serviceVoirie)) {
  35. $this->serviceVoirie = \Application::$container->get(VoirieService::class);
  36. }
  37.  
  38. return $this->serviceVoirie;
  39. }
  40. }
module/Application/src/Service/Traits/WfEtapeDepServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\WfEtapeDepService;
  6.  
  7. /**
  8.  * Description of WfEtapeDepServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait WfEtapeDepServiceAwareTrait
  13. {
  14. protected ?WfEtapeDepService $serviceWfEtapeDep = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param WfEtapeDepService $serviceWfEtapeDep
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceWfEtapeDep(?WfEtapeDepService $serviceWfEtapeDep)
  24. {
  25. $this->serviceWfEtapeDep = $serviceWfEtapeDep;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceWfEtapeDep(): ?WfEtapeDepService
  33. {
  34. if (empty($this->serviceWfEtapeDep)) {
  35. $this->serviceWfEtapeDep = \Application::$container->get(WfEtapeDepService::class);
  36. }
  37.  
  38. return $this->serviceWfEtapeDep;
  39. }
  40. }
module/Application/src/Service/Traits/WfEtapeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\WfEtapeService;
  6.  
  7. /**
  8.  * Description of WfEtapeServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait WfEtapeServiceAwareTrait
  13. {
  14. protected ?WfEtapeService $serviceWfEtape = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param WfEtapeService $serviceWfEtape
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceWfEtape(?WfEtapeService $serviceWfEtape)
  24. {
  25. $this->serviceWfEtape = $serviceWfEtape;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceWfEtape(): ?WfEtapeService
  33. {
  34. if (empty($this->serviceWfEtape)) {
  35. $this->serviceWfEtape = \Application::$container->get(WfEtapeService::class);
  36. }
  37.  
  38. return $this->serviceWfEtape;
  39. }
  40. }
module/Application/src/Service/Traits/WorkflowServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Service\Traits;
  4.  
  5. use Application\Service\WorkflowService;
  6.  
  7. /**
  8.  * Description of WorkflowServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait WorkflowServiceAwareTrait
  13. {
  14. protected ?WorkflowService $serviceWorkflow = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param WorkflowService $serviceWorkflow
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceWorkflow(?WorkflowService $serviceWorkflow)
  24. {
  25. $this->serviceWorkflow = $serviceWorkflow;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceWorkflow(): ?WorkflowService
  33. {
  34. if (empty($this->serviceWorkflow)) {
  35. $this->serviceWorkflow = \Application::$container->get(WorkflowService::class);
  36. }
  37.  
  38. return $this->serviceWorkflow;
  39. }
  40. }
module/Application/src/Entity/Traits/NiveauEtapeAwareTrait.php
  1. <?php
  2.  
  3. namespace Application\Entity\Traits;
  4.  
  5. use Application\Entity\NiveauEtape;
  6.  
  7. /**
  8.  * Description of NiveauEtapeAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait NiveauEtapeAwareTrait
  13. {
  14. protected ?NiveauEtape $niveauEtape = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param NiveauEtape $niveauEtape
  20.   *
  21.   * @return self
  22.   */
  23. public function setNiveauEtape( ?NiveauEtape $niveauEtape )
  24. {
  25. $this->niveauEtape = $niveauEtape;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getNiveauEtape(): ?NiveauEtape
  33. {
  34. return $this->niveauEtape;
  35. }
  36. }
module/Contrat/src/Entity/Db/ContratAwareTrait.php
  1. <?php
  2.  
  3. namespace Contrat\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of ContratAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ContratAwareTrait
  12. {
  13. protected ?Contrat $contrat = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param Contrat $contrat
  19.   *
  20.   * @return self
  21.   */
  22. public function setContrat( ?Contrat $contrat )
  23. {
  24. $this->contrat = $contrat;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getContrat(): ?Contrat
  32. {
  33. return $this->contrat;
  34. }
  35. }
module/Contrat/src/Entity/Db/ContratServiceListeAwareTrait.php
  1. <?php
  2.  
  3. namespace Contrat\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of ContratServiceListeAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ContratServiceListeAwareTrait
  12. {
  13. protected ?ContratServiceListe $contratServiceListe = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ContratServiceListe $contratServiceListe
  19.   *
  20.   * @return self
  21.   */
  22. public function setContratServiceListe( ?ContratServiceListe $contratServiceListe )
  23. {
  24. $this->contratServiceListe = $contratServiceListe;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getContratServiceListe(): ?ContratServiceListe
  32. {
  33. return $this->contratServiceListe;
  34. }
  35. }
module/Contrat/src/Entity/Db/TypeContratAwareTrait.php
  1. <?php
  2.  
  3. namespace Contrat\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of TypeContratAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeContratAwareTrait
  12. {
  13. protected ?TypeContrat $typeContrat = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeContrat $typeContrat
  19.   *
  20.   * @return self
  21.   */
  22. public function setTypeContrat( ?TypeContrat $typeContrat )
  23. {
  24. $this->typeContrat = $typeContrat;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getTypeContrat(): ?TypeContrat
  32. {
  33. return $this->typeContrat;
  34. }
  35. }
module/Contrat/src/Form/ContratRetourFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Contrat\Form;
  4.  
  5.  
  6. /**
  7.  * Description of ContratRetourFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ContratRetourFormAwareTrait
  12. {
  13. protected ?ContratRetourForm $formContratRetour = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ContratRetourForm $formContratRetour
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormContratRetour(?ContratRetourForm $formContratRetour)
  23. {
  24. $this->formContratRetour = $formContratRetour;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormContratRetour(): ?ContratRetourForm
  32. {
  33. if (!empty($this->formContratRetour)) {
  34. return $this->formContratRetour;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(ContratRetourForm::class);
  38. }
  39. }
module/Contrat/src/Form/EnvoiMailContratFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Contrat\Form;
  4.  
  5.  
  6. /**
  7.  * Description of EnvoiMailContratFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait EnvoiMailContratFormAwareTrait
  12. {
  13. protected ?EnvoiMailContratForm $formEnvoiMailContrat = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param EnvoiMailContratForm $formEnvoiMailContrat
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormEnvoiMailContrat(?EnvoiMailContratForm $formEnvoiMailContrat)
  23. {
  24. $this->formEnvoiMailContrat = $formEnvoiMailContrat;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormEnvoiMailContrat(): ?EnvoiMailContratForm
  32. {
  33. if (!empty($this->formEnvoiMailContrat)) {
  34. return $this->formEnvoiMailContrat;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(EnvoiMailContratForm::class);
  38. }
  39. }
module/Contrat/src/Processus/ContratProcessusAwareTrait.php
  1. <?php
  2.  
  3. namespace Contrat\Processus;
  4.  
  5.  
  6. /**
  7.  * Description of ContratProcessusAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ContratProcessusAwareTrait
  12. {
  13. protected ?ContratProcessus $processusContrat = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ContratProcessus $processusContrat
  19.   *
  20.   * @return self
  21.   */
  22. public function setProcessusContrat(?ContratProcessus $processusContrat)
  23. {
  24. $this->processusContrat = $processusContrat;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getProcessusContrat(): ?ContratProcessus
  32. {
  33. if (empty($this->processusContrat)) {
  34. $this->processusContrat = \Application::$container->get(ContratProcessus::class);
  35. }
  36.  
  37. return $this->processusContrat;
  38. }
  39. }
module/Contrat/src/Service/ContratServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Contrat\Service;
  4.  
  5.  
  6. /**
  7.  * Description of ContratServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ContratServiceAwareTrait
  12. {
  13. protected ?ContratService $serviceContrat = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ContratService $serviceContrat
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceContrat(?ContratService $serviceContrat)
  23. {
  24. $this->serviceContrat = $serviceContrat;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceContrat(): ?ContratService
  32. {
  33. if (empty($this->serviceContrat)) {
  34. $this->serviceContrat = \Application::$container->get(ContratService::class);
  35. }
  36.  
  37. return $this->serviceContrat;
  38. }
  39. }
module/Contrat/src/Service/ContratServiceListeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Contrat\Service;
  4.  
  5.  
  6. /**
  7.  * Description of ContratServiceListeServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ContratServiceListeServiceAwareTrait
  12. {
  13. protected ?ContratServiceListeService $serviceContratServiceListe = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ContratServiceListeService $serviceContratServiceListe
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceContratServiceListe(?ContratServiceListeService $serviceContratServiceListe)
  23. {
  24. $this->serviceContratServiceListe = $serviceContratServiceListe;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceContratServiceListe(): ?ContratServiceListeService
  32. {
  33. if (empty($this->serviceContratServiceListe)) {
  34. $this->serviceContratServiceListe = \Application::$container->get(ContratServiceListeService::class);
  35. }
  36.  
  37. return $this->serviceContratServiceListe;
  38. }
  39. }
module/Contrat/src/Service/TypeContratServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Contrat\Service;
  4.  
  5.  
  6. /**
  7.  * Description of TypeContratServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeContratServiceAwareTrait
  12. {
  13. protected ?TypeContratService $serviceTypeContrat = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeContratService $serviceTypeContrat
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceTypeContrat(?TypeContratService $serviceTypeContrat)
  23. {
  24. $this->serviceTypeContrat = $serviceTypeContrat;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceTypeContrat(): ?TypeContratService
  32. {
  33. if (empty($this->serviceTypeContrat)) {
  34. $this->serviceTypeContrat = \Application::$container->get(TypeContratService::class);
  35. }
  36.  
  37. return $this->serviceTypeContrat;
  38. }
  39. }
module/Dossier/src/Entity/Db/Traits/EmployeurAwareTrait.php
  1. <?php
  2.  
  3. namespace Dossier\Entity\Db\Traits;
  4.  
  5. use Dossier\Entity\Db\Employeur;
  6.  
  7. /**
  8.  * Description of EmployeurAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EmployeurAwareTrait
  13. {
  14. protected ?Employeur $employeur = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Employeur $employeur
  20.   *
  21.   * @return self
  22.   */
  23. public function setEmployeur( ?Employeur $employeur )
  24. {
  25. $this->employeur = $employeur;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getEmployeur(): ?Employeur
  33. {
  34. return $this->employeur;
  35. }
  36. }
module/Dossier/src/Entity/Db/Traits/TblDossierAwareTrait.php
  1. <?php
  2.  
  3. namespace Dossier\Entity\Db\Traits;
  4.  
  5. use Dossier\Entity\Db\TblDossier;
  6.  
  7. /**
  8.  * Description of TblDossierAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TblDossierAwareTrait
  13. {
  14. protected ?TblDossier $tblDossier = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TblDossier $tblDossier
  20.   *
  21.   * @return self
  22.   */
  23. public function setTblDossier( ?TblDossier $tblDossier )
  24. {
  25. $this->tblDossier = $tblDossier;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTblDossier(): ?TblDossier
  33. {
  34. return $this->tblDossier;
  35. }
  36. }
module/Dossier/src/Form/Traits/AutresFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Dossier\Form\Traits;
  4.  
  5. use Dossier\Form\AutresForm;
  6.  
  7. /**
  8.  * Description of AutresFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait AutresFormAwareTrait
  13. {
  14. protected ?AutresForm $formAutres = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param AutresForm $formAutres
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormAutres(?AutresForm $formAutres)
  24. {
  25. $this->formAutres = $formAutres;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormAutres(): ?AutresForm
  33. {
  34. if (!empty($this->formAutres)) {
  35. return $this->formAutres;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(AutresForm::class);
  39. }
  40. }
module/Dossier/src/Form/Traits/EmployeurSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Dossier\Form\Traits;
  4.  
  5. use Dossier\Form\EmployeurSaisieForm;
  6.  
  7. /**
  8.  * Description of EmployeurSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EmployeurSaisieFormAwareTrait
  13. {
  14. protected ?EmployeurSaisieForm $formEmployeurSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param EmployeurSaisieForm $formEmployeurSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormEmployeurSaisie(?EmployeurSaisieForm $formEmployeurSaisie)
  24. {
  25. $this->formEmployeurSaisie = $formEmployeurSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormEmployeurSaisie(): ?EmployeurSaisieForm
  33. {
  34. if (!empty($this->formEmployeurSaisie)) {
  35. return $this->formEmployeurSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(EmployeurSaisieForm::class);
  39. }
  40. }
module/Dossier/src/Form/Traits/IntervenantDossierFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Dossier\Form\Traits;
  4.  
  5. use Dossier\Form\IntervenantDossierForm;
  6.  
  7. /**
  8.  * Description of IntervenantDossierFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait IntervenantDossierFormAwareTrait
  13. {
  14. protected ?IntervenantDossierForm $formIntervenantDossier = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param IntervenantDossierForm $formIntervenantDossier
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormIntervenantDossier(?IntervenantDossierForm $formIntervenantDossier)
  24. {
  25. $this->formIntervenantDossier = $formIntervenantDossier;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormIntervenantDossier(): ?IntervenantDossierForm
  33. {
  34. if (!empty($this->formIntervenantDossier)) {
  35. return $this->formIntervenantDossier;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(IntervenantDossierForm::class);
  39. }
  40. }
module/Dossier/src/Service/Traits/DossierAutreServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Dossier\Service\Traits;
  4.  
  5. use Dossier\Service\DossierAutreService;
  6.  
  7. /**
  8.  * Description of DossierAutreServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DossierAutreServiceAwareTrait
  13. {
  14. protected ?DossierAutreService $serviceDossierAutre = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DossierAutreService $serviceDossierAutre
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceDossierAutre(?DossierAutreService $serviceDossierAutre)
  24. {
  25. $this->serviceDossierAutre = $serviceDossierAutre;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceDossierAutre(): ?DossierAutreService
  33. {
  34. if (empty($this->serviceDossierAutre)) {
  35. $this->serviceDossierAutre = \Application::$container->get(DossierAutreService::class);
  36. }
  37.  
  38. return $this->serviceDossierAutre;
  39. }
  40. }
module/Dossier/src/Service/Traits/DossierAutreTypeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Dossier\Service\Traits;
  4.  
  5. use Dossier\Service\DossierAutreTypeService;
  6.  
  7. /**
  8.  * Description of DossierAutreTypeServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DossierAutreTypeServiceAwareTrait
  13. {
  14. protected ?DossierAutreTypeService $serviceDossierAutreType = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DossierAutreTypeService $serviceDossierAutreType
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceDossierAutreType(?DossierAutreTypeService $serviceDossierAutreType)
  24. {
  25. $this->serviceDossierAutreType = $serviceDossierAutreType;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceDossierAutreType(): ?DossierAutreTypeService
  33. {
  34. if (empty($this->serviceDossierAutreType)) {
  35. $this->serviceDossierAutreType = \Application::$container->get(DossierAutreTypeService::class);
  36. }
  37.  
  38. return $this->serviceDossierAutreType;
  39. }
  40. }
module/Dossier/src/Service/Traits/DossierServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Dossier\Service\Traits;
  4.  
  5. use Dossier\Service\DossierService;
  6.  
  7. /**
  8.  * Description of DossierServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DossierServiceAwareTrait
  13. {
  14. protected ?DossierService $serviceDossier = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DossierService $serviceDossier
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceDossier(?DossierService $serviceDossier)
  24. {
  25. $this->serviceDossier = $serviceDossier;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceDossier(): ?DossierService
  33. {
  34. if (empty($this->serviceDossier)) {
  35. $this->serviceDossier = \Application::$container->get(DossierService::class);
  36. }
  37.  
  38. return $this->serviceDossier;
  39. }
  40. }
module/Dossier/src/Service/Traits/EmployeurServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Dossier\Service\Traits;
  4.  
  5. use Dossier\Service\EmployeurService;
  6.  
  7. /**
  8.  * Description of EmployeurServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EmployeurServiceAwareTrait
  13. {
  14. protected ?EmployeurService $serviceEmployeur = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param EmployeurService $serviceEmployeur
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceEmployeur(?EmployeurService $serviceEmployeur)
  24. {
  25. $this->serviceEmployeur = $serviceEmployeur;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceEmployeur(): ?EmployeurService
  33. {
  34. if (empty($this->serviceEmployeur)) {
  35. $this->serviceEmployeur = \Application::$container->get(EmployeurService::class);
  36. }
  37.  
  38. return $this->serviceEmployeur;
  39. }
  40. }
module/Enseignement/src/Entity/Db/ServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of ServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ServiceAwareTrait
  12. {
  13. protected ?Service $service = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param Service $service
  19.   *
  20.   * @return self
  21.   */
  22. public function setService( ?Service $service )
  23. {
  24. $this->service = $service;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getService(): ?Service
  32. {
  33. return $this->service;
  34. }
  35. }
module/Enseignement/src/Entity/Db/TblServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of TblServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TblServiceAwareTrait
  12. {
  13. protected ?TblService $tblService = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TblService $tblService
  19.   *
  20.   * @return self
  21.   */
  22. public function setTblService( ?TblService $tblService )
  23. {
  24. $this->tblService = $tblService;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getTblService(): ?TblService
  32. {
  33. return $this->tblService;
  34. }
  35. }
module/Enseignement/src/Entity/Db/TblValidationEnseignementAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of TblValidationEnseignementAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TblValidationEnseignementAwareTrait
  12. {
  13. protected ?TblValidationEnseignement $tblValidationEnseignement = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TblValidationEnseignement $tblValidationEnseignement
  19.   *
  20.   * @return self
  21.   */
  22. public function setTblValidationEnseignement( ?TblValidationEnseignement $tblValidationEnseignement )
  23. {
  24. $this->tblValidationEnseignement = $tblValidationEnseignement;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getTblValidationEnseignement(): ?TblValidationEnseignement
  32. {
  33. return $this->tblValidationEnseignement;
  34. }
  35. }
module/Enseignement/src/Entity/Db/VolumeHoraireAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of VolumeHoraireAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait VolumeHoraireAwareTrait
  12. {
  13. protected ?VolumeHoraire $volumeHoraire = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param VolumeHoraire $volumeHoraire
  19.   *
  20.   * @return self
  21.   */
  22. public function setVolumeHoraire( ?VolumeHoraire $volumeHoraire )
  23. {
  24. $this->volumeHoraire = $volumeHoraire;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getVolumeHoraire(): ?VolumeHoraire
  32. {
  33. return $this->volumeHoraire;
  34. }
  35. }
module/Enseignement/src/Form/EnseignementSaisieFieldsetAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Form;
  4.  
  5.  
  6. /**
  7.  * Description of EnseignementSaisieFieldsetAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait EnseignementSaisieFieldsetAwareTrait
  12. {
  13. protected ?EnseignementSaisieFieldset $fieldsetEnseignementSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param EnseignementSaisieFieldset $fieldsetEnseignementSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFieldsetEnseignementSaisie(?EnseignementSaisieFieldset $fieldsetEnseignementSaisie)
  23. {
  24. $this->fieldsetEnseignementSaisie = $fieldsetEnseignementSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFieldsetEnseignementSaisie(): ?EnseignementSaisieFieldset
  32. {
  33. if (!empty($this->fieldsetEnseignementSaisie)) {
  34. return $this->fieldsetEnseignementSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(EnseignementSaisieFieldset::class);
  38. }
  39. }
module/Enseignement/src/Form/EnseignementSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Form;
  4.  
  5.  
  6. /**
  7.  * Description of EnseignementSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait EnseignementSaisieFormAwareTrait
  12. {
  13. protected ?EnseignementSaisieForm $formEnseignementSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param EnseignementSaisieForm $formEnseignementSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormEnseignementSaisie(?EnseignementSaisieForm $formEnseignementSaisie)
  23. {
  24. $this->formEnseignementSaisie = $formEnseignementSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormEnseignementSaisie(): ?EnseignementSaisieForm
  32. {
  33. if (!empty($this->formEnseignementSaisie)) {
  34. return $this->formEnseignementSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(EnseignementSaisieForm::class);
  38. }
  39. }
module/Enseignement/src/Form/VolumeHoraireSaisieCalendaireFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Form;
  4.  
  5.  
  6. /**
  7.  * Description of VolumeHoraireSaisieCalendaireFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait VolumeHoraireSaisieCalendaireFormAwareTrait
  12. {
  13. protected ?VolumeHoraireSaisieCalendaireForm $formVolumeHoraireSaisieCalendaire = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param VolumeHoraireSaisieCalendaireForm $formVolumeHoraireSaisieCalendaire
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormVolumeHoraireSaisieCalendaire(?VolumeHoraireSaisieCalendaireForm $formVolumeHoraireSaisieCalendaire)
  23. {
  24. $this->formVolumeHoraireSaisieCalendaire = $formVolumeHoraireSaisieCalendaire;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormVolumeHoraireSaisieCalendaire(): ?VolumeHoraireSaisieCalendaireForm
  32. {
  33. if (!empty($this->formVolumeHoraireSaisieCalendaire)) {
  34. return $this->formVolumeHoraireSaisieCalendaire;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(VolumeHoraireSaisieCalendaireForm::class);
  38. }
  39. }
module/Enseignement/src/Form/VolumeHoraireSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Form;
  4.  
  5.  
  6. /**
  7.  * Description of VolumeHoraireSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait VolumeHoraireSaisieFormAwareTrait
  12. {
  13. protected ?VolumeHoraireSaisieForm $formVolumeHoraireSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param VolumeHoraireSaisieForm $formVolumeHoraireSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormVolumeHoraireSaisie(?VolumeHoraireSaisieForm $formVolumeHoraireSaisie)
  23. {
  24. $this->formVolumeHoraireSaisie = $formVolumeHoraireSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormVolumeHoraireSaisie(): ?VolumeHoraireSaisieForm
  32. {
  33. if (!empty($this->formVolumeHoraireSaisie)) {
  34. return $this->formVolumeHoraireSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(VolumeHoraireSaisieForm::class);
  38. }
  39. }
module/Enseignement/src/Form/VolumeHoraireSaisieMultipleFieldsetAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Form;
  4.  
  5.  
  6. /**
  7.  * Description of VolumeHoraireSaisieMultipleFieldsetAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait VolumeHoraireSaisieMultipleFieldsetAwareTrait
  12. {
  13. protected ?VolumeHoraireSaisieMultipleFieldset $fieldsetVolumeHoraireSaisieMultiple = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param VolumeHoraireSaisieMultipleFieldset $fieldsetVolumeHoraireSaisieMultiple
  19.   *
  20.   * @return self
  21.   */
  22. public function setFieldsetVolumeHoraireSaisieMultiple(?VolumeHoraireSaisieMultipleFieldset $fieldsetVolumeHoraireSaisieMultiple)
  23. {
  24. $this->fieldsetVolumeHoraireSaisieMultiple = $fieldsetVolumeHoraireSaisieMultiple;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFieldsetVolumeHoraireSaisieMultiple(): ?VolumeHoraireSaisieMultipleFieldset
  32. {
  33. if (!empty($this->fieldsetVolumeHoraireSaisieMultiple)) {
  34. return $this->fieldsetVolumeHoraireSaisieMultiple;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(VolumeHoraireSaisieMultipleFieldset::class);
  38. }
  39. }
module/Enseignement/src/Processus/EnseignementProcessusAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Processus;
  4.  
  5.  
  6. /**
  7.  * Description of EnseignementProcessusAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait EnseignementProcessusAwareTrait
  12. {
  13. protected ?EnseignementProcessus $processusEnseignement = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param EnseignementProcessus $processusEnseignement
  19.   *
  20.   * @return self
  21.   */
  22. public function setProcessusEnseignement(?EnseignementProcessus $processusEnseignement)
  23. {
  24. $this->processusEnseignement = $processusEnseignement;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getProcessusEnseignement(): ?EnseignementProcessus
  32. {
  33. if (empty($this->processusEnseignement)) {
  34. $this->processusEnseignement = \Application::$container->get(EnseignementProcessus::class);
  35. }
  36.  
  37. return $this->processusEnseignement;
  38. }
  39. }
module/Enseignement/src/Processus/ValidationEnseignementProcessusAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Processus;
  4.  
  5.  
  6. /**
  7.  * Description of ValidationEnseignementProcessusAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ValidationEnseignementProcessusAwareTrait
  12. {
  13. protected ?ValidationEnseignementProcessus $processusValidationEnseignement = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ValidationEnseignementProcessus $processusValidationEnseignement
  19.   *
  20.   * @return self
  21.   */
  22. public function setProcessusValidationEnseignement(?ValidationEnseignementProcessus $processusValidationEnseignement)
  23. {
  24. $this->processusValidationEnseignement = $processusValidationEnseignement;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getProcessusValidationEnseignement(): ?ValidationEnseignementProcessus
  32. {
  33. if (empty($this->processusValidationEnseignement)) {
  34. $this->processusValidationEnseignement = \Application::$container->get(ValidationEnseignementProcessus::class);
  35. }
  36.  
  37. return $this->processusValidationEnseignement;
  38. }
  39. }
module/Enseignement/src/Service/ServiceServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of ServiceServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ServiceServiceAwareTrait
  12. {
  13. protected ?ServiceService $serviceService = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ServiceService $serviceService
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceService(?ServiceService $serviceService)
  23. {
  24. $this->serviceService = $serviceService;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceService(): ?ServiceService
  32. {
  33. if (empty($this->serviceService)) {
  34. $this->serviceService = \Application::$container->get(ServiceService::class);
  35. }
  36.  
  37. return $this->serviceService;
  38. }
  39. }
module/Enseignement/src/Service/VolumeHoraireServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Enseignement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of VolumeHoraireServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait VolumeHoraireServiceAwareTrait
  12. {
  13. protected ?VolumeHoraireService $serviceVolumeHoraire = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param VolumeHoraireService $serviceVolumeHoraire
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceVolumeHoraire(?VolumeHoraireService $serviceVolumeHoraire)
  23. {
  24. $this->serviceVolumeHoraire = $serviceVolumeHoraire;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceVolumeHoraire(): ?VolumeHoraireService
  32. {
  33. if (empty($this->serviceVolumeHoraire)) {
  34. $this->serviceVolumeHoraire = \Application::$container->get(VolumeHoraireService::class);
  35. }
  36.  
  37. return $this->serviceVolumeHoraire;
  38. }
  39. }
module/ExportRh/src/Connecteur/Siham/SihamConnecteurAwareTrait.php
  1. <?php
  2.  
  3. namespace ExportRh\Connecteur\Siham;
  4.  
  5.  
  6. /**
  7.  * Description of SihamConnecteurAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait SihamConnecteurAwareTrait
  12. {
  13. protected ?SihamConnecteur $connecteurSihamSiham = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param SihamConnecteur $connecteurSihamSiham
  19.   *
  20.   * @return self
  21.   */
  22. public function setConnecteurSihamSiham(?SihamConnecteur $connecteurSihamSiham)
  23. {
  24. $this->connecteurSihamSiham = $connecteurSihamSiham;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getConnecteurSihamSiham(): ?SihamConnecteur
  32. {
  33. if (empty($this->connecteurSihamSiham)) {
  34. $this->connecteurSihamSiham = \Application::$container->get(SihamConnecteur::class);
  35. }
  36.  
  37. return $this->connecteurSihamSiham;
  38. }
  39. }
module/ExportRh/src/Form/Traits/ExportRhFormAwareTrait.php
  1. <?php
  2.  
  3. namespace ExportRh\Form\Traits;
  4.  
  5. use ExportRh\Form\ExportRhForm;
  6.  
  7. /**
  8.  * Description of ExportRhFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ExportRhFormAwareTrait
  13. {
  14. protected ?ExportRhForm $formExportRh = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ExportRhForm $formExportRh
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormExportRh(?ExportRhForm $formExportRh)
  24. {
  25. $this->formExportRh = $formExportRh;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormExportRh(): ?ExportRhForm
  33. {
  34. if (!empty($this->formExportRh)) {
  35. return $this->formExportRh;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(ExportRhForm::class);
  39. }
  40. }
module/ExportRh/src/Service/ExportRhServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace ExportRh\Service;
  4.  
  5.  
  6. /**
  7.  * Description of ExportRhServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ExportRhServiceAwareTrait
  12. {
  13. protected ?ExportRhService $serviceExportRh = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ExportRhService $serviceExportRh
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceExportRh(?ExportRhService $serviceExportRh)
  23. {
  24. $this->serviceExportRh = $serviceExportRh;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceExportRh(): ?ExportRhService
  32. {
  33. if (empty($this->serviceExportRh)) {
  34. $this->serviceExportRh = \Application::$container->get(ExportRhService::class);
  35. }
  36.  
  37. return $this->serviceExportRh;
  38. }
  39. }
module/Indicateur/src/Entity/Db/IndicateurAwareTrait.php
  1. <?php
  2.  
  3. namespace Indicateur\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of IndicateurAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait IndicateurAwareTrait
  12. {
  13. protected ?Indicateur $indicateur = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param Indicateur $indicateur
  19.   *
  20.   * @return self
  21.   */
  22. public function setIndicateur( ?Indicateur $indicateur )
  23. {
  24. $this->indicateur = $indicateur;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getIndicateur(): ?Indicateur
  32. {
  33. return $this->indicateur;
  34. }
  35. }
module/Indicateur/src/Entity/Db/IndicateurDepassementChargesAwareTrait.php
  1. <?php
  2.  
  3. namespace Indicateur\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of IndicateurDepassementChargesAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait IndicateurDepassementChargesAwareTrait
  12. {
  13. protected ?IndicateurDepassementCharges $indicateurDepassementCharges = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param IndicateurDepassementCharges $indicateurDepassementCharges
  19.   *
  20.   * @return self
  21.   */
  22. public function setIndicateurDepassementCharges( ?IndicateurDepassementCharges $indicateurDepassementCharges )
  23. {
  24. $this->indicateurDepassementCharges = $indicateurDepassementCharges;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getIndicateurDepassementCharges(): ?IndicateurDepassementCharges
  32. {
  33. return $this->indicateurDepassementCharges;
  34. }
  35. }
module/Indicateur/src/Entity/Db/NotificationIndicateurAwareTrait.php
  1. <?php
  2.  
  3. namespace Indicateur\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of NotificationIndicateurAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait NotificationIndicateurAwareTrait
  12. {
  13. protected ?NotificationIndicateur $notificationIndicateur = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param NotificationIndicateur $notificationIndicateur
  19.   *
  20.   * @return self
  21.   */
  22. public function setNotificationIndicateur( ?NotificationIndicateur $notificationIndicateur )
  23. {
  24. $this->notificationIndicateur = $notificationIndicateur;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getNotificationIndicateur(): ?NotificationIndicateur
  32. {
  33. return $this->notificationIndicateur;
  34. }
  35. }
module/Indicateur/src/Processus/IndicateurProcessusAwareTrait.php
  1. <?php
  2.  
  3. namespace Indicateur\Processus;
  4.  
  5.  
  6. /**
  7.  * Description of IndicateurProcessusAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait IndicateurProcessusAwareTrait
  12. {
  13. protected ?IndicateurProcessus $processusIndicateur = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param IndicateurProcessus $processusIndicateur
  19.   *
  20.   * @return self
  21.   */
  22. public function setProcessusIndicateur(?IndicateurProcessus $processusIndicateur)
  23. {
  24. $this->processusIndicateur = $processusIndicateur;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getProcessusIndicateur(): ?IndicateurProcessus
  32. {
  33. if (empty($this->processusIndicateur)) {
  34. $this->processusIndicateur = \Application::$container->get(IndicateurProcessus::class);
  35. }
  36.  
  37. return $this->processusIndicateur;
  38. }
  39. }
module/Indicateur/src/Service/IndicateurServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Indicateur\Service;
  4.  
  5.  
  6. /**
  7.  * Description of IndicateurServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait IndicateurServiceAwareTrait
  12. {
  13. protected ?IndicateurService $serviceIndicateur = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param IndicateurService $serviceIndicateur
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceIndicateur(?IndicateurService $serviceIndicateur)
  23. {
  24. $this->serviceIndicateur = $serviceIndicateur;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceIndicateur(): ?IndicateurService
  32. {
  33. if (empty($this->serviceIndicateur)) {
  34. $this->serviceIndicateur = \Application::$container->get(IndicateurService::class);
  35. }
  36.  
  37. return $this->serviceIndicateur;
  38. }
  39. }
module/Indicateur/src/Service/NotificationIndicateurServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Indicateur\Service;
  4.  
  5.  
  6. /**
  7.  * Description of NotificationIndicateurServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait NotificationIndicateurServiceAwareTrait
  12. {
  13. protected ?NotificationIndicateurService $serviceNotificationIndicateur = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param NotificationIndicateurService $serviceNotificationIndicateur
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceNotificationIndicateur(?NotificationIndicateurService $serviceNotificationIndicateur)
  23. {
  24. $this->serviceNotificationIndicateur = $serviceNotificationIndicateur;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceNotificationIndicateur(): ?NotificationIndicateurService
  32. {
  33. if (empty($this->serviceNotificationIndicateur)) {
  34. $this->serviceNotificationIndicateur = \Application::$container->get(NotificationIndicateurService::class);
  35. }
  36.  
  37. return $this->serviceNotificationIndicateur;
  38. }
  39. }
module/Intervenant/src/Entity/Db/StatutAwareTrait.php
  1. <?php
  2.  
  3. namespace Intervenant\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of StatutAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait StatutAwareTrait
  12. {
  13. protected ?Statut $statut = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param Statut $statut
  19.   *
  20.   * @return self
  21.   */
  22. public function setStatut( ?Statut $statut )
  23. {
  24. $this->statut = $statut;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getStatut(): ?Statut
  32. {
  33. return $this->statut;
  34. }
  35. }
module/Intervenant/src/Entity/Db/TypeIntervenantAwareTrait.php
  1. <?php
  2.  
  3. namespace Intervenant\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of TypeIntervenantAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeIntervenantAwareTrait
  12. {
  13. protected ?TypeIntervenant $typeIntervenant = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeIntervenant $typeIntervenant
  19.   *
  20.   * @return self
  21.   */
  22. public function setTypeIntervenant( ?TypeIntervenant $typeIntervenant )
  23. {
  24. $this->typeIntervenant = $typeIntervenant;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getTypeIntervenant(): ?TypeIntervenant
  32. {
  33. return $this->typeIntervenant;
  34. }
  35. }
module/Intervenant/src/Form/MailerIntervenantFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Intervenant\Form;
  4.  
  5.  
  6. /**
  7.  * Description of MailerIntervenantFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MailerIntervenantFormAwareTrait
  12. {
  13. protected ?MailerIntervenantForm $formMailerIntervenant = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MailerIntervenantForm $formMailerIntervenant
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormMailerIntervenant(?MailerIntervenantForm $formMailerIntervenant)
  23. {
  24. $this->formMailerIntervenant = $formMailerIntervenant;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormMailerIntervenant(): ?MailerIntervenantForm
  32. {
  33. if (!empty($this->formMailerIntervenant)) {
  34. return $this->formMailerIntervenant;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(MailerIntervenantForm::class);
  38. }
  39. }
module/Intervenant/src/Form/NoteSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Intervenant\Form;
  4.  
  5.  
  6. /**
  7.  * Description of NoteSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait NoteSaisieFormAwareTrait
  12. {
  13. protected ?NoteSaisieForm $formNoteSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param NoteSaisieForm $formNoteSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormNoteSaisie(?NoteSaisieForm $formNoteSaisie)
  23. {
  24. $this->formNoteSaisie = $formNoteSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormNoteSaisie(): ?NoteSaisieForm
  32. {
  33. if (!empty($this->formNoteSaisie)) {
  34. return $this->formNoteSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(NoteSaisieForm::class);
  38. }
  39. }
module/Intervenant/src/Form/StatutSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Intervenant\Form;
  4.  
  5.  
  6. /**
  7.  * Description of StatutSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait StatutSaisieFormAwareTrait
  12. {
  13. protected ?StatutSaisieForm $formStatutSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param StatutSaisieForm $formStatutSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormStatutSaisie(?StatutSaisieForm $formStatutSaisie)
  23. {
  24. $this->formStatutSaisie = $formStatutSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormStatutSaisie(): ?StatutSaisieForm
  32. {
  33. if (!empty($this->formStatutSaisie)) {
  34. return $this->formStatutSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(StatutSaisieForm::class);
  38. }
  39. }
module/Intervenant/src/Service/MailServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Intervenant\Service;
  4.  
  5.  
  6. /**
  7.  * Description of MailServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MailServiceAwareTrait
  12. {
  13. protected ?MailService $serviceMail = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MailService $serviceMail
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceMail(?MailService $serviceMail)
  23. {
  24. $this->serviceMail = $serviceMail;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceMail(): ?MailService
  32. {
  33. if (empty($this->serviceMail)) {
  34. $this->serviceMail = \Application::$container->get(MailService::class);
  35. }
  36.  
  37. return $this->serviceMail;
  38. }
  39. }
module/Intervenant/src/Service/NoteServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Intervenant\Service;
  4.  
  5.  
  6. /**
  7.  * Description of NoteServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait NoteServiceAwareTrait
  12. {
  13. protected ?NoteService $serviceNote = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param NoteService $serviceNote
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceNote(?NoteService $serviceNote)
  23. {
  24. $this->serviceNote = $serviceNote;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceNote(): ?NoteService
  32. {
  33. if (empty($this->serviceNote)) {
  34. $this->serviceNote = \Application::$container->get(NoteService::class);
  35. }
  36.  
  37. return $this->serviceNote;
  38. }
  39. }
module/Intervenant/src/Service/StatutServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Intervenant\Service;
  4.  
  5.  
  6. /**
  7.  * Description of StatutServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait StatutServiceAwareTrait
  12. {
  13. protected ?StatutService $serviceStatut = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param StatutService $serviceStatut
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceStatut(?StatutService $serviceStatut)
  23. {
  24. $this->serviceStatut = $serviceStatut;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceStatut(): ?StatutService
  32. {
  33. if (empty($this->serviceStatut)) {
  34. $this->serviceStatut = \Application::$container->get(StatutService::class);
  35. }
  36.  
  37. return $this->serviceStatut;
  38. }
  39. }
module/Intervenant/src/Service/TypeIntervenantServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Intervenant\Service;
  4.  
  5.  
  6. /**
  7.  * Description of TypeIntervenantServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeIntervenantServiceAwareTrait
  12. {
  13. protected ?TypeIntervenantService $serviceTypeIntervenant = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeIntervenantService $serviceTypeIntervenant
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceTypeIntervenant(?TypeIntervenantService $serviceTypeIntervenant)
  23. {
  24. $this->serviceTypeIntervenant = $serviceTypeIntervenant;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceTypeIntervenant(): ?TypeIntervenantService
  32. {
  33. if (empty($this->serviceTypeIntervenant)) {
  34. $this->serviceTypeIntervenant = \Application::$container->get(TypeIntervenantService::class);
  35. }
  36.  
  37. return $this->serviceTypeIntervenant;
  38. }
  39. }
module/Intervenant/src/Service/TypeNoteServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Intervenant\Service;
  4.  
  5.  
  6. /**
  7.  * Description of TypeNoteServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeNoteServiceAwareTrait
  12. {
  13. protected ?TypeNoteService $serviceTypeNote = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeNoteService $serviceTypeNote
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceTypeNote(?TypeNoteService $serviceTypeNote)
  23. {
  24. $this->serviceTypeNote = $serviceTypeNote;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceTypeNote(): ?TypeNoteService
  32. {
  33. if (empty($this->serviceTypeNote)) {
  34. $this->serviceTypeNote = \Application::$container->get(TypeNoteService::class);
  35. }
  36.  
  37. return $this->serviceTypeNote;
  38. }
  39. }
module/Mission/src/Entity/Db/TypeMissionAwareTrait.php
  1. <?php
  2.  
  3. namespace Mission\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of TypeMissionAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeMissionAwareTrait
  12. {
  13. protected ?TypeMission $typeMission = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeMission $typeMission
  19.   *
  20.   * @return self
  21.   */
  22. public function setTypeMission( ?TypeMission $typeMission )
  23. {
  24. $this->typeMission = $typeMission;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getTypeMission(): ?TypeMission
  32. {
  33. return $this->typeMission;
  34. }
  35. }
module/Mission/src/Form/MissionCentreCoutsTypeFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Mission\Form;
  4.  
  5.  
  6. /**
  7.  * Description of MissionCentreCoutsTypeFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MissionCentreCoutsTypeFormAwareTrait
  12. {
  13. protected ?MissionCentreCoutsTypeForm $formMissionCentreCoutsType = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MissionCentreCoutsTypeForm $formMissionCentreCoutsType
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormMissionCentreCoutsType(?MissionCentreCoutsTypeForm $formMissionCentreCoutsType)
  23. {
  24. $this->formMissionCentreCoutsType = $formMissionCentreCoutsType;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormMissionCentreCoutsType(): ?MissionCentreCoutsTypeForm
  32. {
  33. if (!empty($this->formMissionCentreCoutsType)) {
  34. return $this->formMissionCentreCoutsType;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(MissionCentreCoutsTypeForm::class);
  38. }
  39. }
module/Mission/src/Form/MissionFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Mission\Form;
  4.  
  5.  
  6. /**
  7.  * Description of MissionFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MissionFormAwareTrait
  12. {
  13. protected ?MissionForm $formMission = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MissionForm $formMission
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormMission(?MissionForm $formMission)
  23. {
  24. $this->formMission = $formMission;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormMission(): ?MissionForm
  32. {
  33. if (!empty($this->formMission)) {
  34. return $this->formMission;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(MissionForm::class);
  38. }
  39. }
module/Mission/src/Form/MissionSuiviFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Mission\Form;
  4.  
  5.  
  6. /**
  7.  * Description of MissionSuiviFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MissionSuiviFormAwareTrait
  12. {
  13. protected ?MissionSuiviForm $formMissionSuivi = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MissionSuiviForm $formMissionSuivi
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormMissionSuivi(?MissionSuiviForm $formMissionSuivi)
  23. {
  24. $this->formMissionSuivi = $formMissionSuivi;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormMissionSuivi(): ?MissionSuiviForm
  32. {
  33. if (!empty($this->formMissionSuivi)) {
  34. return $this->formMissionSuivi;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(MissionSuiviForm::class);
  38. }
  39. }
module/Mission/src/Form/MissionTypeFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Mission\Form;
  4.  
  5.  
  6. /**
  7.  * Description of MissionTypeFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MissionTypeFormAwareTrait
  12. {
  13. protected ?MissionTypeForm $formMissionType = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MissionTypeForm $formMissionType
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormMissionType(?MissionTypeForm $formMissionType)
  23. {
  24. $this->formMissionType = $formMissionType;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormMissionType(): ?MissionTypeForm
  32. {
  33. if (!empty($this->formMissionType)) {
  34. return $this->formMissionType;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(MissionTypeForm::class);
  38. }
  39. }
module/Mission/src/Form/OffreEmploiFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Mission\Form;
  4.  
  5.  
  6. /**
  7.  * Description of OffreEmploiFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait OffreEmploiFormAwareTrait
  12. {
  13. protected ?OffreEmploiForm $formOffreEmploi = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param OffreEmploiForm $formOffreEmploi
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormOffreEmploi(?OffreEmploiForm $formOffreEmploi)
  23. {
  24. $this->formOffreEmploi = $formOffreEmploi;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormOffreEmploi(): ?OffreEmploiForm
  32. {
  33. if (!empty($this->formOffreEmploi)) {
  34. return $this->formOffreEmploi;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(OffreEmploiForm::class);
  38. }
  39. }
module/Mission/src/Service/CandidatureServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Mission\Service;
  4.  
  5.  
  6. /**
  7.  * Description of CandidatureServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CandidatureServiceAwareTrait
  12. {
  13. protected ?CandidatureService $serviceCandidature = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CandidatureService $serviceCandidature
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceCandidature(?CandidatureService $serviceCandidature)
  23. {
  24. $this->serviceCandidature = $serviceCandidature;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceCandidature(): ?CandidatureService
  32. {
  33. if (empty($this->serviceCandidature)) {
  34. $this->serviceCandidature = \Application::$container->get(CandidatureService::class);
  35. }
  36.  
  37. return $this->serviceCandidature;
  38. }
  39. }
module/Mission/src/Service/MissionServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Mission\Service;
  4.  
  5.  
  6. /**
  7.  * Description of MissionServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MissionServiceAwareTrait
  12. {
  13. protected ?MissionService $serviceMission = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MissionService $serviceMission
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceMission(?MissionService $serviceMission)
  23. {
  24. $this->serviceMission = $serviceMission;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceMission(): ?MissionService
  32. {
  33. if (empty($this->serviceMission)) {
  34. $this->serviceMission = \Application::$container->get(MissionService::class);
  35. }
  36.  
  37. return $this->serviceMission;
  38. }
  39. }
module/Mission/src/Service/MissionTypeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Mission\Service;
  4.  
  5.  
  6. /**
  7.  * Description of MissionTypeServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MissionTypeServiceAwareTrait
  12. {
  13. protected ?MissionTypeService $serviceMissionType = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MissionTypeService $serviceMissionType
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceMissionType(?MissionTypeService $serviceMissionType)
  23. {
  24. $this->serviceMissionType = $serviceMissionType;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceMissionType(): ?MissionTypeService
  32. {
  33. if (empty($this->serviceMissionType)) {
  34. $this->serviceMissionType = \Application::$container->get(MissionTypeService::class);
  35. }
  36.  
  37. return $this->serviceMissionType;
  38. }
  39. }
module/Mission/src/Service/OffreEmploiServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Mission\Service;
  4.  
  5.  
  6. /**
  7.  * Description of OffreEmploiServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait OffreEmploiServiceAwareTrait
  12. {
  13. protected ?OffreEmploiService $serviceOffreEmploi = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param OffreEmploiService $serviceOffreEmploi
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceOffreEmploi(?OffreEmploiService $serviceOffreEmploi)
  23. {
  24. $this->serviceOffreEmploi = $serviceOffreEmploi;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceOffreEmploi(): ?OffreEmploiService
  32. {
  33. if (empty($this->serviceOffreEmploi)) {
  34. $this->serviceOffreEmploi = \Application::$container->get(OffreEmploiService::class);
  35. }
  36.  
  37. return $this->serviceOffreEmploi;
  38. }
  39. }
module/Mission/src/Service/PrimeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Mission\Service;
  4.  
  5.  
  6. /**
  7.  * Description of PrimeServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait PrimeServiceAwareTrait
  12. {
  13. protected ?PrimeService $servicePrime = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param PrimeService $servicePrime
  19.   *
  20.   * @return self
  21.   */
  22. public function setServicePrime(?PrimeService $servicePrime)
  23. {
  24. $this->servicePrime = $servicePrime;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServicePrime(): ?PrimeService
  32. {
  33. if (empty($this->servicePrime)) {
  34. $this->servicePrime = \Application::$container->get(PrimeService::class);
  35. }
  36.  
  37. return $this->servicePrime;
  38. }
  39. }
module/OffreFormation/src/Entity/Db/Traits/CentreCoutEpAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\CentreCoutEp;
  6.  
  7. /**
  8.  * Description of CentreCoutEpAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait CentreCoutEpAwareTrait
  13. {
  14. protected ?CentreCoutEp $centreCoutEp = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param CentreCoutEp $centreCoutEp
  20.   *
  21.   * @return self
  22.   */
  23. public function setCentreCoutEp( ?CentreCoutEp $centreCoutEp )
  24. {
  25. $this->centreCoutEp = $centreCoutEp;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getCentreCoutEp(): ?CentreCoutEp
  33. {
  34. return $this->centreCoutEp;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/CheminPedagogiqueAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\CheminPedagogique;
  6.  
  7. /**
  8.  * Description of CheminPedagogiqueAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait CheminPedagogiqueAwareTrait
  13. {
  14. protected ?CheminPedagogique $cheminPedagogique = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param CheminPedagogique $cheminPedagogique
  20.   *
  21.   * @return self
  22.   */
  23. public function setCheminPedagogique( ?CheminPedagogique $cheminPedagogique )
  24. {
  25. $this->cheminPedagogique = $cheminPedagogique;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getCheminPedagogique(): ?CheminPedagogique
  33. {
  34. return $this->cheminPedagogique;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/DisciplineAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\Discipline;
  6.  
  7. /**
  8.  * Description of DisciplineAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DisciplineAwareTrait
  13. {
  14. protected ?Discipline $discipline = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Discipline $discipline
  20.   *
  21.   * @return self
  22.   */
  23. public function setDiscipline( ?Discipline $discipline )
  24. {
  25. $this->discipline = $discipline;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getDiscipline(): ?Discipline
  33. {
  34. return $this->discipline;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/EffectifsAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\Effectifs;
  6.  
  7. /**
  8.  * Description of EffectifsAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EffectifsAwareTrait
  13. {
  14. protected ?Effectifs $effectifs = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Effectifs $effectifs
  20.   *
  21.   * @return self
  22.   */
  23. public function setEffectifs( ?Effectifs $effectifs )
  24. {
  25. $this->effectifs = $effectifs;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getEffectifs(): ?Effectifs
  33. {
  34. return $this->effectifs;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/ElementModulateurAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\ElementModulateur;
  6.  
  7. /**
  8.  * Description of ElementModulateurAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ElementModulateurAwareTrait
  13. {
  14. protected ?ElementModulateur $elementModulateur = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ElementModulateur $elementModulateur
  20.   *
  21.   * @return self
  22.   */
  23. public function setElementModulateur( ?ElementModulateur $elementModulateur )
  24. {
  25. $this->elementModulateur = $elementModulateur;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getElementModulateur(): ?ElementModulateur
  33. {
  34. return $this->elementModulateur;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/ElementPedagogiqueAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\ElementPedagogique;
  6.  
  7. /**
  8.  * Description of ElementPedagogiqueAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ElementPedagogiqueAwareTrait
  13. {
  14. protected ?ElementPedagogique $elementPedagogique = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ElementPedagogique $elementPedagogique
  20.   *
  21.   * @return self
  22.   */
  23. public function setElementPedagogique( ?ElementPedagogique $elementPedagogique )
  24. {
  25. $this->elementPedagogique = $elementPedagogique;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getElementPedagogique(): ?ElementPedagogique
  33. {
  34. return $this->elementPedagogique;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/ElementTauxRegimesAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\ElementTauxRegimes;
  6.  
  7. /**
  8.  * Description of ElementTauxRegimesAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ElementTauxRegimesAwareTrait
  13. {
  14. protected ?ElementTauxRegimes $elementTauxRegimes = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ElementTauxRegimes $elementTauxRegimes
  20.   *
  21.   * @return self
  22.   */
  23. public function setElementTauxRegimes( ?ElementTauxRegimes $elementTauxRegimes )
  24. {
  25. $this->elementTauxRegimes = $elementTauxRegimes;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getElementTauxRegimes(): ?ElementTauxRegimes
  33. {
  34. return $this->elementTauxRegimes;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/EtapeAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\Etape;
  6.  
  7. /**
  8.  * Description of EtapeAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EtapeAwareTrait
  13. {
  14. protected ?Etape $etape = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Etape $etape
  20.   *
  21.   * @return self
  22.   */
  23. public function setEtape( ?Etape $etape )
  24. {
  25. $this->etape = $etape;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getEtape(): ?Etape
  33. {
  34. return $this->etape;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/GroupeTypeFormationAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\GroupeTypeFormation;
  6.  
  7. /**
  8.  * Description of GroupeTypeFormationAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait GroupeTypeFormationAwareTrait
  13. {
  14. protected ?GroupeTypeFormation $groupeTypeFormation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param GroupeTypeFormation $groupeTypeFormation
  20.   *
  21.   * @return self
  22.   */
  23. public function setGroupeTypeFormation( ?GroupeTypeFormation $groupeTypeFormation )
  24. {
  25. $this->groupeTypeFormation = $groupeTypeFormation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getGroupeTypeFormation(): ?GroupeTypeFormation
  33. {
  34. return $this->groupeTypeFormation;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/NiveauFormationAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\NiveauFormation;
  6.  
  7. /**
  8.  * Description of NiveauFormationAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait NiveauFormationAwareTrait
  13. {
  14. protected ?NiveauFormation $niveauFormation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param NiveauFormation $niveauFormation
  20.   *
  21.   * @return self
  22.   */
  23. public function setNiveauFormation( ?NiveauFormation $niveauFormation )
  24. {
  25. $this->niveauFormation = $niveauFormation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getNiveauFormation(): ?NiveauFormation
  33. {
  34. return $this->niveauFormation;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/TypeFormationAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\TypeFormation;
  6.  
  7. /**
  8.  * Description of TypeFormationAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeFormationAwareTrait
  13. {
  14. protected ?TypeFormation $typeFormation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeFormation $typeFormation
  20.   *
  21.   * @return self
  22.   */
  23. public function setTypeFormation( ?TypeFormation $typeFormation )
  24. {
  25. $this->typeFormation = $typeFormation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTypeFormation(): ?TypeFormation
  33. {
  34. return $this->typeFormation;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/TypeHeuresAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\TypeHeures;
  6.  
  7. /**
  8.  * Description of TypeHeuresAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeHeuresAwareTrait
  13. {
  14. protected ?TypeHeures $typeHeures = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeHeures $typeHeures
  20.   *
  21.   * @return self
  22.   */
  23. public function setTypeHeures( ?TypeHeures $typeHeures )
  24. {
  25. $this->typeHeures = $typeHeures;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTypeHeures(): ?TypeHeures
  33. {
  34. return $this->typeHeures;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/TypeInterventionAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\TypeIntervention;
  6.  
  7. /**
  8.  * Description of TypeInterventionAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeInterventionAwareTrait
  13. {
  14. protected ?TypeIntervention $typeIntervention = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeIntervention $typeIntervention
  20.   *
  21.   * @return self
  22.   */
  23. public function setTypeIntervention( ?TypeIntervention $typeIntervention )
  24. {
  25. $this->typeIntervention = $typeIntervention;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTypeIntervention(): ?TypeIntervention
  33. {
  34. return $this->typeIntervention;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/TypeInterventionStatutAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\TypeInterventionStatut;
  6.  
  7. /**
  8.  * Description of TypeInterventionStatutAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeInterventionStatutAwareTrait
  13. {
  14. protected ?TypeInterventionStatut $typeInterventionStatut = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeInterventionStatut $typeInterventionStatut
  20.   *
  21.   * @return self
  22.   */
  23. public function setTypeInterventionStatut( ?TypeInterventionStatut $typeInterventionStatut )
  24. {
  25. $this->typeInterventionStatut = $typeInterventionStatut;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTypeInterventionStatut(): ?TypeInterventionStatut
  33. {
  34. return $this->typeInterventionStatut;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/TypeInterventionStructureAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\TypeInterventionStructure;
  6.  
  7. /**
  8.  * Description of TypeInterventionStructureAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeInterventionStructureAwareTrait
  13. {
  14. protected ?TypeInterventionStructure $typeInterventionStructure = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeInterventionStructure $typeInterventionStructure
  20.   *
  21.   * @return self
  22.   */
  23. public function setTypeInterventionStructure( ?TypeInterventionStructure $typeInterventionStructure )
  24. {
  25. $this->typeInterventionStructure = $typeInterventionStructure;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTypeInterventionStructure(): ?TypeInterventionStructure
  33. {
  34. return $this->typeInterventionStructure;
  35. }
  36. }
module/OffreFormation/src/Entity/Db/Traits/VolumeHoraireEnsAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Entity\Db\Traits;
  4.  
  5. use OffreFormation\Entity\Db\VolumeHoraireEns;
  6.  
  7. /**
  8.  * Description of VolumeHoraireEnsAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait VolumeHoraireEnsAwareTrait
  13. {
  14. protected ?VolumeHoraireEns $volumeHoraireEns = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param VolumeHoraireEns $volumeHoraireEns
  20.   *
  21.   * @return self
  22.   */
  23. public function setVolumeHoraireEns( ?VolumeHoraireEns $volumeHoraireEns )
  24. {
  25. $this->volumeHoraireEns = $volumeHoraireEns;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getVolumeHoraireEns(): ?VolumeHoraireEns
  33. {
  34. return $this->volumeHoraireEns;
  35. }
  36. }
module/OffreFormation/src/Form/EtapeCentreCout/Traits/ElementCentreCoutFieldsetAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\EtapeCentreCout\Traits;
  4.  
  5. use OffreFormation\Form\EtapeCentreCout\ElementCentreCoutFieldset;
  6.  
  7. /**
  8.  * Description of ElementCentreCoutFieldsetAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ElementCentreCoutFieldsetAwareTrait
  13. {
  14. protected ?ElementCentreCoutFieldset $fieldsetEtapeCentreCoutElementCentreCout = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ElementCentreCoutFieldset $fieldsetEtapeCentreCoutElementCentreCout
  20.   *
  21.   * @return self
  22.   */
  23. public function setFieldsetEtapeCentreCoutElementCentreCout(?ElementCentreCoutFieldset $fieldsetEtapeCentreCoutElementCentreCout)
  24. {
  25. $this->fieldsetEtapeCentreCoutElementCentreCout = $fieldsetEtapeCentreCoutElementCentreCout;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFieldsetEtapeCentreCoutElementCentreCout(): ?ElementCentreCoutFieldset
  33. {
  34. if (!empty($this->fieldsetEtapeCentreCoutElementCentreCout)) {
  35. return $this->fieldsetEtapeCentreCoutElementCentreCout;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(ElementCentreCoutFieldset::class);
  39. }
  40. }
module/OffreFormation/src/Form/EtapeCentreCout/Traits/EtapeCentreCoutFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\EtapeCentreCout\Traits;
  4.  
  5. use OffreFormation\Form\EtapeCentreCout\EtapeCentreCoutForm;
  6.  
  7. /**
  8.  * Description of EtapeCentreCoutFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EtapeCentreCoutFormAwareTrait
  13. {
  14. protected ?EtapeCentreCoutForm $formEtapeCentreCoutEtapeCentreCout = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param EtapeCentreCoutForm $formEtapeCentreCoutEtapeCentreCout
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormEtapeCentreCoutEtapeCentreCout(?EtapeCentreCoutForm $formEtapeCentreCoutEtapeCentreCout)
  24. {
  25. $this->formEtapeCentreCoutEtapeCentreCout = $formEtapeCentreCoutEtapeCentreCout;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormEtapeCentreCoutEtapeCentreCout(): ?EtapeCentreCoutForm
  33. {
  34. if (!empty($this->formEtapeCentreCoutEtapeCentreCout)) {
  35. return $this->formEtapeCentreCoutEtapeCentreCout;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(EtapeCentreCoutForm::class);
  39. }
  40. }
module/OffreFormation/src/Form/EtapeTauxRemu/ElementTauxRemuFieldsetAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\EtapeTauxRemu;
  4.  
  5.  
  6. /**
  7.  * Description of ElementTauxRemuFieldsetAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ElementTauxRemuFieldsetAwareTrait
  12. {
  13. protected ?ElementTauxRemuFieldset $fieldsetEtapeTauxRemuElementTauxRemu = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ElementTauxRemuFieldset $fieldsetEtapeTauxRemuElementTauxRemu
  19.   *
  20.   * @return self
  21.   */
  22. public function setFieldsetEtapeTauxRemuElementTauxRemu(?ElementTauxRemuFieldset $fieldsetEtapeTauxRemuElementTauxRemu)
  23. {
  24. $this->fieldsetEtapeTauxRemuElementTauxRemu = $fieldsetEtapeTauxRemuElementTauxRemu;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFieldsetEtapeTauxRemuElementTauxRemu(): ?ElementTauxRemuFieldset
  32. {
  33. if (!empty($this->fieldsetEtapeTauxRemuElementTauxRemu)) {
  34. return $this->fieldsetEtapeTauxRemuElementTauxRemu;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(ElementTauxRemuFieldset::class);
  38. }
  39. }
module/OffreFormation/src/Form/EtapeTauxRemu/EtapeTauxRemuFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\EtapeTauxRemu;
  4.  
  5.  
  6. /**
  7.  * Description of EtapeTauxRemuFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait EtapeTauxRemuFormAwareTrait
  12. {
  13. protected ?EtapeTauxRemuForm $formEtapeTauxRemuEtapeTauxRemu = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param EtapeTauxRemuForm $formEtapeTauxRemuEtapeTauxRemu
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormEtapeTauxRemuEtapeTauxRemu(?EtapeTauxRemuForm $formEtapeTauxRemuEtapeTauxRemu)
  23. {
  24. $this->formEtapeTauxRemuEtapeTauxRemu = $formEtapeTauxRemuEtapeTauxRemu;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormEtapeTauxRemuEtapeTauxRemu(): ?EtapeTauxRemuForm
  32. {
  33. if (!empty($this->formEtapeTauxRemuEtapeTauxRemu)) {
  34. return $this->formEtapeTauxRemuEtapeTauxRemu;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(EtapeTauxRemuForm::class);
  38. }
  39. }
module/OffreFormation/src/Form/GroupeTypeFormation/Traits/GroupeTypeFormationSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\GroupeTypeFormation\Traits;
  4.  
  5. use OffreFormation\Form\GroupeTypeFormation\GroupeTypeFormationSaisieForm;
  6.  
  7. /**
  8.  * Description of GroupeTypeFormationSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait GroupeTypeFormationSaisieFormAwareTrait
  13. {
  14. protected ?GroupeTypeFormationSaisieForm $formGroupeTypeFormationGroupeTypeFormationSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param GroupeTypeFormationSaisieForm $formGroupeTypeFormationGroupeTypeFormationSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormGroupeTypeFormationGroupeTypeFormationSaisie(?GroupeTypeFormationSaisieForm $formGroupeTypeFormationGroupeTypeFormationSaisie)
  24. {
  25. $this->formGroupeTypeFormationGroupeTypeFormationSaisie = $formGroupeTypeFormationGroupeTypeFormationSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormGroupeTypeFormationGroupeTypeFormationSaisie(): ?GroupeTypeFormationSaisieForm
  33. {
  34. if (!empty($this->formGroupeTypeFormationGroupeTypeFormationSaisie)) {
  35. return $this->formGroupeTypeFormationGroupeTypeFormationSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(GroupeTypeFormationSaisieForm::class);
  39. }
  40. }
module/OffreFormation/src/Form/TauxMixite/Traits/TauxMixiteFieldsetAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\TauxMixite\Traits;
  4.  
  5. use OffreFormation\Form\TauxMixite\TauxMixiteFieldset;
  6.  
  7. /**
  8.  * Description of TauxMixiteFieldsetAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TauxMixiteFieldsetAwareTrait
  13. {
  14. protected ?TauxMixiteFieldset $fieldsetTauxMixiteTauxMixite = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TauxMixiteFieldset $fieldsetTauxMixiteTauxMixite
  20.   *
  21.   * @return self
  22.   */
  23. public function setFieldsetTauxMixiteTauxMixite(?TauxMixiteFieldset $fieldsetTauxMixiteTauxMixite)
  24. {
  25. $this->fieldsetTauxMixiteTauxMixite = $fieldsetTauxMixiteTauxMixite;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFieldsetTauxMixiteTauxMixite(): ?TauxMixiteFieldset
  33. {
  34. if (!empty($this->fieldsetTauxMixiteTauxMixite)) {
  35. return $this->fieldsetTauxMixiteTauxMixite;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(TauxMixiteFieldset::class);
  39. }
  40. }
module/OffreFormation/src/Form/TauxMixite/Traits/TauxMixiteFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\TauxMixite\Traits;
  4.  
  5. use OffreFormation\Form\TauxMixite\TauxMixiteForm;
  6.  
  7. /**
  8.  * Description of TauxMixiteFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TauxMixiteFormAwareTrait
  13. {
  14. protected ?TauxMixiteForm $formTauxMixiteTauxMixite = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TauxMixiteForm $formTauxMixiteTauxMixite
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormTauxMixiteTauxMixite(?TauxMixiteForm $formTauxMixiteTauxMixite)
  24. {
  25. $this->formTauxMixiteTauxMixite = $formTauxMixiteTauxMixite;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormTauxMixiteTauxMixite(): ?TauxMixiteForm
  33. {
  34. if (!empty($this->formTauxMixiteTauxMixite)) {
  35. return $this->formTauxMixiteTauxMixite;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(TauxMixiteForm::class);
  39. }
  40. }
module/OffreFormation/src/Form/Traits/DisciplineFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Traits;
  4.  
  5. use OffreFormation\Form\DisciplineForm;
  6.  
  7. /**
  8.  * Description of DisciplineFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DisciplineFormAwareTrait
  13. {
  14. protected ?DisciplineForm $formDiscipline = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DisciplineForm $formDiscipline
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormDiscipline(?DisciplineForm $formDiscipline)
  24. {
  25. $this->formDiscipline = $formDiscipline;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormDiscipline(): ?DisciplineForm
  33. {
  34. if (!empty($this->formDiscipline)) {
  35. return $this->formDiscipline;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(DisciplineForm::class);
  39. }
  40. }
module/OffreFormation/src/Form/Traits/ElementModulateurCentreCoutTauxRemuFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Traits;
  4.  
  5. use OffreFormation\Form\ElementModulateurCentreCoutTauxRemuForm;
  6.  
  7. /**
  8.  * Description of ElementModulateurCentreCoutTauxRemuFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ElementModulateurCentreCoutTauxRemuFormAwareTrait
  13. {
  14. protected ?ElementModulateurCentreCoutTauxRemuForm $formElementModulateurCentreCoutTauxRemu = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ElementModulateurCentreCoutTauxRemuForm $formElementModulateurCentreCoutTauxRemu
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormElementModulateurCentreCoutTauxRemu(?ElementModulateurCentreCoutTauxRemuForm $formElementModulateurCentreCoutTauxRemu)
  24. {
  25. $this->formElementModulateurCentreCoutTauxRemu = $formElementModulateurCentreCoutTauxRemu;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormElementModulateurCentreCoutTauxRemu(): ?ElementModulateurCentreCoutTauxRemuForm
  33. {
  34. if (!empty($this->formElementModulateurCentreCoutTauxRemu)) {
  35. return $this->formElementModulateurCentreCoutTauxRemu;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(ElementModulateurCentreCoutTauxRemuForm::class);
  39. }
  40. }
module/OffreFormation/src/Form/Traits/ElementModulateursFieldsetAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Traits;
  4.  
  5. use OffreFormation\Form\ElementModulateursFieldset;
  6.  
  7. /**
  8.  * Description of ElementModulateursFieldsetAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ElementModulateursFieldsetAwareTrait
  13. {
  14. protected ?ElementModulateursFieldset $fieldsetElementModulateurs = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ElementModulateursFieldset $fieldsetElementModulateurs
  20.   *
  21.   * @return self
  22.   */
  23. public function setFieldsetElementModulateurs(?ElementModulateursFieldset $fieldsetElementModulateurs)
  24. {
  25. $this->fieldsetElementModulateurs = $fieldsetElementModulateurs;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFieldsetElementModulateurs(): ?ElementModulateursFieldset
  33. {
  34. if (!empty($this->fieldsetElementModulateurs)) {
  35. return $this->fieldsetElementModulateurs;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(ElementModulateursFieldset::class);
  39. }
  40. }
module/OffreFormation/src/Form/Traits/ElementPedagogiqueRechercheFieldsetAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Traits;
  4.  
  5. use OffreFormation\Form\ElementPedagogiqueRechercheFieldset;
  6.  
  7. /**
  8.  * Description of ElementPedagogiqueRechercheFieldsetAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ElementPedagogiqueRechercheFieldsetAwareTrait
  13. {
  14. protected ?ElementPedagogiqueRechercheFieldset $fieldsetElementPedagogiqueRecherche = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ElementPedagogiqueRechercheFieldset $fieldsetElementPedagogiqueRecherche
  20.   *
  21.   * @return self
  22.   */
  23. public function setFieldsetElementPedagogiqueRecherche(?ElementPedagogiqueRechercheFieldset $fieldsetElementPedagogiqueRecherche)
  24. {
  25. $this->fieldsetElementPedagogiqueRecherche = $fieldsetElementPedagogiqueRecherche;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFieldsetElementPedagogiqueRecherche(): ?ElementPedagogiqueRechercheFieldset
  33. {
  34. if (!empty($this->fieldsetElementPedagogiqueRecherche)) {
  35. return $this->fieldsetElementPedagogiqueRecherche;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(ElementPedagogiqueRechercheFieldset::class);
  39. }
  40. }
module/OffreFormation/src/Form/Traits/ElementPedagogiqueSaisieAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Traits;
  4.  
  5. use OffreFormation\Form\ElementPedagogiqueSaisie;
  6.  
  7. /**
  8.  * Description of ElementPedagogiqueSaisieAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ElementPedagogiqueSaisieAwareTrait
  13. {
  14. protected ?ElementPedagogiqueSaisie $formElementPedagogiqueSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ElementPedagogiqueSaisie $formElementPedagogiqueSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormElementPedagogiqueSaisie(?ElementPedagogiqueSaisie $formElementPedagogiqueSaisie)
  24. {
  25. $this->formElementPedagogiqueSaisie = $formElementPedagogiqueSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormElementPedagogiqueSaisie(): ?ElementPedagogiqueSaisie
  33. {
  34. if (!empty($this->formElementPedagogiqueSaisie)) {
  35. return $this->formElementPedagogiqueSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(ElementPedagogiqueSaisie::class);
  39. }
  40. }
module/OffreFormation/src/Form/Traits/ElementPedagogiqueSynchronisationFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Traits;
  4.  
  5. use OffreFormation\Form\ElementPedagogiqueSynchronisationForm;
  6.  
  7. /**
  8.  * Description of ElementPedagogiqueSynchronisationFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ElementPedagogiqueSynchronisationFormAwareTrait
  13. {
  14. protected ?ElementPedagogiqueSynchronisationForm $formElementPedagogiqueSynchronisation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ElementPedagogiqueSynchronisationForm $formElementPedagogiqueSynchronisation
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormElementPedagogiqueSynchronisation(?ElementPedagogiqueSynchronisationForm $formElementPedagogiqueSynchronisation)
  24. {
  25. $this->formElementPedagogiqueSynchronisation = $formElementPedagogiqueSynchronisation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormElementPedagogiqueSynchronisation(): ?ElementPedagogiqueSynchronisationForm
  33. {
  34. if (!empty($this->formElementPedagogiqueSynchronisation)) {
  35. return $this->formElementPedagogiqueSynchronisation;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(ElementPedagogiqueSynchronisationForm::class);
  39. }
  40. }
module/OffreFormation/src/Form/Traits/EtapeModulateursSaisieAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Traits;
  4.  
  5. use OffreFormation\Form\EtapeModulateursSaisie;
  6.  
  7. /**
  8.  * Description of EtapeModulateursSaisieAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EtapeModulateursSaisieAwareTrait
  13. {
  14. protected ?EtapeModulateursSaisie $formEtapeModulateursSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param EtapeModulateursSaisie $formEtapeModulateursSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormEtapeModulateursSaisie(?EtapeModulateursSaisie $formEtapeModulateursSaisie)
  24. {
  25. $this->formEtapeModulateursSaisie = $formEtapeModulateursSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormEtapeModulateursSaisie(): ?EtapeModulateursSaisie
  33. {
  34. if (!empty($this->formEtapeModulateursSaisie)) {
  35. return $this->formEtapeModulateursSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(EtapeModulateursSaisie::class);
  39. }
  40. }
module/OffreFormation/src/Form/Traits/EtapeSaisieAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Traits;
  4.  
  5. use OffreFormation\Form\EtapeSaisie;
  6.  
  7. /**
  8.  * Description of EtapeSaisieAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EtapeSaisieAwareTrait
  13. {
  14. protected ?EtapeSaisie $formEtapeSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param EtapeSaisie $formEtapeSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormEtapeSaisie(?EtapeSaisie $formEtapeSaisie)
  24. {
  25. $this->formEtapeSaisie = $formEtapeSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormEtapeSaisie(): ?EtapeSaisie
  33. {
  34. if (!empty($this->formEtapeSaisie)) {
  35. return $this->formEtapeSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(EtapeSaisie::class);
  39. }
  40. }
module/OffreFormation/src/Form/Traits/VolumeHoraireEnsFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Traits;
  4.  
  5. use OffreFormation\Form\VolumeHoraireEnsForm;
  6.  
  7. /**
  8.  * Description of VolumeHoraireEnsFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait VolumeHoraireEnsFormAwareTrait
  13. {
  14. protected ?VolumeHoraireEnsForm $formVolumeHoraireEns = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param VolumeHoraireEnsForm $formVolumeHoraireEns
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormVolumeHoraireEns(?VolumeHoraireEnsForm $formVolumeHoraireEns)
  24. {
  25. $this->formVolumeHoraireEns = $formVolumeHoraireEns;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormVolumeHoraireEns(): ?VolumeHoraireEnsForm
  33. {
  34. if (!empty($this->formVolumeHoraireEns)) {
  35. return $this->formVolumeHoraireEns;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(VolumeHoraireEnsForm::class);
  39. }
  40. }
module/OffreFormation/src/Form/TypeFormation/Traits/TypeFormationSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\TypeFormation\Traits;
  4.  
  5. use OffreFormation\Form\TypeFormation\TypeFormationSaisieForm;
  6.  
  7. /**
  8.  * Description of TypeFormationSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeFormationSaisieFormAwareTrait
  13. {
  14. protected ?TypeFormationSaisieForm $formTypeFormationTypeFormationSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeFormationSaisieForm $formTypeFormationTypeFormationSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormTypeFormationTypeFormationSaisie(?TypeFormationSaisieForm $formTypeFormationTypeFormationSaisie)
  24. {
  25. $this->formTypeFormationTypeFormationSaisie = $formTypeFormationTypeFormationSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormTypeFormationTypeFormationSaisie(): ?TypeFormationSaisieForm
  33. {
  34. if (!empty($this->formTypeFormationTypeFormationSaisie)) {
  35. return $this->formTypeFormationTypeFormationSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(TypeFormationSaisieForm::class);
  39. }
  40. }
module/OffreFormation/src/Form/TypeIntervention/Traits/TypeInterventionSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\TypeIntervention\Traits;
  4.  
  5. use OffreFormation\Form\TypeIntervention\TypeInterventionSaisieForm;
  6.  
  7. /**
  8.  * Description of TypeInterventionSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeInterventionSaisieFormAwareTrait
  13. {
  14. protected ?TypeInterventionSaisieForm $formTypeInterventionTypeInterventionSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeInterventionSaisieForm $formTypeInterventionTypeInterventionSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormTypeInterventionTypeInterventionSaisie(?TypeInterventionSaisieForm $formTypeInterventionTypeInterventionSaisie)
  24. {
  25. $this->formTypeInterventionTypeInterventionSaisie = $formTypeInterventionTypeInterventionSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormTypeInterventionTypeInterventionSaisie(): ?TypeInterventionSaisieForm
  33. {
  34. if (!empty($this->formTypeInterventionTypeInterventionSaisie)) {
  35. return $this->formTypeInterventionTypeInterventionSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(TypeInterventionSaisieForm::class);
  39. }
  40. }
module/OffreFormation/src/Form/TypeIntervention/Traits/TypeInterventionStatutDeleteFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\TypeIntervention\Traits;
  4.  
  5. use OffreFormation\Form\TypeIntervention\TypeInterventionStatutDeleteForm;
  6.  
  7. /**
  8.  * Description of TypeInterventionStatutDeleteFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeInterventionStatutDeleteFormAwareTrait
  13. {
  14. protected ?TypeInterventionStatutDeleteForm $formTypeInterventionTypeInterventionStatutDelete = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeInterventionStatutDeleteForm $formTypeInterventionTypeInterventionStatutDelete
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormTypeInterventionTypeInterventionStatutDelete(?TypeInterventionStatutDeleteForm $formTypeInterventionTypeInterventionStatutDelete)
  24. {
  25. $this->formTypeInterventionTypeInterventionStatutDelete = $formTypeInterventionTypeInterventionStatutDelete;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormTypeInterventionTypeInterventionStatutDelete(): ?TypeInterventionStatutDeleteForm
  33. {
  34. if (!empty($this->formTypeInterventionTypeInterventionStatutDelete)) {
  35. return $this->formTypeInterventionTypeInterventionStatutDelete;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(TypeInterventionStatutDeleteForm::class);
  39. }
  40. }
module/OffreFormation/src/Form/TypeIntervention/Traits/TypeInterventionStatutSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\TypeIntervention\Traits;
  4.  
  5. use OffreFormation\Form\TypeIntervention\TypeInterventionStatutSaisieForm;
  6.  
  7. /**
  8.  * Description of TypeInterventionStatutSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeInterventionStatutSaisieFormAwareTrait
  13. {
  14. protected ?TypeInterventionStatutSaisieForm $formTypeInterventionTypeInterventionStatutSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeInterventionStatutSaisieForm $formTypeInterventionTypeInterventionStatutSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormTypeInterventionTypeInterventionStatutSaisie(?TypeInterventionStatutSaisieForm $formTypeInterventionTypeInterventionStatutSaisie)
  24. {
  25. $this->formTypeInterventionTypeInterventionStatutSaisie = $formTypeInterventionTypeInterventionStatutSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormTypeInterventionTypeInterventionStatutSaisie(): ?TypeInterventionStatutSaisieForm
  33. {
  34. if (!empty($this->formTypeInterventionTypeInterventionStatutSaisie)) {
  35. return $this->formTypeInterventionTypeInterventionStatutSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(TypeInterventionStatutSaisieForm::class);
  39. }
  40. }
module/OffreFormation/src/Form/TypeIntervention/Traits/TypeInterventionStructureSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\TypeIntervention\Traits;
  4.  
  5. use OffreFormation\Form\TypeIntervention\TypeInterventionStructureSaisieForm;
  6.  
  7. /**
  8.  * Description of TypeInterventionStructureSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeInterventionStructureSaisieFormAwareTrait
  13. {
  14. protected ?TypeInterventionStructureSaisieForm $formTypeInterventionTypeInterventionStructureSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeInterventionStructureSaisieForm $formTypeInterventionTypeInterventionStructureSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormTypeInterventionTypeInterventionStructureSaisie(?TypeInterventionStructureSaisieForm $formTypeInterventionTypeInterventionStructureSaisie)
  24. {
  25. $this->formTypeInterventionTypeInterventionStructureSaisie = $formTypeInterventionTypeInterventionStructureSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormTypeInterventionTypeInterventionStructureSaisie(): ?TypeInterventionStructureSaisieForm
  33. {
  34. if (!empty($this->formTypeInterventionTypeInterventionStructureSaisie)) {
  35. return $this->formTypeInterventionTypeInterventionStructureSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(TypeInterventionStructureSaisieForm::class);
  39. }
  40. }
module/OffreFormation/src/Processus/Traits/ReconductionProcessusAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Processus\Traits;
  4.  
  5. use OffreFormation\Processus\ReconductionProcessus;
  6.  
  7. /**
  8.  * Description of ReconductionProcessusAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ReconductionProcessusAwareTrait
  13. {
  14. protected ?ReconductionProcessus $processusReconduction = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ReconductionProcessus $processusReconduction
  20.   *
  21.   * @return self
  22.   */
  23. public function setProcessusReconduction(?ReconductionProcessus $processusReconduction)
  24. {
  25. $this->processusReconduction = $processusReconduction;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getProcessusReconduction(): ?ReconductionProcessus
  33. {
  34. if (empty($this->processusReconduction)) {
  35. $this->processusReconduction = \Application::$container->get(ReconductionProcessus::class);
  36. }
  37.  
  38. return $this->processusReconduction;
  39. }
  40. }
module/OffreFormation/src/Service/CentreCoutEpServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service;
  4.  
  5.  
  6. /**
  7.  * Description of CentreCoutEpServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CentreCoutEpServiceAwareTrait
  12. {
  13. protected ?CentreCoutEpService $serviceCentreCoutEp = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CentreCoutEpService $serviceCentreCoutEp
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceCentreCoutEp(?CentreCoutEpService $serviceCentreCoutEp)
  23. {
  24. $this->serviceCentreCoutEp = $serviceCentreCoutEp;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceCentreCoutEp(): ?CentreCoutEpService
  32. {
  33. if (empty($this->serviceCentreCoutEp)) {
  34. $this->serviceCentreCoutEp = \Application::$container->get(CentreCoutEpService::class);
  35. }
  36.  
  37. return $this->serviceCentreCoutEp;
  38. }
  39. }
module/OffreFormation/src/Service/Traits/CentreCoutEpServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\CentreCoutEpService;
  6.  
  7. /**
  8.  * Description of CentreCoutEpServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait CentreCoutEpServiceAwareTrait
  13. {
  14. protected ?CentreCoutEpService $serviceCentreCoutEp = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param CentreCoutEpService $serviceCentreCoutEp
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceCentreCoutEp(?CentreCoutEpService $serviceCentreCoutEp)
  24. {
  25. $this->serviceCentreCoutEp = $serviceCentreCoutEp;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceCentreCoutEp(): ?CentreCoutEpService
  33. {
  34. if (empty($this->serviceCentreCoutEp)) {
  35. $this->serviceCentreCoutEp = \Application::$container->get(CentreCoutEpService::class);
  36. }
  37.  
  38. return $this->serviceCentreCoutEp;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/CheminPedagogiqueServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\CheminPedagogiqueService;
  6.  
  7. /**
  8.  * Description of CheminPedagogiqueServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait CheminPedagogiqueServiceAwareTrait
  13. {
  14. protected ?CheminPedagogiqueService $serviceCheminPedagogique = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param CheminPedagogiqueService $serviceCheminPedagogique
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceCheminPedagogique(?CheminPedagogiqueService $serviceCheminPedagogique)
  24. {
  25. $this->serviceCheminPedagogique = $serviceCheminPedagogique;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceCheminPedagogique(): ?CheminPedagogiqueService
  33. {
  34. if (empty($this->serviceCheminPedagogique)) {
  35. $this->serviceCheminPedagogique = \Application::$container->get(CheminPedagogiqueService::class);
  36. }
  37.  
  38. return $this->serviceCheminPedagogique;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/DisciplineServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\DisciplineService;
  6.  
  7. /**
  8.  * Description of DisciplineServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DisciplineServiceAwareTrait
  13. {
  14. protected ?DisciplineService $serviceDiscipline = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DisciplineService $serviceDiscipline
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceDiscipline(?DisciplineService $serviceDiscipline)
  24. {
  25. $this->serviceDiscipline = $serviceDiscipline;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceDiscipline(): ?DisciplineService
  33. {
  34. if (empty($this->serviceDiscipline)) {
  35. $this->serviceDiscipline = \Application::$container->get(DisciplineService::class);
  36. }
  37.  
  38. return $this->serviceDiscipline;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/DomaineFonctionnelServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\DomaineFonctionnelService;
  6.  
  7. /**
  8.  * Description of DomaineFonctionnelServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait DomaineFonctionnelServiceAwareTrait
  13. {
  14. protected ?DomaineFonctionnelService $serviceDomaineFonctionnel = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param DomaineFonctionnelService $serviceDomaineFonctionnel
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceDomaineFonctionnel(?DomaineFonctionnelService $serviceDomaineFonctionnel)
  24. {
  25. $this->serviceDomaineFonctionnel = $serviceDomaineFonctionnel;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceDomaineFonctionnel(): ?DomaineFonctionnelService
  33. {
  34. if (empty($this->serviceDomaineFonctionnel)) {
  35. $this->serviceDomaineFonctionnel = \Application::$container->get(DomaineFonctionnelService::class);
  36. }
  37.  
  38. return $this->serviceDomaineFonctionnel;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/ElementModulateurServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\ElementModulateurService;
  6.  
  7. /**
  8.  * Description of ElementModulateurServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ElementModulateurServiceAwareTrait
  13. {
  14. protected ?ElementModulateurService $serviceElementModulateur = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ElementModulateurService $serviceElementModulateur
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceElementModulateur(?ElementModulateurService $serviceElementModulateur)
  24. {
  25. $this->serviceElementModulateur = $serviceElementModulateur;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceElementModulateur(): ?ElementModulateurService
  33. {
  34. if (empty($this->serviceElementModulateur)) {
  35. $this->serviceElementModulateur = \Application::$container->get(ElementModulateurService::class);
  36. }
  37.  
  38. return $this->serviceElementModulateur;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/ElementPedagogiqueServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\ElementPedagogiqueService;
  6.  
  7. /**
  8.  * Description of ElementPedagogiqueServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ElementPedagogiqueServiceAwareTrait
  13. {
  14. protected ?ElementPedagogiqueService $serviceElementPedagogique = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ElementPedagogiqueService $serviceElementPedagogique
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceElementPedagogique(?ElementPedagogiqueService $serviceElementPedagogique)
  24. {
  25. $this->serviceElementPedagogique = $serviceElementPedagogique;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceElementPedagogique(): ?ElementPedagogiqueService
  33. {
  34. if (empty($this->serviceElementPedagogique)) {
  35. $this->serviceElementPedagogique = \Application::$container->get(ElementPedagogiqueService::class);
  36. }
  37.  
  38. return $this->serviceElementPedagogique;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/EtapeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\EtapeService;
  6.  
  7. /**
  8.  * Description of EtapeServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait EtapeServiceAwareTrait
  13. {
  14. protected ?EtapeService $serviceEtape = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param EtapeService $serviceEtape
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceEtape(?EtapeService $serviceEtape)
  24. {
  25. $this->serviceEtape = $serviceEtape;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceEtape(): ?EtapeService
  33. {
  34. if (empty($this->serviceEtape)) {
  35. $this->serviceEtape = \Application::$container->get(EtapeService::class);
  36. }
  37.  
  38. return $this->serviceEtape;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/GroupeTypeFormationServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\GroupeTypeFormationService;
  6.  
  7. /**
  8.  * Description of GroupeTypeFormationServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait GroupeTypeFormationServiceAwareTrait
  13. {
  14. protected ?GroupeTypeFormationService $serviceGroupeTypeFormation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param GroupeTypeFormationService $serviceGroupeTypeFormation
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceGroupeTypeFormation(?GroupeTypeFormationService $serviceGroupeTypeFormation)
  24. {
  25. $this->serviceGroupeTypeFormation = $serviceGroupeTypeFormation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceGroupeTypeFormation(): ?GroupeTypeFormationService
  33. {
  34. if (empty($this->serviceGroupeTypeFormation)) {
  35. $this->serviceGroupeTypeFormation = \Application::$container->get(GroupeTypeFormationService::class);
  36. }
  37.  
  38. return $this->serviceGroupeTypeFormation;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/NiveauEtapeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\NiveauEtapeService;
  6.  
  7. /**
  8.  * Description of NiveauEtapeServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait NiveauEtapeServiceAwareTrait
  13. {
  14. protected ?NiveauEtapeService $serviceNiveauEtape = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param NiveauEtapeService $serviceNiveauEtape
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceNiveauEtape(?NiveauEtapeService $serviceNiveauEtape)
  24. {
  25. $this->serviceNiveauEtape = $serviceNiveauEtape;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceNiveauEtape(): ?NiveauEtapeService
  33. {
  34. if (empty($this->serviceNiveauEtape)) {
  35. $this->serviceNiveauEtape = \Application::$container->get(NiveauEtapeService::class);
  36. }
  37.  
  38. return $this->serviceNiveauEtape;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/NiveauFormationServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\NiveauFormationService;
  6.  
  7. /**
  8.  * Description of NiveauFormationServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait NiveauFormationServiceAwareTrait
  13. {
  14. protected ?NiveauFormationService $serviceNiveauFormation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param NiveauFormationService $serviceNiveauFormation
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceNiveauFormation(?NiveauFormationService $serviceNiveauFormation)
  24. {
  25. $this->serviceNiveauFormation = $serviceNiveauFormation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceNiveauFormation(): ?NiveauFormationService
  33. {
  34. if (empty($this->serviceNiveauFormation)) {
  35. $this->serviceNiveauFormation = \Application::$container->get(NiveauFormationService::class);
  36. }
  37.  
  38. return $this->serviceNiveauFormation;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/OffreFormationServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\OffreFormationService;
  6.  
  7. /**
  8.  * Description of OffreFormationServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait OffreFormationServiceAwareTrait
  13. {
  14. protected ?OffreFormationService $serviceOffreFormation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param OffreFormationService $serviceOffreFormation
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceOffreFormation(?OffreFormationService $serviceOffreFormation)
  24. {
  25. $this->serviceOffreFormation = $serviceOffreFormation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceOffreFormation(): ?OffreFormationService
  33. {
  34. if (empty($this->serviceOffreFormation)) {
  35. $this->serviceOffreFormation = \Application::$container->get(OffreFormationService::class);
  36. }
  37.  
  38. return $this->serviceOffreFormation;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/TypeFormationServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\TypeFormationService;
  6.  
  7. /**
  8.  * Description of TypeFormationServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeFormationServiceAwareTrait
  13. {
  14. protected ?TypeFormationService $serviceTypeFormation = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeFormationService $serviceTypeFormation
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceTypeFormation(?TypeFormationService $serviceTypeFormation)
  24. {
  25. $this->serviceTypeFormation = $serviceTypeFormation;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceTypeFormation(): ?TypeFormationService
  33. {
  34. if (empty($this->serviceTypeFormation)) {
  35. $this->serviceTypeFormation = \Application::$container->get(TypeFormationService::class);
  36. }
  37.  
  38. return $this->serviceTypeFormation;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/TypeHeuresServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\TypeHeuresService;
  6.  
  7. /**
  8.  * Description of TypeHeuresServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeHeuresServiceAwareTrait
  13. {
  14. protected ?TypeHeuresService $serviceTypeHeures = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeHeuresService $serviceTypeHeures
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceTypeHeures(?TypeHeuresService $serviceTypeHeures)
  24. {
  25. $this->serviceTypeHeures = $serviceTypeHeures;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceTypeHeures(): ?TypeHeuresService
  33. {
  34. if (empty($this->serviceTypeHeures)) {
  35. $this->serviceTypeHeures = \Application::$container->get(TypeHeuresService::class);
  36. }
  37.  
  38. return $this->serviceTypeHeures;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/TypeInterventionServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\TypeInterventionService;
  6.  
  7. /**
  8.  * Description of TypeInterventionServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeInterventionServiceAwareTrait
  13. {
  14. protected ?TypeInterventionService $serviceTypeIntervention = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeInterventionService $serviceTypeIntervention
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceTypeIntervention(?TypeInterventionService $serviceTypeIntervention)
  24. {
  25. $this->serviceTypeIntervention = $serviceTypeIntervention;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceTypeIntervention(): ?TypeInterventionService
  33. {
  34. if (empty($this->serviceTypeIntervention)) {
  35. $this->serviceTypeIntervention = \Application::$container->get(TypeInterventionService::class);
  36. }
  37.  
  38. return $this->serviceTypeIntervention;
  39. }
  40. }
ATTENTION : L'awareTrait OffreFormation\Service\Traits\TypeInterventionStatutAwareTrait ne fait référence à aucune classe connue et identifiée
module/OffreFormation/src/Service/Traits/TypeInterventionStatutServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\TypeInterventionStatutService;
  6.  
  7. /**
  8.  * Description of TypeInterventionStatutServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeInterventionStatutServiceAwareTrait
  13. {
  14. protected ?TypeInterventionStatutService $serviceTypeInterventionStatut = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeInterventionStatutService $serviceTypeInterventionStatut
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceTypeInterventionStatut(?TypeInterventionStatutService $serviceTypeInterventionStatut)
  24. {
  25. $this->serviceTypeInterventionStatut = $serviceTypeInterventionStatut;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceTypeInterventionStatut(): ?TypeInterventionStatutService
  33. {
  34. if (empty($this->serviceTypeInterventionStatut)) {
  35. $this->serviceTypeInterventionStatut = \Application::$container->get(TypeInterventionStatutService::class);
  36. }
  37.  
  38. return $this->serviceTypeInterventionStatut;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/TypeInterventionStructureServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\TypeInterventionStructureService;
  6.  
  7. /**
  8.  * Description of TypeInterventionStructureServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypeInterventionStructureServiceAwareTrait
  13. {
  14. protected ?TypeInterventionStructureService $serviceTypeInterventionStructure = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypeInterventionStructureService $serviceTypeInterventionStructure
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceTypeInterventionStructure(?TypeInterventionStructureService $serviceTypeInterventionStructure)
  24. {
  25. $this->serviceTypeInterventionStructure = $serviceTypeInterventionStructure;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceTypeInterventionStructure(): ?TypeInterventionStructureService
  33. {
  34. if (empty($this->serviceTypeInterventionStructure)) {
  35. $this->serviceTypeInterventionStructure = \Application::$container->get(TypeInterventionStructureService::class);
  36. }
  37.  
  38. return $this->serviceTypeInterventionStructure;
  39. }
  40. }
module/OffreFormation/src/Service/Traits/VolumeHoraireEnsServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service\Traits;
  4.  
  5. use OffreFormation\Service\VolumeHoraireEnsService;
  6.  
  7. /**
  8.  * Description of VolumeHoraireEnsServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait VolumeHoraireEnsServiceAwareTrait
  13. {
  14. protected ?VolumeHoraireEnsService $serviceVolumeHoraireEns = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param VolumeHoraireEnsService $serviceVolumeHoraireEns
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceVolumeHoraireEns(?VolumeHoraireEnsService $serviceVolumeHoraireEns)
  24. {
  25. $this->serviceVolumeHoraireEns = $serviceVolumeHoraireEns;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceVolumeHoraireEns(): ?VolumeHoraireEnsService
  33. {
  34. if (empty($this->serviceVolumeHoraireEns)) {
  35. $this->serviceVolumeHoraireEns = \Application::$container->get(VolumeHoraireEnsService::class);
  36. }
  37.  
  38. return $this->serviceVolumeHoraireEns;
  39. }
  40. }
module/OffreFormation/src/Service/TypeHeuresServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace OffreFormation\Service;
  4.  
  5.  
  6. /**
  7.  * Description of TypeHeuresServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeHeuresServiceAwareTrait
  12. {
  13. protected ?TypeHeuresService $serviceTypeHeures = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeHeuresService $serviceTypeHeures
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceTypeHeures(?TypeHeuresService $serviceTypeHeures)
  23. {
  24. $this->serviceTypeHeures = $serviceTypeHeures;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceTypeHeures(): ?TypeHeuresService
  32. {
  33. if (empty($this->serviceTypeHeures)) {
  34. $this->serviceTypeHeures = \Application::$container->get(TypeHeuresService::class);
  35. }
  36.  
  37. return $this->serviceTypeHeures;
  38. }
  39. }
module/Paiement/src/Entity/Db/CcActiviteAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of CcActiviteAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CcActiviteAwareTrait
  12. {
  13. protected ?CcActivite $ccActivite = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CcActivite $ccActivite
  19.   *
  20.   * @return self
  21.   */
  22. public function setCcActivite( ?CcActivite $ccActivite )
  23. {
  24. $this->ccActivite = $ccActivite;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getCcActivite(): ?CcActivite
  32. {
  33. return $this->ccActivite;
  34. }
  35. }
module/Paiement/src/Entity/Db/CentreCoutAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of CentreCoutAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CentreCoutAwareTrait
  12. {
  13. protected ?CentreCout $centreCout = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CentreCout $centreCout
  19.   *
  20.   * @return self
  21.   */
  22. public function setCentreCout( ?CentreCout $centreCout )
  23. {
  24. $this->centreCout = $centreCout;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getCentreCout(): ?CentreCout
  32. {
  33. return $this->centreCout;
  34. }
  35. }
module/Paiement/src/Entity/Db/DotationAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of DotationAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait DotationAwareTrait
  12. {
  13. protected ?Dotation $dotation = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param Dotation $dotation
  19.   *
  20.   * @return self
  21.   */
  22. public function setDotation( ?Dotation $dotation )
  23. {
  24. $this->dotation = $dotation;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getDotation(): ?Dotation
  32. {
  33. return $this->dotation;
  34. }
  35. }
module/Paiement/src/Entity/Db/MiseEnPaiementAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of MiseEnPaiementAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MiseEnPaiementAwareTrait
  12. {
  13. protected ?MiseEnPaiement $miseEnPaiement = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MiseEnPaiement $miseEnPaiement
  19.   *
  20.   * @return self
  21.   */
  22. public function setMiseEnPaiement( ?MiseEnPaiement $miseEnPaiement )
  23. {
  24. $this->miseEnPaiement = $miseEnPaiement;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getMiseEnPaiement(): ?MiseEnPaiement
  32. {
  33. return $this->miseEnPaiement;
  34. }
  35. }
module/Paiement/src/Entity/Db/MiseEnPaiementIntervenantStructureAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of MiseEnPaiementIntervenantStructureAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MiseEnPaiementIntervenantStructureAwareTrait
  12. {
  13. protected ?MiseEnPaiementIntervenantStructure $miseEnPaiementIntervenantStructure = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MiseEnPaiementIntervenantStructure $miseEnPaiementIntervenantStructure
  19.   *
  20.   * @return self
  21.   */
  22. public function setMiseEnPaiementIntervenantStructure( ?MiseEnPaiementIntervenantStructure $miseEnPaiementIntervenantStructure )
  23. {
  24. $this->miseEnPaiementIntervenantStructure = $miseEnPaiementIntervenantStructure;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getMiseEnPaiementIntervenantStructure(): ?MiseEnPaiementIntervenantStructure
  32. {
  33. return $this->miseEnPaiementIntervenantStructure;
  34. }
  35. }
module/Paiement/src/Entity/Db/ModulateurAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of ModulateurAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ModulateurAwareTrait
  12. {
  13. protected ?Modulateur $modulateur = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param Modulateur $modulateur
  19.   *
  20.   * @return self
  21.   */
  22. public function setModulateur( ?Modulateur $modulateur )
  23. {
  24. $this->modulateur = $modulateur;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getModulateur(): ?Modulateur
  32. {
  33. return $this->modulateur;
  34. }
  35. }
module/Paiement/src/Entity/Db/MotifNonPaiementAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of MotifNonPaiementAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MotifNonPaiementAwareTrait
  12. {
  13. protected ?MotifNonPaiement $motifNonPaiement = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MotifNonPaiement $motifNonPaiement
  19.   *
  20.   * @return self
  21.   */
  22. public function setMotifNonPaiement( ?MotifNonPaiement $motifNonPaiement )
  23. {
  24. $this->motifNonPaiement = $motifNonPaiement;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getMotifNonPaiement(): ?MotifNonPaiement
  32. {
  33. return $this->motifNonPaiement;
  34. }
  35. }
module/Paiement/src/Entity/Db/TypeRessourceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of TypeRessourceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeRessourceAwareTrait
  12. {
  13. protected ?TypeRessource $typeRessource = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeRessource $typeRessource
  19.   *
  20.   * @return self
  21.   */
  22. public function setTypeRessource( ?TypeRessource $typeRessource )
  23. {
  24. $this->typeRessource = $typeRessource;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getTypeRessource(): ?TypeRessource
  32. {
  33. return $this->typeRessource;
  34. }
  35. }
module/Paiement/src/Form/Budget/DotationSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form\Budget;
  4.  
  5.  
  6. /**
  7.  * Description of DotationSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait DotationSaisieFormAwareTrait
  12. {
  13. protected ?DotationSaisieForm $formBudgetDotationSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param DotationSaisieForm $formBudgetDotationSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormBudgetDotationSaisie(?DotationSaisieForm $formBudgetDotationSaisie)
  23. {
  24. $this->formBudgetDotationSaisie = $formBudgetDotationSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormBudgetDotationSaisie(): ?DotationSaisieForm
  32. {
  33. if (!empty($this->formBudgetDotationSaisie)) {
  34. return $this->formBudgetDotationSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(DotationSaisieForm::class);
  38. }
  39. }
module/Paiement/src/Form/CentreCout/CentreCoutActiviteSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form\CentreCout;
  4.  
  5.  
  6. /**
  7.  * Description of CentreCoutActiviteSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CentreCoutActiviteSaisieFormAwareTrait
  12. {
  13. protected ?CentreCoutActiviteSaisieForm $formCentreCoutCentreCoutActiviteSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CentreCoutActiviteSaisieForm $formCentreCoutCentreCoutActiviteSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormCentreCoutCentreCoutActiviteSaisie(?CentreCoutActiviteSaisieForm $formCentreCoutCentreCoutActiviteSaisie)
  23. {
  24. $this->formCentreCoutCentreCoutActiviteSaisie = $formCentreCoutCentreCoutActiviteSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormCentreCoutCentreCoutActiviteSaisie(): ?CentreCoutActiviteSaisieForm
  32. {
  33. if (!empty($this->formCentreCoutCentreCoutActiviteSaisie)) {
  34. return $this->formCentreCoutCentreCoutActiviteSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(CentreCoutActiviteSaisieForm::class);
  38. }
  39. }
module/Paiement/src/Form/CentreCout/CentreCoutSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form\CentreCout;
  4.  
  5.  
  6. /**
  7.  * Description of CentreCoutSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CentreCoutSaisieFormAwareTrait
  12. {
  13. protected ?CentreCoutSaisieForm $formCentreCoutCentreCoutSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CentreCoutSaisieForm $formCentreCoutCentreCoutSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormCentreCoutCentreCoutSaisie(?CentreCoutSaisieForm $formCentreCoutCentreCoutSaisie)
  23. {
  24. $this->formCentreCoutCentreCoutSaisie = $formCentreCoutCentreCoutSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormCentreCoutCentreCoutSaisie(): ?CentreCoutSaisieForm
  32. {
  33. if (!empty($this->formCentreCoutCentreCoutSaisie)) {
  34. return $this->formCentreCoutCentreCoutSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(CentreCoutSaisieForm::class);
  38. }
  39. }
module/Paiement/src/Form/CentreCout/CentreCoutStructureSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form\CentreCout;
  4.  
  5.  
  6. /**
  7.  * Description of CentreCoutStructureSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CentreCoutStructureSaisieFormAwareTrait
  12. {
  13. protected ?CentreCoutStructureSaisieForm $formCentreCoutCentreCoutStructureSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CentreCoutStructureSaisieForm $formCentreCoutCentreCoutStructureSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormCentreCoutCentreCoutStructureSaisie(?CentreCoutStructureSaisieForm $formCentreCoutCentreCoutStructureSaisie)
  23. {
  24. $this->formCentreCoutCentreCoutStructureSaisie = $formCentreCoutCentreCoutStructureSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormCentreCoutCentreCoutStructureSaisie(): ?CentreCoutStructureSaisieForm
  32. {
  33. if (!empty($this->formCentreCoutCentreCoutStructureSaisie)) {
  34. return $this->formCentreCoutCentreCoutStructureSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(CentreCoutStructureSaisieForm::class);
  38. }
  39. }
module/Paiement/src/Form/JourFerieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form;
  4.  
  5.  
  6. /**
  7.  * Description of JourFerieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait JourFerieFormAwareTrait
  12. {
  13. protected ?JourFerieForm $formJourFerie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param JourFerieForm $formJourFerie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormJourFerie(?JourFerieForm $formJourFerie)
  23. {
  24. $this->formJourFerie = $formJourFerie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormJourFerie(): ?JourFerieForm
  32. {
  33. if (!empty($this->formJourFerie)) {
  34. return $this->formJourFerie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(JourFerieForm::class);
  38. }
  39. }
module/Paiement/src/Form/Modulateur/ModulateurSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form\Modulateur;
  4.  
  5.  
  6. /**
  7.  * Description of ModulateurSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ModulateurSaisieFormAwareTrait
  12. {
  13. protected ?ModulateurSaisieForm $formModulateurModulateurSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ModulateurSaisieForm $formModulateurModulateurSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormModulateurModulateurSaisie(?ModulateurSaisieForm $formModulateurModulateurSaisie)
  23. {
  24. $this->formModulateurModulateurSaisie = $formModulateurModulateurSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormModulateurModulateurSaisie(): ?ModulateurSaisieForm
  32. {
  33. if (!empty($this->formModulateurModulateurSaisie)) {
  34. return $this->formModulateurModulateurSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(ModulateurSaisieForm::class);
  38. }
  39. }
module/Paiement/src/Form/Modulateur/TypeModulateurSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form\Modulateur;
  4.  
  5.  
  6. /**
  7.  * Description of TypeModulateurSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeModulateurSaisieFormAwareTrait
  12. {
  13. protected ?TypeModulateurSaisieForm $formModulateurTypeModulateurSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeModulateurSaisieForm $formModulateurTypeModulateurSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormModulateurTypeModulateurSaisie(?TypeModulateurSaisieForm $formModulateurTypeModulateurSaisie)
  23. {
  24. $this->formModulateurTypeModulateurSaisie = $formModulateurTypeModulateurSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormModulateurTypeModulateurSaisie(): ?TypeModulateurSaisieForm
  32. {
  33. if (!empty($this->formModulateurTypeModulateurSaisie)) {
  34. return $this->formModulateurTypeModulateurSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(TypeModulateurSaisieForm::class);
  38. }
  39. }
module/Paiement/src/Form/Modulateur/TypeModulateurStructureSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form\Modulateur;
  4.  
  5.  
  6. /**
  7.  * Description of TypeModulateurStructureSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeModulateurStructureSaisieFormAwareTrait
  12. {
  13. protected ?TypeModulateurStructureSaisieForm $formModulateurTypeModulateurStructureSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeModulateurStructureSaisieForm $formModulateurTypeModulateurStructureSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormModulateurTypeModulateurStructureSaisie(?TypeModulateurStructureSaisieForm $formModulateurTypeModulateurStructureSaisie)
  23. {
  24. $this->formModulateurTypeModulateurStructureSaisie = $formModulateurTypeModulateurStructureSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormModulateurTypeModulateurStructureSaisie(): ?TypeModulateurStructureSaisieForm
  32. {
  33. if (!empty($this->formModulateurTypeModulateurStructureSaisie)) {
  34. return $this->formModulateurTypeModulateurStructureSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(TypeModulateurStructureSaisieForm::class);
  38. }
  39. }
module/Paiement/src/Form/MotifNonPaiement/MotifNonPaiementSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form\MotifNonPaiement;
  4.  
  5.  
  6. /**
  7.  * Description of MotifNonPaiementSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MotifNonPaiementSaisieFormAwareTrait
  12. {
  13. protected ?MotifNonPaiementSaisieForm $formMotifNonPaiementMotifNonPaiementSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MotifNonPaiementSaisieForm $formMotifNonPaiementMotifNonPaiementSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormMotifNonPaiementMotifNonPaiementSaisie(?MotifNonPaiementSaisieForm $formMotifNonPaiementMotifNonPaiementSaisie)
  23. {
  24. $this->formMotifNonPaiementMotifNonPaiementSaisie = $formMotifNonPaiementMotifNonPaiementSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormMotifNonPaiementMotifNonPaiementSaisie(): ?MotifNonPaiementSaisieForm
  32. {
  33. if (!empty($this->formMotifNonPaiementMotifNonPaiementSaisie)) {
  34. return $this->formMotifNonPaiementMotifNonPaiementSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(MotifNonPaiementSaisieForm::class);
  38. }
  39. }
module/Paiement/src/Form/Paiement/MiseEnPaiementFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form\Paiement;
  4.  
  5.  
  6. /**
  7.  * Description of MiseEnPaiementFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MiseEnPaiementFormAwareTrait
  12. {
  13. protected ?MiseEnPaiementForm $formPaiementMiseEnPaiement = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MiseEnPaiementForm $formPaiementMiseEnPaiement
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormPaiementMiseEnPaiement(?MiseEnPaiementForm $formPaiementMiseEnPaiement)
  23. {
  24. $this->formPaiementMiseEnPaiement = $formPaiementMiseEnPaiement;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormPaiementMiseEnPaiement(): ?MiseEnPaiementForm
  32. {
  33. if (!empty($this->formPaiementMiseEnPaiement)) {
  34. return $this->formPaiementMiseEnPaiement;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(MiseEnPaiementForm::class);
  38. }
  39. }
module/Paiement/src/Form/Paiement/MiseEnPaiementRechercheFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form\Paiement;
  4.  
  5.  
  6. /**
  7.  * Description of MiseEnPaiementRechercheFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MiseEnPaiementRechercheFormAwareTrait
  12. {
  13. protected ?MiseEnPaiementRechercheForm $formPaiementMiseEnPaiementRecherche = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MiseEnPaiementRechercheForm $formPaiementMiseEnPaiementRecherche
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormPaiementMiseEnPaiementRecherche(?MiseEnPaiementRechercheForm $formPaiementMiseEnPaiementRecherche)
  23. {
  24. $this->formPaiementMiseEnPaiementRecherche = $formPaiementMiseEnPaiementRecherche;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormPaiementMiseEnPaiementRecherche(): ?MiseEnPaiementRechercheForm
  32. {
  33. if (!empty($this->formPaiementMiseEnPaiementRecherche)) {
  34. return $this->formPaiementMiseEnPaiementRecherche;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(MiseEnPaiementRechercheForm::class);
  38. }
  39. }
module/Paiement/src/Form/TauxFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form;
  4.  
  5.  
  6. /**
  7.  * Description of TauxFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TauxFormAwareTrait
  12. {
  13. protected ?TauxForm $formTaux = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TauxForm $formTaux
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormTaux(?TauxForm $formTaux)
  23. {
  24. $this->formTaux = $formTaux;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormTaux(): ?TauxForm
  32. {
  33. if (!empty($this->formTaux)) {
  34. return $this->formTaux;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(TauxForm::class);
  38. }
  39. }
module/Paiement/src/Form/TauxValeurFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form;
  4.  
  5.  
  6. /**
  7.  * Description of TauxValeurFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TauxValeurFormAwareTrait
  12. {
  13. protected ?TauxValeurForm $formTauxValeur = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TauxValeurForm $formTauxValeur
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormTauxValeur(?TauxValeurForm $formTauxValeur)
  23. {
  24. $this->formTauxValeur = $formTauxValeur;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormTauxValeur(): ?TauxValeurForm
  32. {
  33. if (!empty($this->formTauxValeur)) {
  34. return $this->formTauxValeur;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(TauxValeurForm::class);
  38. }
  39. }
module/Paiement/src/Form/TypeRessource/TypeRessourceSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Form\TypeRessource;
  4.  
  5.  
  6. /**
  7.  * Description of TypeRessourceSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeRessourceSaisieFormAwareTrait
  12. {
  13. protected ?TypeRessourceSaisieForm $formTypeRessourceTypeRessourceSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeRessourceSaisieForm $formTypeRessourceTypeRessourceSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormTypeRessourceTypeRessourceSaisie(?TypeRessourceSaisieForm $formTypeRessourceTypeRessourceSaisie)
  23. {
  24. $this->formTypeRessourceTypeRessourceSaisie = $formTypeRessourceTypeRessourceSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormTypeRessourceTypeRessourceSaisie(): ?TypeRessourceSaisieForm
  32. {
  33. if (!empty($this->formTypeRessourceTypeRessourceSaisie)) {
  34. return $this->formTypeRessourceTypeRessourceSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(TypeRessourceSaisieForm::class);
  38. }
  39. }
module/Paiement/src/Service/CcActiviteServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of CcActiviteServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CcActiviteServiceAwareTrait
  12. {
  13. protected ?CcActiviteService $serviceCcActivite = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CcActiviteService $serviceCcActivite
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceCcActivite(?CcActiviteService $serviceCcActivite)
  23. {
  24. $this->serviceCcActivite = $serviceCcActivite;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceCcActivite(): ?CcActiviteService
  32. {
  33. if (empty($this->serviceCcActivite)) {
  34. $this->serviceCcActivite = \Application::$container->get(CcActiviteService::class);
  35. }
  36.  
  37. return $this->serviceCcActivite;
  38. }
  39. }
module/Paiement/src/Service/CentreCoutServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of CentreCoutServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CentreCoutServiceAwareTrait
  12. {
  13. protected ?CentreCoutService $serviceCentreCout = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CentreCoutService $serviceCentreCout
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceCentreCout(?CentreCoutService $serviceCentreCout)
  23. {
  24. $this->serviceCentreCout = $serviceCentreCout;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceCentreCout(): ?CentreCoutService
  32. {
  33. if (empty($this->serviceCentreCout)) {
  34. $this->serviceCentreCout = \Application::$container->get(CentreCoutService::class);
  35. }
  36.  
  37. return $this->serviceCentreCout;
  38. }
  39. }
module/Paiement/src/Service/CentreCoutStructureServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of CentreCoutStructureServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CentreCoutStructureServiceAwareTrait
  12. {
  13. protected ?CentreCoutStructureService $serviceCentreCoutStructure = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CentreCoutStructureService $serviceCentreCoutStructure
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceCentreCoutStructure(?CentreCoutStructureService $serviceCentreCoutStructure)
  23. {
  24. $this->serviceCentreCoutStructure = $serviceCentreCoutStructure;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceCentreCoutStructure(): ?CentreCoutStructureService
  32. {
  33. if (empty($this->serviceCentreCoutStructure)) {
  34. $this->serviceCentreCoutStructure = \Application::$container->get(CentreCoutStructureService::class);
  35. }
  36.  
  37. return $this->serviceCentreCoutStructure;
  38. }
  39. }
module/Paiement/src/Service/DotationServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of DotationServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait DotationServiceAwareTrait
  12. {
  13. protected ?DotationService $serviceDotation = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param DotationService $serviceDotation
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceDotation(?DotationService $serviceDotation)
  23. {
  24. $this->serviceDotation = $serviceDotation;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceDotation(): ?DotationService
  32. {
  33. if (empty($this->serviceDotation)) {
  34. $this->serviceDotation = \Application::$container->get(DotationService::class);
  35. }
  36.  
  37. return $this->serviceDotation;
  38. }
  39. }
module/Paiement/src/Service/MiseEnPaiementIntervenantStructureServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of MiseEnPaiementIntervenantStructureServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MiseEnPaiementIntervenantStructureServiceAwareTrait
  12. {
  13. protected ?MiseEnPaiementIntervenantStructureService $serviceMiseEnPaiementIntervenantStructure = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MiseEnPaiementIntervenantStructureService $serviceMiseEnPaiementIntervenantStructure
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceMiseEnPaiementIntervenantStructure(?MiseEnPaiementIntervenantStructureService $serviceMiseEnPaiementIntervenantStructure)
  23. {
  24. $this->serviceMiseEnPaiementIntervenantStructure = $serviceMiseEnPaiementIntervenantStructure;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceMiseEnPaiementIntervenantStructure(): ?MiseEnPaiementIntervenantStructureService
  32. {
  33. if (empty($this->serviceMiseEnPaiementIntervenantStructure)) {
  34. $this->serviceMiseEnPaiementIntervenantStructure = \Application::$container->get(MiseEnPaiementIntervenantStructureService::class);
  35. }
  36.  
  37. return $this->serviceMiseEnPaiementIntervenantStructure;
  38. }
  39. }
module/Paiement/src/Service/MiseEnPaiementServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of MiseEnPaiementServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MiseEnPaiementServiceAwareTrait
  12. {
  13. protected ?MiseEnPaiementService $serviceMiseEnPaiement = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MiseEnPaiementService $serviceMiseEnPaiement
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceMiseEnPaiement(?MiseEnPaiementService $serviceMiseEnPaiement)
  23. {
  24. $this->serviceMiseEnPaiement = $serviceMiseEnPaiement;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceMiseEnPaiement(): ?MiseEnPaiementService
  32. {
  33. if (empty($this->serviceMiseEnPaiement)) {
  34. $this->serviceMiseEnPaiement = \Application::$container->get(MiseEnPaiementService::class);
  35. }
  36.  
  37. return $this->serviceMiseEnPaiement;
  38. }
  39. }
module/Paiement/src/Service/ModulateurServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of ModulateurServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ModulateurServiceAwareTrait
  12. {
  13. protected ?ModulateurService $serviceModulateur = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ModulateurService $serviceModulateur
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceModulateur(?ModulateurService $serviceModulateur)
  23. {
  24. $this->serviceModulateur = $serviceModulateur;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceModulateur(): ?ModulateurService
  32. {
  33. if (empty($this->serviceModulateur)) {
  34. $this->serviceModulateur = \Application::$container->get(ModulateurService::class);
  35. }
  36.  
  37. return $this->serviceModulateur;
  38. }
  39. }
module/Paiement/src/Service/MotifNonPaiementServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of MotifNonPaiementServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MotifNonPaiementServiceAwareTrait
  12. {
  13. protected ?MotifNonPaiementService $serviceMotifNonPaiement = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MotifNonPaiementService $serviceMotifNonPaiement
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceMotifNonPaiement(?MotifNonPaiementService $serviceMotifNonPaiement)
  23. {
  24. $this->serviceMotifNonPaiement = $serviceMotifNonPaiement;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceMotifNonPaiement(): ?MotifNonPaiementService
  32. {
  33. if (empty($this->serviceMotifNonPaiement)) {
  34. $this->serviceMotifNonPaiement = \Application::$container->get(MotifNonPaiementService::class);
  35. }
  36.  
  37. return $this->serviceMotifNonPaiement;
  38. }
  39. }
module/Paiement/src/Service/ServiceAPayerServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of ServiceAPayerServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ServiceAPayerServiceAwareTrait
  12. {
  13. protected ?ServiceAPayerService $serviceServiceAPayer = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ServiceAPayerService $serviceServiceAPayer
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceServiceAPayer(?ServiceAPayerService $serviceServiceAPayer)
  23. {
  24. $this->serviceServiceAPayer = $serviceServiceAPayer;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceServiceAPayer(): ?ServiceAPayerService
  32. {
  33. if (empty($this->serviceServiceAPayer)) {
  34. $this->serviceServiceAPayer = \Application::$container->get(ServiceAPayerService::class);
  35. }
  36.  
  37. return $this->serviceServiceAPayer;
  38. }
  39. }
module/Paiement/src/Service/TauxRemuServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of TauxRemuServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TauxRemuServiceAwareTrait
  12. {
  13. protected ?TauxRemuService $serviceTauxRemu = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TauxRemuService $serviceTauxRemu
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceTauxRemu(?TauxRemuService $serviceTauxRemu)
  23. {
  24. $this->serviceTauxRemu = $serviceTauxRemu;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceTauxRemu(): ?TauxRemuService
  32. {
  33. if (empty($this->serviceTauxRemu)) {
  34. $this->serviceTauxRemu = \Application::$container->get(TauxRemuService::class);
  35. }
  36.  
  37. return $this->serviceTauxRemu;
  38. }
  39. }
module/Paiement/src/Service/TypeModulateurServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of TypeModulateurServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeModulateurServiceAwareTrait
  12. {
  13. protected ?TypeModulateurService $serviceTypeModulateur = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeModulateurService $serviceTypeModulateur
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceTypeModulateur(?TypeModulateurService $serviceTypeModulateur)
  23. {
  24. $this->serviceTypeModulateur = $serviceTypeModulateur;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceTypeModulateur(): ?TypeModulateurService
  32. {
  33. if (empty($this->serviceTypeModulateur)) {
  34. $this->serviceTypeModulateur = \Application::$container->get(TypeModulateurService::class);
  35. }
  36.  
  37. return $this->serviceTypeModulateur;
  38. }
  39. }
module/Paiement/src/Service/TypeModulateurStructureServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of TypeModulateurStructureServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeModulateurStructureServiceAwareTrait
  12. {
  13. protected ?TypeModulateurStructureService $serviceTypeModulateurStructure = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeModulateurStructureService $serviceTypeModulateurStructure
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceTypeModulateurStructure(?TypeModulateurStructureService $serviceTypeModulateurStructure)
  23. {
  24. $this->serviceTypeModulateurStructure = $serviceTypeModulateurStructure;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceTypeModulateurStructure(): ?TypeModulateurStructureService
  32. {
  33. if (empty($this->serviceTypeModulateurStructure)) {
  34. $this->serviceTypeModulateurStructure = \Application::$container->get(TypeModulateurStructureService::class);
  35. }
  36.  
  37. return $this->serviceTypeModulateurStructure;
  38. }
  39. }
module/Paiement/src/Service/TypeRessourceServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Service;
  4.  
  5.  
  6. /**
  7.  * Description of TypeRessourceServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeRessourceServiceAwareTrait
  12. {
  13. protected ?TypeRessourceService $serviceTypeRessource = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeRessourceService $serviceTypeRessource
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceTypeRessource(?TypeRessourceService $serviceTypeRessource)
  23. {
  24. $this->serviceTypeRessource = $serviceTypeRessource;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceTypeRessource(): ?TypeRessourceService
  32. {
  33. if (empty($this->serviceTypeRessource)) {
  34. $this->serviceTypeRessource = \Application::$container->get(TypeRessourceService::class);
  35. }
  36.  
  37. return $this->serviceTypeRessource;
  38. }
  39. }
module/Paiement/src/Tbl/Process/PaiementProcessAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Tbl\Process;
  4.  
  5.  
  6. /**
  7.  * Description of PaiementProcessAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait PaiementProcessAwareTrait
  12. {
  13. protected ?PaiementProcess $tblProcessPaiementProcess = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param PaiementProcess $tblProcessPaiementProcess
  19.   *
  20.   * @return self
  21.   */
  22. public function setTblProcessPaiementProcess( ?PaiementProcess $tblProcessPaiementProcess )
  23. {
  24. $this->tblProcessPaiementProcess = $tblProcessPaiementProcess;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getTblProcessPaiementProcess(): ?PaiementProcess
  32. {
  33. return $this->tblProcessPaiementProcess;
  34. }
  35. }
module/Paiement/src/Entity/Db/Traits/ServiceAPayerInterfaceAwareTrait.php
  1. <?php
  2.  
  3. namespace Paiement\Entity\Db\Traits;
  4.  
  5. use Paiement\Entity\Db\ServiceAPayerInterface;
  6.  
  7. /**
  8.  * Description of ServiceAPayerInterfaceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ServiceAPayerInterfaceAwareTrait
  13. {
  14. protected ?ServiceAPayerInterface $serviceAPayerInterface = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ServiceAPayerInterface $serviceAPayerInterface
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceAPayerInterface( ?ServiceAPayerInterface $serviceAPayerInterface )
  24. {
  25. $this->serviceAPayerInterface = $serviceAPayerInterface;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceAPayerInterface(): ?ServiceAPayerInterface
  33. {
  34. return $this->serviceAPayerInterface;
  35. }
  36. }
module/PieceJointe/src/Entity/Db/Traits/PieceJointeAwareTrait.php
  1. <?php
  2.  
  3. namespace PieceJointe\Entity\Db\Traits;
  4.  
  5. use PieceJointe\Entity\Db\PieceJointe;
  6.  
  7. /**
  8.  * Description of PieceJointeAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait PieceJointeAwareTrait
  13. {
  14. protected ?PieceJointe $pieceJointe = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param PieceJointe $pieceJointe
  20.   *
  21.   * @return self
  22.   */
  23. public function setPieceJointe( ?PieceJointe $pieceJointe )
  24. {
  25. $this->pieceJointe = $pieceJointe;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getPieceJointe(): ?PieceJointe
  33. {
  34. return $this->pieceJointe;
  35. }
  36. }
module/PieceJointe/src/Entity/Db/Traits/TblPieceJointeAwareTrait.php
  1. <?php
  2.  
  3. namespace PieceJointe\Entity\Db\Traits;
  4.  
  5. use PieceJointe\Entity\Db\TblPieceJointe;
  6.  
  7. /**
  8.  * Description of TblPieceJointeAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TblPieceJointeAwareTrait
  13. {
  14. protected ?TblPieceJointe $tblPieceJointe = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TblPieceJointe $tblPieceJointe
  20.   *
  21.   * @return self
  22.   */
  23. public function setTblPieceJointe( ?TblPieceJointe $tblPieceJointe )
  24. {
  25. $this->tblPieceJointe = $tblPieceJointe;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTblPieceJointe(): ?TblPieceJointe
  33. {
  34. return $this->tblPieceJointe;
  35. }
  36. }
module/PieceJointe/src/Entity/Db/Traits/TblPieceJointeDemandeAwareTrait.php
  1. <?php
  2.  
  3. namespace PieceJointe\Entity\Db\Traits;
  4.  
  5. use PieceJointe\Entity\Db\TblPieceJointeDemande;
  6.  
  7. /**
  8.  * Description of TblPieceJointeDemandeAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TblPieceJointeDemandeAwareTrait
  13. {
  14. protected ?TblPieceJointeDemande $tblPieceJointeDemande = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TblPieceJointeDemande $tblPieceJointeDemande
  20.   *
  21.   * @return self
  22.   */
  23. public function setTblPieceJointeDemande( ?TblPieceJointeDemande $tblPieceJointeDemande )
  24. {
  25. $this->tblPieceJointeDemande = $tblPieceJointeDemande;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTblPieceJointeDemande(): ?TblPieceJointeDemande
  33. {
  34. return $this->tblPieceJointeDemande;
  35. }
  36. }
module/PieceJointe/src/Entity/Db/Traits/TblPieceJointeFournieAwareTrait.php
  1. <?php
  2.  
  3. namespace PieceJointe\Entity\Db\Traits;
  4.  
  5. use PieceJointe\Entity\Db\TblPieceJointeFournie;
  6.  
  7. /**
  8.  * Description of TblPieceJointeFournieAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TblPieceJointeFournieAwareTrait
  13. {
  14. protected ?TblPieceJointeFournie $tblPieceJointeFournie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TblPieceJointeFournie $tblPieceJointeFournie
  20.   *
  21.   * @return self
  22.   */
  23. public function setTblPieceJointeFournie( ?TblPieceJointeFournie $tblPieceJointeFournie )
  24. {
  25. $this->tblPieceJointeFournie = $tblPieceJointeFournie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTblPieceJointeFournie(): ?TblPieceJointeFournie
  33. {
  34. return $this->tblPieceJointeFournie;
  35. }
  36. }
module/PieceJointe/src/Entity/Db/Traits/TypePieceJointeAwareTrait.php
  1. <?php
  2.  
  3. namespace PieceJointe\Entity\Db\Traits;
  4.  
  5. use PieceJointe\Entity\Db\TypePieceJointe;
  6.  
  7. /**
  8.  * Description of TypePieceJointeAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypePieceJointeAwareTrait
  13. {
  14. protected ?TypePieceJointe $typePieceJointe = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypePieceJointe $typePieceJointe
  20.   *
  21.   * @return self
  22.   */
  23. public function setTypePieceJointe( ?TypePieceJointe $typePieceJointe )
  24. {
  25. $this->typePieceJointe = $typePieceJointe;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTypePieceJointe(): ?TypePieceJointe
  33. {
  34. return $this->typePieceJointe;
  35. }
  36. }
module/PieceJointe/src/Entity/Db/Traits/TypePieceJointeStatutAwareTrait.php
  1. <?php
  2.  
  3. namespace PieceJointe\Entity\Db\Traits;
  4.  
  5. use PieceJointe\Entity\Db\TypePieceJointeStatut;
  6.  
  7. /**
  8.  * Description of TypePieceJointeStatutAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypePieceJointeStatutAwareTrait
  13. {
  14. protected ?TypePieceJointeStatut $typePieceJointeStatut = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypePieceJointeStatut $typePieceJointeStatut
  20.   *
  21.   * @return self
  22.   */
  23. public function setTypePieceJointeStatut( ?TypePieceJointeStatut $typePieceJointeStatut )
  24. {
  25. $this->typePieceJointeStatut = $typePieceJointeStatut;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTypePieceJointeStatut(): ?TypePieceJointeStatut
  33. {
  34. return $this->typePieceJointeStatut;
  35. }
  36. }
module/PieceJointe/src/Form/Traits/ModifierTypePieceJointeStatutFormAwareTrait.php
  1. <?php
  2.  
  3. namespace PieceJointe\Form\Traits;
  4.  
  5. use PieceJointe\Form\ModifierTypePieceJointeStatutForm;
  6.  
  7. /**
  8.  * Description of ModifierTypePieceJointeStatutFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait ModifierTypePieceJointeStatutFormAwareTrait
  13. {
  14. protected ?ModifierTypePieceJointeStatutForm $formModifierTypePieceJointeStatut = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param ModifierTypePieceJointeStatutForm $formModifierTypePieceJointeStatut
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormModifierTypePieceJointeStatut(?ModifierTypePieceJointeStatutForm $formModifierTypePieceJointeStatut)
  24. {
  25. $this->formModifierTypePieceJointeStatut = $formModifierTypePieceJointeStatut;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormModifierTypePieceJointeStatut(): ?ModifierTypePieceJointeStatutForm
  33. {
  34. if (!empty($this->formModifierTypePieceJointeStatut)) {
  35. return $this->formModifierTypePieceJointeStatut;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(ModifierTypePieceJointeStatutForm::class);
  39. }
  40. }
module/PieceJointe/src/Form/Traits/TypePieceJointeSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace PieceJointe\Form\Traits;
  4.  
  5. use PieceJointe\Form\TypePieceJointeSaisieForm;
  6.  
  7. /**
  8.  * Description of TypePieceJointeSaisieFormAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypePieceJointeSaisieFormAwareTrait
  13. {
  14. protected ?TypePieceJointeSaisieForm $formTypePieceJointeSaisie = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypePieceJointeSaisieForm $formTypePieceJointeSaisie
  20.   *
  21.   * @return self
  22.   */
  23. public function setFormTypePieceJointeSaisie(?TypePieceJointeSaisieForm $formTypePieceJointeSaisie)
  24. {
  25. $this->formTypePieceJointeSaisie = $formTypePieceJointeSaisie;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getFormTypePieceJointeSaisie(): ?TypePieceJointeSaisieForm
  33. {
  34. if (!empty($this->formTypePieceJointeSaisie)) {
  35. return $this->formTypePieceJointeSaisie;
  36. }
  37.  
  38. return \Application::$container->get('FormElementManager')->get(TypePieceJointeSaisieForm::class);
  39. }
  40. }
module/PieceJointe/src/Service/Traits/PieceJointeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace PieceJointe\Service\Traits;
  4.  
  5. use PieceJointe\Service\PieceJointeService;
  6.  
  7. /**
  8.  * Description of PieceJointeServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait PieceJointeServiceAwareTrait
  13. {
  14. protected ?PieceJointeService $servicePieceJointe = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param PieceJointeService $servicePieceJointe
  20.   *
  21.   * @return self
  22.   */
  23. public function setServicePieceJointe(?PieceJointeService $servicePieceJointe)
  24. {
  25. $this->servicePieceJointe = $servicePieceJointe;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServicePieceJointe(): ?PieceJointeService
  33. {
  34. if (empty($this->servicePieceJointe)) {
  35. $this->servicePieceJointe = \Application::$container->get(PieceJointeService::class);
  36. }
  37.  
  38. return $this->servicePieceJointe;
  39. }
  40. }
module/PieceJointe/src/Service/Traits/TblPieceJointeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace PieceJointe\Service\Traits;
  4.  
  5. use PieceJointe\Service\TblPieceJointeService;
  6.  
  7. /**
  8.  * Description of TblPieceJointeServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TblPieceJointeServiceAwareTrait
  13. {
  14. protected ?TblPieceJointeService $serviceTblPieceJointe = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TblPieceJointeService $serviceTblPieceJointe
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceTblPieceJointe(?TblPieceJointeService $serviceTblPieceJointe)
  24. {
  25. $this->serviceTblPieceJointe = $serviceTblPieceJointe;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceTblPieceJointe(): ?TblPieceJointeService
  33. {
  34. if (empty($this->serviceTblPieceJointe)) {
  35. $this->serviceTblPieceJointe = \Application::$container->get(TblPieceJointeService::class);
  36. }
  37.  
  38. return $this->serviceTblPieceJointe;
  39. }
  40. }
module/PieceJointe/src/Service/Traits/TypePieceJointeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace PieceJointe\Service\Traits;
  4.  
  5. use PieceJointe\Service\TypePieceJointeService;
  6.  
  7. /**
  8.  * Description of TypePieceJointeServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypePieceJointeServiceAwareTrait
  13. {
  14. protected ?TypePieceJointeService $serviceTypePieceJointe = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypePieceJointeService $serviceTypePieceJointe
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceTypePieceJointe(?TypePieceJointeService $serviceTypePieceJointe)
  24. {
  25. $this->serviceTypePieceJointe = $serviceTypePieceJointe;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceTypePieceJointe(): ?TypePieceJointeService
  33. {
  34. if (empty($this->serviceTypePieceJointe)) {
  35. $this->serviceTypePieceJointe = \Application::$container->get(TypePieceJointeService::class);
  36. }
  37.  
  38. return $this->serviceTypePieceJointe;
  39. }
  40. }
module/PieceJointe/src/Service/Traits/TypePieceJointeStatutServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace PieceJointe\Service\Traits;
  4.  
  5. use PieceJointe\Service\TypePieceJointeStatutService;
  6.  
  7. /**
  8.  * Description of TypePieceJointeStatutServiceAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TypePieceJointeStatutServiceAwareTrait
  13. {
  14. protected ?TypePieceJointeStatutService $serviceTypePieceJointeStatut = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param TypePieceJointeStatutService $serviceTypePieceJointeStatut
  20.   *
  21.   * @return self
  22.   */
  23. public function setServiceTypePieceJointeStatut(?TypePieceJointeStatutService $serviceTypePieceJointeStatut)
  24. {
  25. $this->serviceTypePieceJointeStatut = $serviceTypePieceJointeStatut;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getServiceTypePieceJointeStatut(): ?TypePieceJointeStatutService
  33. {
  34. if (empty($this->serviceTypePieceJointeStatut)) {
  35. $this->serviceTypePieceJointeStatut = \Application::$container->get(TypePieceJointeStatutService::class);
  36. }
  37.  
  38. return $this->serviceTypePieceJointeStatut;
  39. }
  40. }
module/Plafond/src/Entity/Db/PlafondAwareTrait.php
  1. <?php
  2.  
  3. namespace Plafond\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of PlafondAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait PlafondAwareTrait
  12. {
  13. protected ?Plafond $plafond = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param Plafond $plafond
  19.   *
  20.   * @return self
  21.   */
  22. public function setPlafond( ?Plafond $plafond )
  23. {
  24. $this->plafond = $plafond;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getPlafond(): ?Plafond
  32. {
  33. return $this->plafond;
  34. }
  35. }
module/Plafond/src/Entity/Db/PlafondEtatAwareTrait.php
  1. <?php
  2.  
  3. namespace Plafond\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of PlafondEtatAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait PlafondEtatAwareTrait
  12. {
  13. protected ?PlafondEtat $plafondEtat = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param PlafondEtat $plafondEtat
  19.   *
  20.   * @return self
  21.   */
  22. public function setPlafondEtat( ?PlafondEtat $plafondEtat )
  23. {
  24. $this->plafondEtat = $plafondEtat;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getPlafondEtat(): ?PlafondEtat
  32. {
  33. return $this->plafondEtat;
  34. }
  35. }
module/Plafond/src/Entity/Db/PlafondPerimetreAwareTrait.php
  1. <?php
  2.  
  3. namespace Plafond\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of PlafondPerimetreAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait PlafondPerimetreAwareTrait
  12. {
  13. protected ?PlafondPerimetre $plafondPerimetre = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param PlafondPerimetre $plafondPerimetre
  19.   *
  20.   * @return self
  21.   */
  22. public function setPlafondPerimetre( ?PlafondPerimetre $plafondPerimetre )
  23. {
  24. $this->plafondPerimetre = $plafondPerimetre;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getPlafondPerimetre(): ?PlafondPerimetre
  32. {
  33. return $this->plafondPerimetre;
  34. }
  35. }
module/Plafond/src/Form/PlafondConfigFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Plafond\Form;
  4.  
  5.  
  6. /**
  7.  * Description of PlafondConfigFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait PlafondConfigFormAwareTrait
  12. {
  13. protected ?PlafondConfigForm $formPlafondConfig = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param PlafondConfigForm $formPlafondConfig
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormPlafondConfig(?PlafondConfigForm $formPlafondConfig)
  23. {
  24. $this->formPlafondConfig = $formPlafondConfig;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormPlafondConfig(): ?PlafondConfigForm
  32. {
  33. if (!empty($this->formPlafondConfig)) {
  34. return $this->formPlafondConfig;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(PlafondConfigForm::class);
  38. }
  39. }
module/Plafond/src/Form/PlafondFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Plafond\Form;
  4.  
  5.  
  6. /**
  7.  * Description of PlafondFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait PlafondFormAwareTrait
  12. {
  13. protected ?PlafondForm $formPlafond = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param PlafondForm $formPlafond
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormPlafond(?PlafondForm $formPlafond)
  23. {
  24. $this->formPlafond = $formPlafond;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormPlafond(): ?PlafondForm
  32. {
  33. if (!empty($this->formPlafond)) {
  34. return $this->formPlafond;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(PlafondForm::class);
  38. }
  39. }
module/Plafond/src/Processus/PlafondProcessusAwareTrait.php
  1. <?php
  2.  
  3. namespace Plafond\Processus;
  4.  
  5.  
  6. /**
  7.  * Description of PlafondProcessusAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait PlafondProcessusAwareTrait
  12. {
  13. protected ?PlafondProcessus $processusPlafond = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param PlafondProcessus $processusPlafond
  19.   *
  20.   * @return self
  21.   */
  22. public function setProcessusPlafond(?PlafondProcessus $processusPlafond)
  23. {
  24. $this->processusPlafond = $processusPlafond;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getProcessusPlafond(): ?PlafondProcessus
  32. {
  33. if (empty($this->processusPlafond)) {
  34. $this->processusPlafond = \Application::$container->get(PlafondProcessus::class);
  35. }
  36.  
  37. return $this->processusPlafond;
  38. }
  39. }
module/Plafond/src/Service/IndicateurServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Plafond\Service;
  4.  
  5.  
  6. /**
  7.  * Description of IndicateurServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait IndicateurServiceAwareTrait
  12. {
  13. protected ?IndicateurService $serviceIndicateur = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param IndicateurService $serviceIndicateur
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceIndicateur(?IndicateurService $serviceIndicateur)
  23. {
  24. $this->serviceIndicateur = $serviceIndicateur;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceIndicateur(): ?IndicateurService
  32. {
  33. if (empty($this->serviceIndicateur)) {
  34. $this->serviceIndicateur = \Application::$container->get(IndicateurService::class);
  35. }
  36.  
  37. return $this->serviceIndicateur;
  38. }
  39. }
module/Plafond/src/Service/PlafondServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Plafond\Service;
  4.  
  5.  
  6. /**
  7.  * Description of PlafondServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait PlafondServiceAwareTrait
  12. {
  13. protected ?PlafondService $servicePlafond = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param PlafondService $servicePlafond
  19.   *
  20.   * @return self
  21.   */
  22. public function setServicePlafond(?PlafondService $servicePlafond)
  23. {
  24. $this->servicePlafond = $servicePlafond;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServicePlafond(): ?PlafondService
  32. {
  33. if (empty($this->servicePlafond)) {
  34. $this->servicePlafond = \Application::$container->get(PlafondService::class);
  35. }
  36.  
  37. return $this->servicePlafond;
  38. }
  39. }
module/Referentiel/src/Entity/Db/FonctionReferentielAwareTrait.php
  1. <?php
  2.  
  3. namespace Referentiel\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of FonctionReferentielAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait FonctionReferentielAwareTrait
  12. {
  13. protected ?FonctionReferentiel $fonctionReferentiel = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param FonctionReferentiel $fonctionReferentiel
  19.   *
  20.   * @return self
  21.   */
  22. public function setFonctionReferentiel( ?FonctionReferentiel $fonctionReferentiel )
  23. {
  24. $this->fonctionReferentiel = $fonctionReferentiel;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFonctionReferentiel(): ?FonctionReferentiel
  32. {
  33. return $this->fonctionReferentiel;
  34. }
  35. }
module/Referentiel/src/Entity/Db/ServiceReferentielAwareTrait.php
  1. <?php
  2.  
  3. namespace Referentiel\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of ServiceReferentielAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ServiceReferentielAwareTrait
  12. {
  13. protected ?ServiceReferentiel $serviceReferentiel = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ServiceReferentiel $serviceReferentiel
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceReferentiel( ?ServiceReferentiel $serviceReferentiel )
  23. {
  24. $this->serviceReferentiel = $serviceReferentiel;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceReferentiel(): ?ServiceReferentiel
  32. {
  33. return $this->serviceReferentiel;
  34. }
  35. }
module/Referentiel/src/Entity/Db/TblValidationReferentielAwareTrait.php
  1. <?php
  2.  
  3. namespace Referentiel\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of TblValidationReferentielAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TblValidationReferentielAwareTrait
  12. {
  13. protected ?TblValidationReferentiel $tblValidationReferentiel = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TblValidationReferentiel $tblValidationReferentiel
  19.   *
  20.   * @return self
  21.   */
  22. public function setTblValidationReferentiel( ?TblValidationReferentiel $tblValidationReferentiel )
  23. {
  24. $this->tblValidationReferentiel = $tblValidationReferentiel;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getTblValidationReferentiel(): ?TblValidationReferentiel
  32. {
  33. return $this->tblValidationReferentiel;
  34. }
  35. }
module/Referentiel/src/Entity/Db/VolumeHoraireReferentielAwareTrait.php
  1. <?php
  2.  
  3. namespace Referentiel\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of VolumeHoraireReferentielAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait VolumeHoraireReferentielAwareTrait
  12. {
  13. protected ?VolumeHoraireReferentiel $volumeHoraireReferentiel = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param VolumeHoraireReferentiel $volumeHoraireReferentiel
  19.   *
  20.   * @return self
  21.   */
  22. public function setVolumeHoraireReferentiel( ?VolumeHoraireReferentiel $volumeHoraireReferentiel )
  23. {
  24. $this->volumeHoraireReferentiel = $volumeHoraireReferentiel;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getVolumeHoraireReferentiel(): ?VolumeHoraireReferentiel
  32. {
  33. return $this->volumeHoraireReferentiel;
  34. }
  35. }
module/Referentiel/src/Form/FonctionReferentielSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Referentiel\Form;
  4.  
  5.  
  6. /**
  7.  * Description of FonctionReferentielSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait FonctionReferentielSaisieFormAwareTrait
  12. {
  13. protected ?FonctionReferentielSaisieForm $formFonctionReferentielSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param FonctionReferentielSaisieForm $formFonctionReferentielSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormFonctionReferentielSaisie(?FonctionReferentielSaisieForm $formFonctionReferentielSaisie)
  23. {
  24. $this->formFonctionReferentielSaisie = $formFonctionReferentielSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormFonctionReferentielSaisie(): ?FonctionReferentielSaisieForm
  32. {
  33. if (!empty($this->formFonctionReferentielSaisie)) {
  34. return $this->formFonctionReferentielSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(FonctionReferentielSaisieForm::class);
  38. }
  39. }
module/Referentiel/src/Form/SaisieAwareTrait.php
  1. <?php
  2.  
  3. namespace Referentiel\Form;
  4.  
  5.  
  6. /**
  7.  * Description of SaisieAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait SaisieAwareTrait
  12. {
  13. protected ?Saisie $formSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param Saisie $formSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormSaisie(?Saisie $formSaisie)
  23. {
  24. $this->formSaisie = $formSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormSaisie(): ?Saisie
  32. {
  33. if (!empty($this->formSaisie)) {
  34. return $this->formSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(Saisie::class);
  38. }
  39. }
module/Referentiel/src/Form/SaisieFieldsetAwareTrait.php
  1. <?php
  2.  
  3. namespace Referentiel\Form;
  4.  
  5.  
  6. /**
  7.  * Description of SaisieFieldsetAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait SaisieFieldsetAwareTrait
  12. {
  13. protected ?SaisieFieldset $fieldsetSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param SaisieFieldset $fieldsetSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFieldsetSaisie(?SaisieFieldset $fieldsetSaisie)
  23. {
  24. $this->fieldsetSaisie = $fieldsetSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFieldsetSaisie(): ?SaisieFieldset
  32. {
  33. if (!empty($this->fieldsetSaisie)) {
  34. return $this->fieldsetSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(SaisieFieldset::class);
  38. }
  39. }
module/Referentiel/src/Processus/ServiceReferentielProcessusAwareTrait.php
  1. <?php
  2.  
  3. namespace Referentiel\Processus;
  4.  
  5.  
  6. /**
  7.  * Description of ServiceReferentielProcessusAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ServiceReferentielProcessusAwareTrait
  12. {
  13. protected ?ServiceReferentielProcessus $processusServiceReferentiel = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ServiceReferentielProcessus $processusServiceReferentiel
  19.   *
  20.   * @return self
  21.   */
  22. public function setProcessusServiceReferentiel(?ServiceReferentielProcessus $processusServiceReferentiel)
  23. {
  24. $this->processusServiceReferentiel = $processusServiceReferentiel;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getProcessusServiceReferentiel(): ?ServiceReferentielProcessus
  32. {
  33. if (empty($this->processusServiceReferentiel)) {
  34. $this->processusServiceReferentiel = \Application::$container->get(ServiceReferentielProcessus::class);
  35. }
  36.  
  37. return $this->processusServiceReferentiel;
  38. }
  39. }
module/Referentiel/src/Processus/ValidationReferentielProcessusAwareTrait.php
  1. <?php
  2.  
  3. namespace Referentiel\Processus;
  4.  
  5.  
  6. /**
  7.  * Description of ValidationReferentielProcessusAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ValidationReferentielProcessusAwareTrait
  12. {
  13. protected ?ValidationReferentielProcessus $processusValidationReferentiel = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ValidationReferentielProcessus $processusValidationReferentiel
  19.   *
  20.   * @return self
  21.   */
  22. public function setProcessusValidationReferentiel(?ValidationReferentielProcessus $processusValidationReferentiel)
  23. {
  24. $this->processusValidationReferentiel = $processusValidationReferentiel;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getProcessusValidationReferentiel(): ?ValidationReferentielProcessus
  32. {
  33. if (empty($this->processusValidationReferentiel)) {
  34. $this->processusValidationReferentiel = \Application::$container->get(ValidationReferentielProcessus::class);
  35. }
  36.  
  37. return $this->processusValidationReferentiel;
  38. }
  39. }
module/Referentiel/src/Service/FonctionReferentielServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Referentiel\Service;
  4.  
  5.  
  6. /**
  7.  * Description of FonctionReferentielServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait FonctionReferentielServiceAwareTrait
  12. {
  13. protected ?FonctionReferentielService $serviceFonctionReferentiel = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param FonctionReferentielService $serviceFonctionReferentiel
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceFonctionReferentiel(?FonctionReferentielService $serviceFonctionReferentiel)
  23. {
  24. $this->serviceFonctionReferentiel = $serviceFonctionReferentiel;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceFonctionReferentiel(): ?FonctionReferentielService
  32. {
  33. if (empty($this->serviceFonctionReferentiel)) {
  34. $this->serviceFonctionReferentiel = \Application::$container->get(FonctionReferentielService::class);
  35. }
  36.  
  37. return $this->serviceFonctionReferentiel;
  38. }
  39. }
module/Referentiel/src/Service/ServiceReferentielServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Referentiel\Service;
  4.  
  5.  
  6. /**
  7.  * Description of ServiceReferentielServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ServiceReferentielServiceAwareTrait
  12. {
  13. protected ?ServiceReferentielService $serviceServiceReferentiel = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ServiceReferentielService $serviceServiceReferentiel
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceServiceReferentiel(?ServiceReferentielService $serviceServiceReferentiel)
  23. {
  24. $this->serviceServiceReferentiel = $serviceServiceReferentiel;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceServiceReferentiel(): ?ServiceReferentielService
  32. {
  33. if (empty($this->serviceServiceReferentiel)) {
  34. $this->serviceServiceReferentiel = \Application::$container->get(ServiceReferentielService::class);
  35. }
  36.  
  37. return $this->serviceServiceReferentiel;
  38. }
  39. }
module/Referentiel/src/Service/VolumeHoraireReferentielServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Referentiel\Service;
  4.  
  5.  
  6. /**
  7.  * Description of VolumeHoraireReferentielServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait VolumeHoraireReferentielServiceAwareTrait
  12. {
  13. protected ?VolumeHoraireReferentielService $serviceVolumeHoraireReferentiel = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param VolumeHoraireReferentielService $serviceVolumeHoraireReferentiel
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceVolumeHoraireReferentiel(?VolumeHoraireReferentielService $serviceVolumeHoraireReferentiel)
  23. {
  24. $this->serviceVolumeHoraireReferentiel = $serviceVolumeHoraireReferentiel;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceVolumeHoraireReferentiel(): ?VolumeHoraireReferentielService
  32. {
  33. if (empty($this->serviceVolumeHoraireReferentiel)) {
  34. $this->serviceVolumeHoraireReferentiel = \Application::$container->get(VolumeHoraireReferentielService::class);
  35. }
  36.  
  37. return $this->serviceVolumeHoraireReferentiel;
  38. }
  39. }
module/Service/src/Service/Assertion/ClotureAssertionAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Assertion;
  4.  
  5.  
  6. /**
  7.  * Description of ClotureAssertionAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ClotureAssertionAwareTrait
  12. {
  13. protected ?ClotureAssertion $assertionCloture = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ClotureAssertion $assertionCloture
  19.   *
  20.   * @return self
  21.   */
  22. public function setAssertionCloture( ?ClotureAssertion $assertionCloture )
  23. {
  24. $this->assertionCloture = $assertionCloture;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getAssertionCloture(): ?ClotureAssertion
  32. {
  33. return $this->assertionCloture;
  34. }
  35. }
module/Service/src/Service/Assertion/ServiceAssertionAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Assertion;
  4.  
  5.  
  6. /**
  7.  * Description of ServiceAssertionAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ServiceAssertionAwareTrait
  12. {
  13. protected ?ServiceAssertion $assertionService = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ServiceAssertion $assertionService
  19.   *
  20.   * @return self
  21.   */
  22. public function setAssertionService( ?ServiceAssertion $assertionService )
  23. {
  24. $this->assertionService = $assertionService;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getAssertionService(): ?ServiceAssertion
  32. {
  33. return $this->assertionService;
  34. }
  35. }
module/Service/src/Service/Entity/Db/CampagneSaisieAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of CampagneSaisieAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CampagneSaisieAwareTrait
  12. {
  13. protected ?CampagneSaisie $campagneSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CampagneSaisie $campagneSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setCampagneSaisie( ?CampagneSaisie $campagneSaisie )
  23. {
  24. $this->campagneSaisie = $campagneSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getCampagneSaisie(): ?CampagneSaisie
  32. {
  33. return $this->campagneSaisie;
  34. }
  35. }
module/Service/src/Service/Entity/Db/EtatVolumeHoraireAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of EtatVolumeHoraireAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait EtatVolumeHoraireAwareTrait
  12. {
  13. protected ?EtatVolumeHoraire $etatVolumeHoraire = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param EtatVolumeHoraire $etatVolumeHoraire
  19.   *
  20.   * @return self
  21.   */
  22. public function setEtatVolumeHoraire( ?EtatVolumeHoraire $etatVolumeHoraire )
  23. {
  24. $this->etatVolumeHoraire = $etatVolumeHoraire;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getEtatVolumeHoraire(): ?EtatVolumeHoraire
  32. {
  33. return $this->etatVolumeHoraire;
  34. }
  35. }
module/Service/src/Service/Entity/Db/HistoIntervenantServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of HistoIntervenantServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait HistoIntervenantServiceAwareTrait
  12. {
  13. protected ?HistoIntervenantService $histoIntervenantService = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param HistoIntervenantService $histoIntervenantService
  19.   *
  20.   * @return self
  21.   */
  22. public function setHistoIntervenantService( ?HistoIntervenantService $histoIntervenantService )
  23. {
  24. $this->histoIntervenantService = $histoIntervenantService;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getHistoIntervenantService(): ?HistoIntervenantService
  32. {
  33. return $this->histoIntervenantService;
  34. }
  35. }
module/Service/src/Service/Entity/Db/ModificationServiceDuAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of ModificationServiceDuAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ModificationServiceDuAwareTrait
  12. {
  13. protected ?ModificationServiceDu $modificationServiceDu = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ModificationServiceDu $modificationServiceDu
  19.   *
  20.   * @return self
  21.   */
  22. public function setModificationServiceDu( ?ModificationServiceDu $modificationServiceDu )
  23. {
  24. $this->modificationServiceDu = $modificationServiceDu;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getModificationServiceDu(): ?ModificationServiceDu
  32. {
  33. return $this->modificationServiceDu;
  34. }
  35. }
module/Service/src/Service/Entity/Db/MotifModificationServiceDuAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of MotifModificationServiceDuAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MotifModificationServiceDuAwareTrait
  12. {
  13. protected ?MotifModificationServiceDu $motifModificationServiceDu = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MotifModificationServiceDu $motifModificationServiceDu
  19.   *
  20.   * @return self
  21.   */
  22. public function setMotifModificationServiceDu( ?MotifModificationServiceDu $motifModificationServiceDu )
  23. {
  24. $this->motifModificationServiceDu = $motifModificationServiceDu;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getMotifModificationServiceDu(): ?MotifModificationServiceDu
  32. {
  33. return $this->motifModificationServiceDu;
  34. }
  35. }
module/Service/src/Service/Entity/Db/RegleStructureValidationAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of RegleStructureValidationAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait RegleStructureValidationAwareTrait
  12. {
  13. protected ?RegleStructureValidation $regleStructureValidation = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param RegleStructureValidation $regleStructureValidation
  19.   *
  20.   * @return self
  21.   */
  22. public function setRegleStructureValidation( ?RegleStructureValidation $regleStructureValidation )
  23. {
  24. $this->regleStructureValidation = $regleStructureValidation;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getRegleStructureValidation(): ?RegleStructureValidation
  32. {
  33. return $this->regleStructureValidation;
  34. }
  35. }
module/Service/src/Service/Entity/Db/TblClotureRealiseAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of TblClotureRealiseAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TblClotureRealiseAwareTrait
  12. {
  13. protected ?TblClotureRealise $tblClotureRealise = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TblClotureRealise $tblClotureRealise
  19.   *
  20.   * @return self
  21.   */
  22. public function setTblClotureRealise( ?TblClotureRealise $tblClotureRealise )
  23. {
  24. $this->tblClotureRealise = $tblClotureRealise;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getTblClotureRealise(): ?TblClotureRealise
  32. {
  33. return $this->tblClotureRealise;
  34. }
  35. }
module/Service/src/Service/Entity/Db/Traits/TagAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Entity\Db\Traits;
  4.  
  5. use Service\Entity\Db\Tag;
  6.  
  7. /**
  8.  * Description of TagAwareTrait
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. trait TagAwareTrait
  13. {
  14. protected ?Tag $tag = null;
  15.  
  16.  
  17.  
  18. /**
  19.   * @param Tag $tag
  20.   *
  21.   * @return self
  22.   */
  23. public function setTag( ?Tag $tag )
  24. {
  25. $this->tag = $tag;
  26.  
  27. return $this;
  28. }
  29.  
  30.  
  31.  
  32. public function getTag(): ?Tag
  33. {
  34. return $this->tag;
  35. }
  36. }
module/Service/src/Service/Entity/Db/TypeVolumeHoraireAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of TypeVolumeHoraireAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeVolumeHoraireAwareTrait
  12. {
  13. protected ?TypeVolumeHoraire $typeVolumeHoraire = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeVolumeHoraire $typeVolumeHoraire
  19.   *
  20.   * @return self
  21.   */
  22. public function setTypeVolumeHoraire( ?TypeVolumeHoraire $typeVolumeHoraire )
  23. {
  24. $this->typeVolumeHoraire = $typeVolumeHoraire;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getTypeVolumeHoraire(): ?TypeVolumeHoraire
  32. {
  33. return $this->typeVolumeHoraire;
  34. }
  35. }
module/Service/src/Service/Entity/Db/TypeVolumeHoraireAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of TypeVolumeHoraireAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeVolumeHoraireAwareTrait
  12. {
  13. protected ?TypeVolumeHoraire $typeVolumeHoraire = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeVolumeHoraire $typeVolumeHoraire
  19.   *
  20.   * @return self
  21.   */
  22. public function setTypeVolumeHoraire( ?TypeVolumeHoraire $typeVolumeHoraire )
  23. {
  24. $this->typeVolumeHoraire = $typeVolumeHoraire;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getTypeVolumeHoraire(): ?TypeVolumeHoraire
  32. {
  33. return $this->typeVolumeHoraire;
  34. }
  35. }
module/Service/src/Service/Form/CampagneSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Form;
  4.  
  5.  
  6. /**
  7.  * Description of CampagneSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CampagneSaisieFormAwareTrait
  12. {
  13. protected ?CampagneSaisieForm $formCampagneSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CampagneSaisieForm $formCampagneSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormCampagneSaisie(?CampagneSaisieForm $formCampagneSaisie)
  23. {
  24. $this->formCampagneSaisie = $formCampagneSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormCampagneSaisie(): ?CampagneSaisieForm
  32. {
  33. if (!empty($this->formCampagneSaisie)) {
  34. return $this->formCampagneSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(CampagneSaisieForm::class);
  38. }
  39. }
module/Service/src/Service/Form/ModificationServiceDuFieldsetAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Form;
  4.  
  5.  
  6. /**
  7.  * Description of ModificationServiceDuFieldsetAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ModificationServiceDuFieldsetAwareTrait
  12. {
  13. protected ?ModificationServiceDuFieldset $fieldsetModificationServiceDu = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ModificationServiceDuFieldset $fieldsetModificationServiceDu
  19.   *
  20.   * @return self
  21.   */
  22. public function setFieldsetModificationServiceDu(?ModificationServiceDuFieldset $fieldsetModificationServiceDu)
  23. {
  24. $this->fieldsetModificationServiceDu = $fieldsetModificationServiceDu;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFieldsetModificationServiceDu(): ?ModificationServiceDuFieldset
  32. {
  33. if (!empty($this->fieldsetModificationServiceDu)) {
  34. return $this->fieldsetModificationServiceDu;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(ModificationServiceDuFieldset::class);
  38. }
  39. }
module/Service/src/Service/Form/ModificationServiceDuFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Form;
  4.  
  5.  
  6. /**
  7.  * Description of ModificationServiceDuFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ModificationServiceDuFormAwareTrait
  12. {
  13. protected ?ModificationServiceDuForm $formModificationServiceDu = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ModificationServiceDuForm $formModificationServiceDu
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormModificationServiceDu(?ModificationServiceDuForm $formModificationServiceDu)
  23. {
  24. $this->formModificationServiceDu = $formModificationServiceDu;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormModificationServiceDu(): ?ModificationServiceDuForm
  32. {
  33. if (!empty($this->formModificationServiceDu)) {
  34. return $this->formModificationServiceDu;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(ModificationServiceDuForm::class);
  38. }
  39. }
module/Service/src/Service/Form/MotifModificationServiceDuFieldsetAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Form;
  4.  
  5.  
  6. /**
  7.  * Description of MotifModificationServiceDuFieldsetAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MotifModificationServiceDuFieldsetAwareTrait
  12. {
  13. protected ?MotifModificationServiceDuFieldset $fieldsetMotifModificationServiceDu = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MotifModificationServiceDuFieldset $fieldsetMotifModificationServiceDu
  19.   *
  20.   * @return self
  21.   */
  22. public function setFieldsetMotifModificationServiceDu(?MotifModificationServiceDuFieldset $fieldsetMotifModificationServiceDu)
  23. {
  24. $this->fieldsetMotifModificationServiceDu = $fieldsetMotifModificationServiceDu;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFieldsetMotifModificationServiceDu(): ?MotifModificationServiceDuFieldset
  32. {
  33. if (!empty($this->fieldsetMotifModificationServiceDu)) {
  34. return $this->fieldsetMotifModificationServiceDu;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(MotifModificationServiceDuFieldset::class);
  38. }
  39. }
module/Service/src/Service/Form/MotifModificationServiceSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Form;
  4.  
  5.  
  6. /**
  7.  * Description of MotifModificationServiceSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MotifModificationServiceSaisieFormAwareTrait
  12. {
  13. protected ?MotifModificationServiceSaisieForm $formMotifModificationServiceSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MotifModificationServiceSaisieForm $formMotifModificationServiceSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormMotifModificationServiceSaisie(?MotifModificationServiceSaisieForm $formMotifModificationServiceSaisie)
  23. {
  24. $this->formMotifModificationServiceSaisie = $formMotifModificationServiceSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormMotifModificationServiceSaisie(): ?MotifModificationServiceSaisieForm
  32. {
  33. if (!empty($this->formMotifModificationServiceSaisie)) {
  34. return $this->formMotifModificationServiceSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(MotifModificationServiceSaisieForm::class);
  38. }
  39. }
module/Service/src/Service/Form/RechercheFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Form;
  4.  
  5.  
  6. /**
  7.  * Description of RechercheFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait RechercheFormAwareTrait
  12. {
  13. protected ?RechercheForm $formRecherche = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param RechercheForm $formRecherche
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormRecherche(?RechercheForm $formRecherche)
  23. {
  24. $this->formRecherche = $formRecherche;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormRecherche(): ?RechercheForm
  32. {
  33. if (!empty($this->formRecherche)) {
  34. return $this->formRecherche;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(RechercheForm::class);
  38. }
  39. }
module/Service/src/Service/Form/RegleStructureValidationFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Form;
  4.  
  5.  
  6. /**
  7.  * Description of RegleStructureValidationFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait RegleStructureValidationFormAwareTrait
  12. {
  13. protected ?RegleStructureValidationForm $formRegleStructureValidation = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param RegleStructureValidationForm $formRegleStructureValidation
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormRegleStructureValidation(?RegleStructureValidationForm $formRegleStructureValidation)
  23. {
  24. $this->formRegleStructureValidation = $formRegleStructureValidation;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormRegleStructureValidation(): ?RegleStructureValidationForm
  32. {
  33. if (!empty($this->formRegleStructureValidation)) {
  34. return $this->formRegleStructureValidation;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(RegleStructureValidationForm::class);
  38. }
  39. }
module/Service/src/Service/Form/TagSaisieFormAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Form;
  4.  
  5.  
  6. /**
  7.  * Description of TagSaisieFormAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TagSaisieFormAwareTrait
  12. {
  13. protected ?TagSaisieForm $formTagSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TagSaisieForm $formTagSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setFormTagSaisie(?TagSaisieForm $formTagSaisie)
  23. {
  24. $this->formTagSaisie = $formTagSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getFormTagSaisie(): ?TagSaisieForm
  32. {
  33. if (!empty($this->formTagSaisie)) {
  34. return $this->formTagSaisie;
  35. }
  36.  
  37. return \Application::$container->get('FormElementManager')->get(TagSaisieForm::class);
  38. }
  39. }
module/Service/src/Service/Hydrator/RechercheHydratorAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Hydrator;
  4.  
  5.  
  6. /**
  7.  * Description of RechercheHydratorAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait RechercheHydratorAwareTrait
  12. {
  13. protected ?RechercheHydrator $hydratorRecherche = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param RechercheHydrator $hydratorRecherche
  19.   *
  20.   * @return self
  21.   */
  22. public function setHydratorRecherche(?RechercheHydrator $hydratorRecherche)
  23. {
  24. $this->hydratorRecherche = $hydratorRecherche;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getHydratorRecherche(): ?RechercheHydrator
  32. {
  33. if (empty($this->hydratorRecherche)) {
  34. $this->hydratorRecherche = \Application::$container->get(RechercheHydrator::class);
  35. }
  36.  
  37. return $this->hydratorRecherche;
  38. }
  39. }
module/Service/src/Service/Service/CampagneSaisieServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Service;
  4.  
  5.  
  6. /**
  7.  * Description of CampagneSaisieServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait CampagneSaisieServiceAwareTrait
  12. {
  13. protected ?CampagneSaisieService $serviceCampagneSaisie = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param CampagneSaisieService $serviceCampagneSaisie
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceCampagneSaisie(?CampagneSaisieService $serviceCampagneSaisie)
  23. {
  24. $this->serviceCampagneSaisie = $serviceCampagneSaisie;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceCampagneSaisie(): ?CampagneSaisieService
  32. {
  33. if (empty($this->serviceCampagneSaisie)) {
  34. $this->serviceCampagneSaisie = \Application::$container->get(CampagneSaisieService::class);
  35. }
  36.  
  37. return $this->serviceCampagneSaisie;
  38. }
  39. }
module/Service/src/Service/Service/EtatVolumeHoraireServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Service;
  4.  
  5.  
  6. /**
  7.  * Description of EtatVolumeHoraireServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait EtatVolumeHoraireServiceAwareTrait
  12. {
  13. protected ?EtatVolumeHoraireService $serviceEtatVolumeHoraire = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param EtatVolumeHoraireService $serviceEtatVolumeHoraire
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceEtatVolumeHoraire(?EtatVolumeHoraireService $serviceEtatVolumeHoraire)
  23. {
  24. $this->serviceEtatVolumeHoraire = $serviceEtatVolumeHoraire;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceEtatVolumeHoraire(): ?EtatVolumeHoraireService
  32. {
  33. if (empty($this->serviceEtatVolumeHoraire)) {
  34. $this->serviceEtatVolumeHoraire = \Application::$container->get(EtatVolumeHoraireService::class);
  35. }
  36.  
  37. return $this->serviceEtatVolumeHoraire;
  38. }
  39. }
module/Service/src/Service/Service/ModificationServiceDuServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Service;
  4.  
  5.  
  6. /**
  7.  * Description of ModificationServiceDuServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ModificationServiceDuServiceAwareTrait
  12. {
  13. protected ?ModificationServiceDuService $serviceModificationServiceDu = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ModificationServiceDuService $serviceModificationServiceDu
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceModificationServiceDu(?ModificationServiceDuService $serviceModificationServiceDu)
  23. {
  24. $this->serviceModificationServiceDu = $serviceModificationServiceDu;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceModificationServiceDu(): ?ModificationServiceDuService
  32. {
  33. if (empty($this->serviceModificationServiceDu)) {
  34. $this->serviceModificationServiceDu = \Application::$container->get(ModificationServiceDuService::class);
  35. }
  36.  
  37. return $this->serviceModificationServiceDu;
  38. }
  39. }
module/Service/src/Service/Service/MotifModificationServiceDuServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Service;
  4.  
  5.  
  6. /**
  7.  * Description of MotifModificationServiceDuServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait MotifModificationServiceDuServiceAwareTrait
  12. {
  13. protected ?MotifModificationServiceDuService $serviceMotifModificationServiceDu = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param MotifModificationServiceDuService $serviceMotifModificationServiceDu
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceMotifModificationServiceDu(?MotifModificationServiceDuService $serviceMotifModificationServiceDu)
  23. {
  24. $this->serviceMotifModificationServiceDu = $serviceMotifModificationServiceDu;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceMotifModificationServiceDu(): ?MotifModificationServiceDuService
  32. {
  33. if (empty($this->serviceMotifModificationServiceDu)) {
  34. $this->serviceMotifModificationServiceDu = \Application::$container->get(MotifModificationServiceDuService::class);
  35. }
  36.  
  37. return $this->serviceMotifModificationServiceDu;
  38. }
  39. }
module/Service/src/Service/Service/RechercheServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Service;
  4.  
  5.  
  6. /**
  7.  * Description of RechercheServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait RechercheServiceAwareTrait
  12. {
  13. protected ?RechercheService $serviceRecherche = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param RechercheService $serviceRecherche
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceRecherche(?RechercheService $serviceRecherche)
  23. {
  24. $this->serviceRecherche = $serviceRecherche;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceRecherche(): ?RechercheService
  32. {
  33. if (empty($this->serviceRecherche)) {
  34. $this->serviceRecherche = \Application::$container->get(RechercheService::class);
  35. }
  36.  
  37. return $this->serviceRecherche;
  38. }
  39. }
module/Service/src/Service/Service/RegleStructureValidationServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Service;
  4.  
  5.  
  6. /**
  7.  * Description of RegleStructureValidationServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait RegleStructureValidationServiceAwareTrait
  12. {
  13. protected ?RegleStructureValidationService $serviceRegleStructureValidation = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param RegleStructureValidationService $serviceRegleStructureValidation
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceRegleStructureValidation(?RegleStructureValidationService $serviceRegleStructureValidation)
  23. {
  24. $this->serviceRegleStructureValidation = $serviceRegleStructureValidation;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceRegleStructureValidation(): ?RegleStructureValidationService
  32. {
  33. if (empty($this->serviceRegleStructureValidation)) {
  34. $this->serviceRegleStructureValidation = \Application::$container->get(RegleStructureValidationService::class);
  35. }
  36.  
  37. return $this->serviceRegleStructureValidation;
  38. }
  39. }
module/Service/src/Service/Service/ResumeServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Service;
  4.  
  5.  
  6. /**
  7.  * Description of ResumeServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait ResumeServiceAwareTrait
  12. {
  13. protected ?ResumeService $serviceResume = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param ResumeService $serviceResume
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceResume(?ResumeService $serviceResume)
  23. {
  24. $this->serviceResume = $serviceResume;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceResume(): ?ResumeService
  32. {
  33. if (empty($this->serviceResume)) {
  34. $this->serviceResume = \Application::$container->get(ResumeService::class);
  35. }
  36.  
  37. return $this->serviceResume;
  38. }
  39. }
module/Service/src/Service/Service/TagServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Service;
  4.  
  5.  
  6. /**
  7.  * Description of TagServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TagServiceAwareTrait
  12. {
  13. protected ?TagService $serviceTag = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TagService $serviceTag
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceTag(?TagService $serviceTag)
  23. {
  24. $this->serviceTag = $serviceTag;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceTag(): ?TagService
  32. {
  33. if (empty($this->serviceTag)) {
  34. $this->serviceTag = \Application::$container->get(TagService::class);
  35. }
  36.  
  37. return $this->serviceTag;
  38. }
  39. }
module/Service/src/Service/Service/TypeVolumeHoraireServiceAwareTrait.php
  1. <?php
  2.  
  3. namespace Service\Service;
  4.  
  5.  
  6. /**
  7.  * Description of TypeVolumeHoraireServiceAwareTrait
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. trait TypeVolumeHoraireServiceAwareTrait
  12. {
  13. protected ?TypeVolumeHoraireService $serviceTypeVolumeHoraire = null;
  14.  
  15.  
  16.  
  17. /**
  18.   * @param TypeVolumeHoraireService $serviceTypeVolumeHoraire
  19.   *
  20.   * @return self
  21.   */
  22. public function setServiceTypeVolumeHoraire(?TypeVolumeHoraireService $serviceTypeVolumeHoraire)
  23. {
  24. $this->serviceTypeVolumeHoraire = $serviceTypeVolumeHoraire;
  25.  
  26. return $this;
  27. }
  28.  
  29.  
  30.  
  31. public function getServiceTypeVolumeHoraire(): ?TypeVolumeHoraireService
  32. {
  33. if (empty($this->serviceTypeVolumeHoraire)) {
  34. $this->serviceTypeVolumeHoraire = \Application::$container->get(TypeVolumeHoraireService::class);
  35. }
  36.  
  37. return $this->serviceTypeVolumeHoraire;
  38. }
  39. }
module/Application/src/Form/Droits/Interfaces/AffectationFormAwareInterface.php
  1. <?php
  2.  
  3. namespace Application\Form\Droits\Interfaces;
  4.  
  5. use Application\Form\Droits\AffectationForm;
  6.  
  7. /**
  8.  * Description of AffectationFormAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface AffectationFormAwareInterface
  13. {
  14. /**
  15.   * @param AffectationForm|null $formDroitsAffectation
  16.   *
  17.   * @return self
  18.   */
  19. public function setFormDroitsAffectation( ?AffectationForm $formDroitsAffectation );
  20.  
  21.  
  22.  
  23. public function getFormDroitsAffectation(): ?AffectationForm;
  24. }
module/Application/src/Form/Droits/Interfaces/RoleFormAwareInterface.php
  1. <?php
  2.  
  3. namespace Application\Form\Droits\Interfaces;
  4.  
  5. use Application\Form\Droits\RoleForm;
  6.  
  7. /**
  8.  * Description of RoleFormAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface RoleFormAwareInterface
  13. {
  14. /**
  15.   * @param RoleForm|null $formDroitsRole
  16.   *
  17.   * @return self
  18.   */
  19. public function setFormDroitsRole( ?RoleForm $formDroitsRole );
  20.  
  21.  
  22.  
  23. public function getFormDroitsRole(): ?RoleForm;
  24. }
module/Application/src/Form/Intervenant/Interfaces/EditionFormAwareInterface.php
  1. <?php
  2.  
  3. namespace Application\Form\Intervenant\Interfaces;
  4.  
  5. use Application\Form\Intervenant\EditionForm;
  6.  
  7. /**
  8.  * Description of EditionFormAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface EditionFormAwareInterface
  13. {
  14. /**
  15.   * @param EditionForm|null $formIntervenantEdition
  16.   *
  17.   * @return self
  18.   */
  19. public function setFormIntervenantEdition( ?EditionForm $formIntervenantEdition );
  20.  
  21.  
  22.  
  23. public function getFormIntervenantEdition(): ?EditionForm;
  24. }
module/Application/src/Form/Intervenant/Interfaces/HeuresCompFormAwareInterface.php
  1. <?php
  2.  
  3. namespace Application\Form\Intervenant\Interfaces;
  4.  
  5. use Application\Form\Intervenant\HeuresCompForm;
  6.  
  7. /**
  8.  * Description of HeuresCompFormAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface HeuresCompFormAwareInterface
  13. {
  14. /**
  15.   * @param HeuresCompForm|null $formIntervenantHeuresComp
  16.   *
  17.   * @return self
  18.   */
  19. public function setFormIntervenantHeuresComp( ?HeuresCompForm $formIntervenantHeuresComp );
  20.  
  21.  
  22.  
  23. public function getFormIntervenantHeuresComp(): ?HeuresCompForm;
  24. }
module/Contrat/src/Form/ContratRetourFormAwareInterface.php
  1. <?php
  2.  
  3. namespace Contrat\Form;
  4.  
  5.  
  6. /**
  7.  * Description of ContratRetourFormAwareInterface
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. interface ContratRetourFormAwareInterface
  12. {
  13. /**
  14.   * @param ContratRetourForm|null $formContratRetour
  15.   *
  16.   * @return self
  17.   */
  18. public function setFormContratRetour( ?ContratRetourForm $formContratRetour );
  19.  
  20.  
  21.  
  22. public function getFormContratRetour(): ?ContratRetourForm;
  23. }
module/Indicateur/src/Entity/Db/IndicateurAwareInterface.php
  1. <?php
  2.  
  3. namespace Indicateur\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of IndicateurAwareInterface
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. interface IndicateurAwareInterface
  12. {
  13. /**
  14.   * @param Indicateur|null $indicateur
  15.   *
  16.   * @return self
  17.   */
  18. public function setIndicateur( ?Indicateur $indicateur );
  19.  
  20.  
  21.  
  22. public function getIndicateur(): ?Indicateur;
  23. }
module/Indicateur/src/Entity/Db/NotificationIndicateurAwareInterface.php
  1. <?php
  2.  
  3. namespace Indicateur\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of NotificationIndicateurAwareInterface
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. interface NotificationIndicateurAwareInterface
  12. {
  13. /**
  14.   * @param NotificationIndicateur|null $notificationIndicateur
  15.   *
  16.   * @return self
  17.   */
  18. public function setNotificationIndicateur( ?NotificationIndicateur $notificationIndicateur );
  19.  
  20.  
  21.  
  22. public function getNotificationIndicateur(): ?NotificationIndicateur;
  23. }
module/OffreFormation/src/Form/EtapeCentreCout/Interfaces/ElementCentreCoutFieldsetAwareInterface.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\EtapeCentreCout\Interfaces;
  4.  
  5. use OffreFormation\Form\EtapeCentreCout\ElementCentreCoutFieldset;
  6.  
  7. /**
  8.  * Description of ElementCentreCoutFieldsetAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface ElementCentreCoutFieldsetAwareInterface
  13. {
  14. /**
  15.   * @param ElementCentreCoutFieldset|null $formEtapeCentreCoutElementCentreCoutFieldset
  16.   *
  17.   * @return self
  18.   */
  19. public function setFormEtapeCentreCoutElementCentreCoutFieldset( ?ElementCentreCoutFieldset $formEtapeCentreCoutElementCentreCoutFieldset );
  20.  
  21.  
  22.  
  23. public function getFormEtapeCentreCoutElementCentreCoutFieldset(): ?ElementCentreCoutFieldset;
  24. }
module/OffreFormation/src/Form/EtapeCentreCout/Interfaces/EtapeCentreCoutFormAwareInterface.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\EtapeCentreCout\Interfaces;
  4.  
  5. use OffreFormation\Form\EtapeCentreCout\EtapeCentreCoutForm;
  6.  
  7. /**
  8.  * Description of EtapeCentreCoutFormAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface EtapeCentreCoutFormAwareInterface
  13. {
  14. /**
  15.   * @param EtapeCentreCoutForm|null $formEtapeCentreCoutEtapeCentreCout
  16.   *
  17.   * @return self
  18.   */
  19. public function setFormEtapeCentreCoutEtapeCentreCout( ?EtapeCentreCoutForm $formEtapeCentreCoutEtapeCentreCout );
  20.  
  21.  
  22.  
  23. public function getFormEtapeCentreCoutEtapeCentreCout(): ?EtapeCentreCoutForm;
  24. }
module/OffreFormation/src/Form/EtapeTauxRemu/Interfaces/ElementTauxRemuFieldsetAwareInterface.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\EtapeTauxRemu\Interfaces;
  4.  
  5. use OffreFormation\Form\EtapeTauxRemu\ElementTauxRemuFieldset;
  6.  
  7. /**
  8.  * Description of ElementTauxRemuFieldsetAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface ElementTauxRemuFieldsetAwareInterface
  13. {
  14. /**
  15.   * @param ElementTauxRemuFieldset|null $formEtapeTauxRemuElementTauxRemuFieldset
  16.   *
  17.   * @return self
  18.   */
  19. public function setFormEtapeTauxRemuElementTauxRemuFieldset( ?ElementTauxRemuFieldset $formEtapeTauxRemuElementTauxRemuFieldset );
  20.  
  21.  
  22.  
  23. public function getFormEtapeTauxRemuElementTauxRemuFieldset(): ?ElementTauxRemuFieldset;
  24. }
module/OffreFormation/src/Form/Interfaces/ElementModulateursFieldsetAwareInterface.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Interfaces;
  4.  
  5. use OffreFormation\Form\ElementModulateursFieldset;
  6.  
  7. /**
  8.  * Description of ElementModulateursFieldsetAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface ElementModulateursFieldsetAwareInterface
  13. {
  14. /**
  15.   * @param ElementModulateursFieldset|null $formElementModulateursFieldset
  16.   *
  17.   * @return self
  18.   */
  19. public function setFormElementModulateursFieldset( ?ElementModulateursFieldset $formElementModulateursFieldset );
  20.  
  21.  
  22.  
  23. public function getFormElementModulateursFieldset(): ?ElementModulateursFieldset;
  24. }
module/OffreFormation/src/Form/Interfaces/ElementPedagogiqueRechercheFieldsetAwareInterface.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Interfaces;
  4.  
  5. use OffreFormation\Form\ElementPedagogiqueRechercheFieldset;
  6.  
  7. /**
  8.  * Description of ElementPedagogiqueRechercheFieldsetAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface ElementPedagogiqueRechercheFieldsetAwareInterface
  13. {
  14. /**
  15.   * @param ElementPedagogiqueRechercheFieldset|null $formElementPedagogiqueRechercheFieldset
  16.   *
  17.   * @return self
  18.   */
  19. public function setFormElementPedagogiqueRechercheFieldset( ?ElementPedagogiqueRechercheFieldset $formElementPedagogiqueRechercheFieldset );
  20.  
  21.  
  22.  
  23. public function getFormElementPedagogiqueRechercheFieldset(): ?ElementPedagogiqueRechercheFieldset;
  24. }
module/OffreFormation/src/Form/Interfaces/ElementPedagogiqueSaisieAwareInterface.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Interfaces;
  4.  
  5. use OffreFormation\Form\ElementPedagogiqueSaisie;
  6.  
  7. /**
  8.  * Description of ElementPedagogiqueSaisieAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface ElementPedagogiqueSaisieAwareInterface
  13. {
  14. /**
  15.   * @param ElementPedagogiqueSaisie|null $formElementPedagogiqueSaisie
  16.   *
  17.   * @return self
  18.   */
  19. public function setFormElementPedagogiqueSaisie( ?ElementPedagogiqueSaisie $formElementPedagogiqueSaisie );
  20.  
  21.  
  22.  
  23. public function getFormElementPedagogiqueSaisie(): ?ElementPedagogiqueSaisie;
  24. }
module/OffreFormation/src/Form/Interfaces/EtapeModulateursSaisieAwareInterface.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Interfaces;
  4.  
  5. use OffreFormation\Form\EtapeModulateursSaisie;
  6.  
  7. /**
  8.  * Description of EtapeModulateursSaisieAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface EtapeModulateursSaisieAwareInterface
  13. {
  14. /**
  15.   * @param EtapeModulateursSaisie|null $formEtapeModulateursSaisie
  16.   *
  17.   * @return self
  18.   */
  19. public function setFormEtapeModulateursSaisie( ?EtapeModulateursSaisie $formEtapeModulateursSaisie );
  20.  
  21.  
  22.  
  23. public function getFormEtapeModulateursSaisie(): ?EtapeModulateursSaisie;
  24. }
module/OffreFormation/src/Form/Interfaces/EtapeSaisieAwareInterface.php
  1. <?php
  2.  
  3. namespace OffreFormation\Form\Interfaces;
  4.  
  5. use OffreFormation\Form\EtapeSaisie;
  6.  
  7. /**
  8.  * Description of EtapeSaisieAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface EtapeSaisieAwareInterface
  13. {
  14. /**
  15.   * @param EtapeSaisie|null $formEtapeSaisie
  16.   *
  17.   * @return self
  18.   */
  19. public function setFormEtapeSaisie( ?EtapeSaisie $formEtapeSaisie );
  20.  
  21.  
  22.  
  23. public function getFormEtapeSaisie(): ?EtapeSaisie;
  24. }
module/Enseignement/src/Entity/Db/Interfaces/ServiceAPayerInterfaceAwareInterface.php
  1. <?php
  2.  
  3. namespace Enseignement\Entity\Db\Interfaces;
  4.  
  5. use Enseignement\Entity\Db\ServiceAPayerInterface;
  6.  
  7. /**
  8.  * Description of ServiceAPayerInterfaceAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface ServiceAPayerInterfaceAwareInterface
  13. {
  14. /**
  15.   * @param ServiceAPayerInterface|null $serviceAPayerInterface
  16.   *
  17.   * @return self
  18.   */
  19. public function setServiceAPayerInterface( ?ServiceAPayerInterface $serviceAPayerInterface );
  20.  
  21.  
  22.  
  23. public function getServiceAPayerInterface(): ?ServiceAPayerInterface;
  24. }
module/Paiement/src/Entity/Db/Interfaces/ServiceAPayerInterfaceAwareInterface.php
  1. <?php
  2.  
  3. namespace Paiement\Entity\Db\Interfaces;
  4.  
  5. use Paiement\Entity\Db\ServiceAPayerInterface;
  6.  
  7. /**
  8.  * Description of ServiceAPayerInterfaceAwareInterface
  9.  *
  10.  * @author UnicaenCode
  11.  */
  12. interface ServiceAPayerInterfaceAwareInterface
  13. {
  14. /**
  15.   * @param ServiceAPayerInterface|null $serviceAPayerInterface
  16.   *
  17.   * @return self
  18.   */
  19. public function setServiceAPayerInterface( ?ServiceAPayerInterface $serviceAPayerInterface );
  20.  
  21.  
  22.  
  23. public function getServiceAPayerInterface(): ?ServiceAPayerInterface;
  24. }
module/Plafond/src/Entity/Db/PlafondAwareInterface.php
  1. <?php
  2.  
  3. namespace Plafond\Entity\Db;
  4.  
  5.  
  6. /**
  7.  * Description of PlafondAwareInterface
  8.  *
  9.  * @author UnicaenCode
  10.  */
  11. interface PlafondAwareInterface
  12. {
  13. /**
  14.   * @param Plafond|null $plafond
  15.   *
  16.   * @return self
  17.   */
  18. public function setPlafond( ?Plafond $plafond );
  19.  
  20.  
  21.  
  22. public function getPlafond(): ?Plafond;
  23. }
Laminas
Documentation Modules Gallery PHP Version 8.0.19 Extensions intl ModulesBjyAuthorizeLaminas\CacheLaminas\FilterLaminas\FormLaminas\HydratorLaminas\I18nLaminas\InputFilterLaminas\LogLaminas\MailUnicaen\ConsoleLaminas\Mvc\I18nLaminas\Mvc\Plugin\FlashMessengerLaminas\Mvc\Plugin\PrgLaminas\NavigationLaminas\PaginatorLaminas\RouterLaminas\SessionLaminas\ValidatorDoctrineModuleDoctrineORMModuleZfcUserUnicaenAppUnicaenAuthentificationUnicaenMailUnicaenUtilisateurUnicaenPrivilegeUnicaenImportUnicaenTblUnicaenSihamUnicaenVueApplicationAgrementIntervenantServiceEnseignementReferentielMissionPaiementOffreFormationPieceJointePlafondIndicateurExportRhDossierContratLaminas\DeveloperToolsUnicaenCode
Request and Response 200 Controller::index on unicaen-code
Status code 200 Method GET Controller UnicaenCode\Controller Action index Other Route Parameters
^ array:1 [
  "view" => "GenerationTraitsInterfaces"
]
Route unicaen-code Template layout/layout

  content: string

Template unicaen-code/index

  container: Laminas\ServiceManager\ServiceManager
  controller: UnicaenCode\Controller\Controller
  viewFile: string
  viewName: string

Execution Time 6.09 s
1. route 154.35 ms
File: Application/Application.php - Line: 118
Target: Laminas\Mvc\Application
2. dispatch 154.63 ms
File: Application/Application.php - Line: 118
Target: Laminas\Mvc\Application
3. dispatch 154.79 ms
File: src/DispatchListener.php - Line: 117
Target: UnicaenCode\Controller\Controller
4. render 154.90 ms
File: src/Application.php - Line: 335
Target: Laminas\Mvc\Application
5. renderer 154.94 ms
File: Http/DefaultRenderingStrategy.php - Line: 92
Target: Laminas\View\View
6. renderer.post 154.97 ms
File: Http/DefaultRenderingStrategy.php - Line: 92
Target: Laminas\View\View
7. renderer 155.00 ms
File: src/View.php - Line: 222
Target: Laminas\View\View
8. renderer.post 155.01 ms
File: src/View.php - Line: 222
Target: Laminas\View\View
9. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: Laminas\View\Helper\Navigation
10. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: Laminas\View\Helper\Navigation
11. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: Laminas\View\Helper\Navigation
12. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: Laminas\View\Helper\Navigation
13. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: Laminas\View\Helper\Navigation
14. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: Laminas\View\Helper\Navigation
15. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: Laminas\View\Helper\Navigation
16. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: Laminas\View\Helper\Navigation
17. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: Laminas\View\Helper\Navigation
18. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: Laminas\View\Helper\Navigation
19. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: Laminas\View\Helper\Navigation
20. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: Laminas\View\Helper\Navigation
21. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
22. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
23. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
24. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
25. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
26. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
27. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
28. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
29. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
30. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
31. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
32. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
33. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
34. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
35. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
36. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
37. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
38. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
39. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
40. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
41. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
42. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
43. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
44. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
45. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
46. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
47. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
48. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
49. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
50. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
51. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
52. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
53. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
54. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
55. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
56. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
57. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
58. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
59. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
60. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
61. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
62. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
63. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
64. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
65. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
66. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
67. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
68. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
69. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
70. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
71. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
72. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
73. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
74. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
75. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
76. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
77. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
78. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
79. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
80. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
81. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
82. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
83. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
84. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
85. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
86. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
87. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
88. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
89. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
90. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
91. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
92. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
93. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
94. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
95. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
96. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
97. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
98. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
99. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
100. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
101. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
102. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
103. isAllowed 6.09 s
File: Navigation/AbstractHelper.php - Line: 329
Target: UnicaenApp\View\Helper\Navigation\MenuSecondaire
104. response 6.09 s
File: Http/DefaultRenderingStrategy.php - Line: 92
Target: Laminas\View\View
105. finish 6.09 s
File: src/Application.php - Line: 335
Target: Laminas\Mvc\Application
106. collected 6.12 s
File: Listener/ProfilerListener.php - Line: 79
Target: NULL
Total Time 6.09 s
Memory Peak 45.82 MB
1. route 32.00 MB

Application/Application.php - Line: 118

2. dispatch 32.00 MB

Application/Application.php - Line: 118

3. dispatch 32.00 MB

src/DispatchListener.php - Line: 117

4. render 32.00 MB

src/Application.php - Line: 335

5. renderer 32.00 MB

Http/DefaultRenderingStrategy.php - Line: 92

6. renderer.post 32.00 MB

Http/DefaultRenderingStrategy.php - Line: 92

7. renderer 32.00 MB

src/View.php - Line: 222

8. renderer.post 32.00 MB

src/View.php - Line: 222

9. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

10. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

11. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

12. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

13. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

14. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

15. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

16. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

17. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

18. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

19. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

20. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

21. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

22. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

23. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

24. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

25. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

26. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

27. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

28. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

29. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

30. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

31. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

32. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

33. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

34. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

35. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

36. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

37. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

38. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

39. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

40. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

41. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

42. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

43. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

44. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

45. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

46. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

47. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

48. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

49. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

50. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

51. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

52. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

53. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

54. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

55. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

56. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

57. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

58. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

59. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

60. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

61. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

62. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

63. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

64. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

65. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

66. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

67. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

68. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

69. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

70. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

71. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

72. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

73. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

74. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

75. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

76. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

77. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

78. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

79. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

80. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

81. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

82. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

83. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

84. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

85. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

86. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

87. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

88. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

89. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

90. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

91. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

92. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

93. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

94. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

95. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

96. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

97. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

98. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

99. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

100. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

101. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

102. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

103. isAllowed 39.27 MB

Navigation/AbstractHelper.php - Line: 329

104. response 42.54 MB

Http/DefaultRenderingStrategy.php - Line: 92

105. finish 42.54 MB

src/Application.php - Line: 335

106. collected 42.54 MB

Listener/ProfilerListener.php - Line: 79

Memory Peak 45.82 MB
Doctrine ORM (Queries) 10 queries in 15.82 ms
DoctrineORMModule Queries for doctrine.sql_logger_collector.orm_default
Appel Application/Application.php(117): Application::start()
SQL ALTER SESSION SET NLS_TIME_FORMAT = 'HH24:MI:SS' NLS_DATE_FORMAT = 'YYYY-MM-DD HH24:MI:SS' NLS_TIMESTAMP_FORMAT = 'YYYY-MM-DD HH24:MI:SS' NLS_TIMESTAMP_TZ_FORMAT = 'YYYY-MM-DD HH24:MI:SS TZH:TZM' NLS_NUMERIC_CHARACTERS = '.,' Params Types Time 0.001209020614624
Appel Application/Application.php(117): Application::start()
SQL SELECT cp.code || '-' || p.code privilege, r.code role FROM role_privilege rp JOIN privilege p ON p.id = rp.privilege_id JOIN categorie_privilege cp ON cp.id = p.categorie_id JOIN role r ON r.id = rp.role_id AND r.histo_destruction IS NULL Params Types Time 0.0016810894012451
Appel Application/Application.php(117): Application::start()
SQL SELECT nom, valeur FROM parametre Params Types Time 0.0015299320220947
Appel Application/Application.php(117): Application::start()
SQL SELECT t0.DATE_DEBUT AS DATE_DEBUT_1, t0.DATE_FIN AS DATE_FIN_2, t0.LIBELLE AS LIBELLE_3, t0.ACTIVE AS ACTIVE_4, t0.ID AS ID_5 FROM ANNEE t0 WHERE t0.ID = ? Params     0 => int(2023)
Types     0 => string(7) "integer"
Time 0.0019299983978271
Appel Application/Application.php(117): Application::start()
SQL SELECT s0_.CODE AS CODE_0, s0_.LIBELLE AS LIBELLE_1, s0_.ORDRE AS ORDRE_2, s0_.PRIORITAIRE_INDICATEURS AS PRIORITAIRE_INDICATEURS_3, s0_.SERVICE_STATUTAIRE AS SERVICE_STATUTAIRE_4, s0_.DEPASSEMENT_SERVICE_DU_SANS_HC AS PASSEMENT_SERVICE_DU_SANS_HC_5, s0_.TAUX_CHARGES_PATRONALES AS TAUX_CHARGES_PATRONALES_6, s0_.TAUX_CHARGES_TTC AS TAUX_CHARGES_TTC_7, s0_.DOSSIER AS DOSSIER_8, s0_.DOSSIER_VISUALISATION AS DOSSIER_VISUALISATION_9, s0_.DOSSIER_EDITION AS DOSSIER_EDITION_10, s0_.DOSSIER_SELECTIONNABLE AS DOSSIER_SELECTIONNABLE_11, s0_.DOSSIER_IDENTITE_COMP AS DOSSIER_IDENTITE_COMP_12, s0_.DOSSIER_CONTACT AS DOSSIER_CONTACT_13, s0_.DOSSIER_TEL_PERSO AS DOSSIER_TEL_PERSO_14, s0_.DOSSIER_EMAIL_PERSO AS DOSSIER_EMAIL_PERSO_15, s0_.DOSSIER_EMPLOYEUR_FACULTATIF AS OSSIER_EMPLOYEUR_FACULTATIF_16, s0_.DOSSIER_ADRESSE AS DOSSIER_ADRESSE_17, s0_.DOSSIER_BANQUE AS DOSSIER_BANQUE_18, s0_.DOSSIER_INSEE AS DOSSIER_INSEE_19, s0_.DOSSIER_STATUT AS DOSSIER_STATUT_20, s0_.DOSSIER_EMPLOYEUR AS DOSSIER_EMPLOYEUR_21, s0_.DOSSIER_AUTRE_1 AS DOSSIER_AUTRE_1_22, s0_.DOSSIER_AUTRE_1_VISUALISATION AS SSIER_AUTRE_1_VISUALISATION_23, s0_.DOSSIER_AUTRE_1_EDITION AS DOSSIER_AUTRE_1_EDITION_24, s0_.DOSSIER_AUTRE_2 AS DOSSIER_AUTRE_2_25, s0_.DOSSIER_AUTRE_2_VISUALISATION AS SSIER_AUTRE_2_VISUALISATION_26, s0_.DOSSIER_AUTRE_2_EDITION AS DOSSIER_AUTRE_2_EDITION_27, s0_.DOSSIER_AUTRE_3 AS DOSSIER_AUTRE_3_28, s0_.DOSSIER_AUTRE_3_VISUALISATION AS SSIER_AUTRE_3_VISUALISATION_29, s0_.DOSSIER_AUTRE_3_EDITION AS DOSSIER_AUTRE_3_EDITION_30, s0_.DOSSIER_AUTRE_4 AS DOSSIER_AUTRE_4_31, s0_.DOSSIER_AUTRE_4_VISUALISATION AS SSIER_AUTRE_4_VISUALISATION_32, s0_.DOSSIER_AUTRE_4_EDITION AS DOSSIER_AUTRE_4_EDITION_33, s0_.DOSSIER_AUTRE_5 AS DOSSIER_AUTRE_5_34, s0_.DOSSIER_AUTRE_5_VISUALISATION AS SSIER_AUTRE_5_VISUALISATION_35, s0_.DOSSIER_AUTRE_5_EDITION AS DOSSIER_AUTRE_5_EDITION_36, s0_.PJ_VISUALISATION AS PJ_VISUALISATION_37, s0_.PJ_EDITION AS PJ_EDITION_38, s0_.CONSEIL_RESTREINT AS CONSEIL_RESTREINT_39, s0_.CONSEIL_RESTREINT_VISU AS CONSEIL_RESTREINT_VISU_40, s0_.CONSEIL_RESTREINT_DUREE_VIE AS CONSEIL_RESTREINT_DUREE_VIE_41, s0_.CONSEIL_ACA AS CONSEIL_ACA_42, s0_.CONSEIL_ACA_VISUALISATION AS CONSEIL_ACA_VISUALISATION_43, s0_.CONSEIL_ACA_DUREE_VIE AS CONSEIL_ACA_DUREE_VIE_44, s0_.CONTRAT AS CONTRAT_45, s0_.CONTRAT_VISUALISATION AS CONTRAT_VISUALISATION_46, s0_.CONTRAT_DEPOT AS CONTRAT_DEPOT_47, s0_.CONTRAT_GENERATION AS CONTRAT_GENERATION_48, s0_.SERVICE_PREVU AS SERVICE_PREVU_49, s0_.SERVICE_PREVU_VISU AS SERVICE_PREVU_VISU_50, s0_.SERVICE_PREVU_EDITION AS SERVICE_PREVU_EDITION_51, s0_.SERVICE_REALISE AS SERVICE_REALISE_52, s0_.SERVICE_REALISE_VISU AS SERVICE_REALISE_VISU_53, s0_.SERVICE_REALISE_EDITION AS SERVICE_REALISE_EDITION_54, s0_.SERVICE_EXTERIEUR AS SERVICE_EXTERIEUR_55, s0_.REFERENTIEL_PREVU AS REFERENTIEL_PREVU_56, s0_.REFERENTIEL_PREVU_VISU AS REFERENTIEL_PREVU_VISU_57, s0_.REFERENTIEL_PREVU_EDITION AS REFERENTIEL_PREVU_EDITION_58, s0_.REFERENTIEL_REALISE AS REFERENTIEL_REALISE_59, s0_.REFERENTIEL_REALISE_VISU AS REFERENTIEL_REALISE_VISU_60, s0_.REFERENTIEL_REALISE_EDITION AS REFERENTIEL_REALISE_EDITION_61, s0_.MISSION AS MISSION_62, s0_.MISSION_VISUALISATION AS MISSION_VISUALISATION_63, s0_.MISSION_EDITION AS MISSION_EDITION_64, s0_.MISSION_REALISE_EDITION AS MISSION_REALISE_EDITION_65, s0_.MISSION_DECRET AS MISSION_DECRET_66, s0_.OFFRE_EMPLOI_POSTULER AS OFFRE_EMPLOI_POSTULER_67, s0_.CLOTURE AS CLOTURE_68, s0_.MODIF_SERVICE_DU AS MODIF_SERVICE_DU_69, s0_.MODIF_SERVICE_DU_VISUALISATION AS IF_SERVICE_DU_VISUALISATION_70, s0_.PAIEMENT AS PAIEMENT_71, s0_.PAIEMENT_VISUALISATION AS PAIEMENT_VISUALISATION_72, s0_.MOTIF_NON_PAIEMENT AS MOTIF_NON_PAIEMENT_73, s0_.FORMULE_VISUALISATION AS FORMULE_VISUALISATION_74, s0_.CODES_CORRESP_1 AS CODES_CORRESP_1_75, s0_.CODES_CORRESP_2 AS CODES_CORRESP_2_76, s0_.CODES_CORRESP_3 AS CODES_CORRESP_3_77, s0_.CODES_CORRESP_4 AS CODES_CORRESP_4_78, s0_.MODE_ENSEIGNEMENT_PREVISIONNEL AS E_ENSEIGNEMENT_PREVISIONNEL_79, s0_.MODE_ENSEIGNEMENT_REALISE AS MODE_ENSEIGNEMENT_REALISE_80, s0_.MODE_CALCUL AS MODE_CALCUL_81, s0_.CODE_INDEMNITE AS CODE_INDEMNITE_82, s0_.TYPE_PAIE AS TYPE_PAIE_83, s0_.MODE_CALCUL_PRIME AS MODE_CALCUL_PRIME_84, s0_.CODE_INDEMNITE_PRIME AS CODE_INDEMNITE_PRIME_85, s0_.TYPE_PAIE_PRIME AS TYPE_PAIE_PRIME_86, s0_.HISTO_CREATION AS HISTO_CREATION_87, s0_.HISTO_MODIFICATION AS HISTO_MODIFICATION_88, s0_.HISTO_DESTRUCTION AS HISTO_DESTRUCTION_89, s0_.ID AS ID_90, s0_.TYPE_INTERVENANT_ID AS TYPE_INTERVENANT_ID_91, s0_.ANNEE_ID AS ANNEE_ID_92, s0_.CONTRAT_ETAT_SORTIE_ID AS CONTRAT_ETAT_SORTIE_ID_93, s0_.AVENANT_ETAT_SORTIE_ID AS AVENANT_ETAT_SORTIE_ID_94, s0_.HISTO_CREATEUR_ID AS HISTO_CREATEUR_ID_95, s0_.HISTO_MODIFICATEUR_ID AS HISTO_MODIFICATEUR_ID_96, s0_.HISTO_DESTRUCTEUR_ID AS HISTO_DESTRUCTEUR_ID_97, s0_.TAUX_REMU_ID AS TAUX_REMU_ID_98 FROM STATUT s0_ WHERE s0_.ANNEE_ID = ? AND s0_.HISTO_DESTRUCTION IS NULL ORDER BY s0_.ORDRE ASC Params     0 => int(2023)
Types     0 => string(7) "integer"
Time 0.0023889541625977
Appel Application/Application.php(117): Application::start()
SQL SELECT cp.code || '-' || p.code privilege, r.code role FROM role_privilege rp JOIN privilege p ON p.id = rp.privilege_id JOIN categorie_privilege cp ON cp.id = p.categorie_id JOIN role r ON r.id = rp.role_id AND r.histo_destruction IS NULL Params Types Time 0.0020730495452881
Appel Application/Application.php(117): Application::start()
SQL SELECT t0.CODE AS CODE_1, t0.LIBELLE AS LIBELLE_2, t0.ID AS ID_3 FROM TYPE_INTERVENANT t0 WHERE t0.ID = ? Params     0 => int(1)
Types     0 => string(7) "integer"
Time 0.0013489723205566
Appel Application/Application.php(117): Application::start()
SQL SELECT t0.CODE AS CODE_1, t0.LIBELLE AS LIBELLE_2, t0.ID AS ID_3 FROM TYPE_INTERVENANT t0 WHERE t0.ID = ? Params     0 => int(2)
Types     0 => string(7) "integer"
Time 0.00092101097106934
Appel Application/Application.php(118): Laminas\Mvc\Application->run()
SQL SELECT id FROM offre_emploi WHERE histo_destruction IS NULL AND validation_id IS NOT NULL Params Types Time 0.0016109943389893
Appel Application/Application.php(118): Laminas\Mvc\Application->run()
SQL SELECT id, libelle FROM annee WHERE active = 1 ORDER BY id Params Types Time 0.0011270046234131
Unicaen