├── .atoum.php ├── .bettercodehub.yml ├── .bootstrap.atoum.php ├── .github ├── ISSUE_TEMPLATE │ ├── demande-de-fonctionnalit-.md │ └── rapport-de-bug.md ├── dependabot.yml ├── release-drafter.yml └── stale.yml ├── .gitignore ├── .travis.yml ├── App ├── Exceptions │ └── NotFoundException.php ├── Helpers │ └── Formatter.php ├── Libraries │ ├── ANotification.php │ ├── ApiClient.php │ ├── Calendrier │ │ ├── Evenements.php │ │ └── Evenements │ │ │ ├── AHeure.php │ │ │ ├── Conge.php │ │ │ ├── EchangeRtt.php │ │ │ ├── Ferie.php │ │ │ ├── Fermeture.php │ │ │ ├── Heure │ │ │ ├── Additionnelle.php │ │ │ └── Repos.php │ │ │ └── Weekend.php │ ├── Configuration.php │ ├── InjectableCreator.php │ ├── Interfaces │ │ ├── IHeritable.php │ │ ├── IHtmlElement.php │ │ └── IRenderable.php │ ├── Ldap.php │ ├── Notification │ │ ├── Additionnelle.php │ │ └── Repos.php │ └── Structure │ │ ├── HtmlElement.php │ │ └── Table.php ├── Models │ ├── AHeure.php │ ├── Conge.php │ ├── Heure │ │ ├── Additionnelle.php │ │ └── Repos.php │ ├── Planning.php │ └── Planning │ │ └── Creneau.php ├── Patchs │ ├── Installation │ │ └── 1.10.0.sql │ └── Maj │ │ ├── 1.11.0.sql │ │ ├── 1.12.0.sql │ │ ├── 1.12.1.sql │ │ ├── 1.13.0.sql │ │ ├── 1.13.1.sql │ │ ├── 1.13.2.sql │ │ ├── 1.13.3.sql │ │ ├── 1.13.4.sql │ │ ├── 1.13.5.sql │ │ ├── 1.14.1.sql │ │ └── 1.14.2.sql ├── ProtoControllers │ ├── APlanning.php │ ├── Conge.php │ ├── Employe │ │ ├── AHeure.php │ │ ├── Conge.php │ │ └── Heure │ │ │ ├── Additionnelle.php │ │ │ └── Repos.php │ ├── Groupe.php │ ├── Groupe │ │ ├── Gestion.php │ │ ├── Responsable.php │ │ └── Utilisateur.php │ ├── HautResponsable │ │ ├── ClotureExercice.php │ │ ├── Planning.php │ │ ├── Planning │ │ │ └── Creneau.php │ │ └── Utilisateur.php │ ├── Responsable.php │ ├── Responsable │ │ ├── ATraitement.php │ │ ├── Planning.php │ │ └── Traitement │ │ │ ├── Additionnelle.php │ │ │ ├── Conge.php │ │ │ └── Repos.php │ └── Utilisateur.php ├── Tools │ ├── check │ ├── configure │ ├── createHR │ ├── destroy │ ├── libraries │ ├── locale │ │ └── fr_FR │ │ │ └── LC_MESSAGES │ │ │ ├── php-conges.mo │ │ │ └── php-conges.po │ ├── post-checkout │ ├── restore │ ├── savedb │ ├── setJoursFeries │ ├── setup │ └── update └── Views │ ├── Calendrier.php │ ├── Calendrier │ ├── Jour.php │ └── Mois.php │ ├── ClotureExercice │ └── ClotureGlobale.php │ ├── Configuration │ └── Type_Absence │ │ └── Liste.php │ ├── Employe │ ├── ChangerMotDePasse.php │ ├── Conges │ │ └── Liste.php │ └── Heure │ │ └── Liste.php │ ├── Groupe │ ├── Edition.php │ └── Liste.php │ ├── HautResponsable │ ├── CreditConges.php │ └── Employe │ │ ├── Ajout.php │ │ └── Liste.php │ ├── JourFerie │ ├── Liste.php │ └── Mois.php │ ├── Planning │ ├── Formulaire │ │ ├── HautResponsable_Edit.php │ │ ├── Responsable_Edit.php │ │ ├── Semaine_Detail.php │ │ └── Semaine_Edit.php │ └── Liste.php │ └── Responsable │ ├── AjoutAbsence.php │ ├── Employe │ └── Liste.php │ └── Validation │ ├── ListeConges.php │ └── ListeHeures.php ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── Public ├── Assets │ ├── Css │ │ ├── reboot.css │ │ └── style_calendar_edition.css │ ├── Font │ │ └── OpenSans │ │ │ ├── open-sans-ext.woff2 │ │ │ └── open-sans.woff2 │ ├── Img │ │ ├── 1downarrow-16x16.png │ │ ├── 1uparrow-16x16.png │ │ ├── Favicons │ │ │ ├── android-chrome-144x144.png │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-36x36.png │ │ │ ├── android-chrome-48x48.png │ │ │ ├── android-chrome-72x72.png │ │ │ ├── android-chrome-96x96.png │ │ │ ├── apple-touch-icon-114x114.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-144x144.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-57x57.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-72x72.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── manifest.json │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ ├── mstile-70x70.png │ │ │ └── safari-pinned-tab.svg │ │ ├── Libertempo143x39.png │ │ ├── Libertempo64.png │ │ ├── fileprint_16x16_2.png │ │ ├── fileprint_2.png │ │ ├── pdf_16x16_2.png │ │ ├── pdf_22x22_2.png │ │ ├── stop.png │ │ ├── toolbar-bg-2.png │ │ └── tux_config_32x32.png │ └── Js │ │ ├── reboot.js │ │ └── rollbar.js ├── index.php └── template │ ├── bottom.php │ ├── error_bottom.php │ ├── error_header.php │ ├── header.php │ ├── login_bottom.php │ ├── login_form.php │ ├── login_header.php │ ├── menu_bottom.php │ ├── menu_header.php │ ├── popup_bottom.php │ ├── popup_header.php │ ├── template_define.php │ └── ui-bg_highlight-header.png ├── README.md ├── Tests ├── Units │ ├── App │ │ ├── Helpers │ │ │ └── Formatter.php │ │ ├── Libraries │ │ │ ├── ApiClient.php │ │ │ ├── Calendrier │ │ │ │ ├── Evenements.php │ │ │ │ └── Evenements │ │ │ │ │ ├── AHeure.php │ │ │ │ │ ├── Conge.php │ │ │ │ │ ├── EchangeRtt.php │ │ │ │ │ ├── Ferie.php │ │ │ │ │ ├── Fermeture.php │ │ │ │ │ ├── Heure │ │ │ │ │ ├── Additionnelle.php │ │ │ │ │ └── Repos.php │ │ │ │ │ └── Weekend.php │ │ │ ├── Configuration.php │ │ │ ├── InjectableCreator.php │ │ │ ├── Ldap.php │ │ │ └── Structure │ │ │ │ └── Table.php │ │ └── ProtoControllers │ │ │ ├── Groupe.php │ │ │ ├── Groupe │ │ │ └── Utilisateur.php │ │ │ ├── HautResponsable │ │ │ ├── ClotureExercice.php │ │ │ └── Utilisateur.php │ │ │ └── Responsable.php │ ├── TestUnit.php │ └── utilisateur │ │ └── Fonctions.php ├── jeutest.sql ├── jeutestcomplet-v1.9.sql └── script_jeutest.php ├── api └── index.php ├── backup └── .htaccess ├── browserconfig.xml ├── calcul_nb_jours_pris.php ├── calendrier.php ├── cfg ├── config_CAS_new.php ├── config_SMTP_new.php ├── config_ldap_new.php ├── dbconnect_new.php └── env_new.php ├── composer.json ├── composer.lock ├── composer.phar ├── config ├── Fonctions.php ├── config_logs.php ├── config_mail.php ├── config_type_absence.php ├── configure.php └── index.php ├── deconnexion.php ├── edition ├── Fonctions.php ├── PDF.php ├── edit_user.php ├── edition_papier.php └── edition_pdf.php ├── export ├── Fonctions.php ├── export_vcalendar.php └── ics_export.php ├── hr ├── Fonctions.php ├── hr_ajout_conges.php ├── hr_ajout_groupe.php ├── hr_ajout_planning.php ├── hr_ajout_user.php ├── hr_cloture_year.php ├── hr_edition_planning.php ├── hr_index.php ├── hr_jours_chomes.php ├── hr_jours_fermeture.php ├── hr_liste_groupe.php ├── hr_liste_planning.php ├── hr_modif_groupe.php ├── hr_modif_planning.php ├── hr_modif_user.php ├── hr_page_principale.php ├── hr_recherche_ldap.php ├── hr_suppr_groupe.php ├── hr_suppr_user.php ├── hr_traite_user.php └── hr_traitement_demandes.php ├── includes ├── SQL.php ├── define.php ├── fonction.php ├── lang_profile.php └── session.php ├── index.php ├── package.json ├── phpstan.neon ├── responsable ├── Fonctions.php ├── resp_ajout_conges.php ├── resp_index.php ├── resp_liste_planning.php ├── resp_modif_planning.php ├── resp_page_principale.php ├── resp_traite_user.php ├── resp_traitement_demandes.php ├── resp_traitement_heures_additionnelles.php └── resp_traitement_heures_repos.php ├── robots.txt ├── utilisateur ├── Fonctions.php ├── user_ajout_heure_additionnelle.php ├── user_ajout_heure_repos.php ├── user_changer_mot_de_passe.php ├── user_echange_jour_absence.php ├── user_index.php ├── user_liste_conge.php ├── user_liste_heure_additionnelle.php ├── user_liste_heure_repos.php ├── user_modif_demande.php ├── user_modif_heure_additionnelle.php ├── user_modif_heure_repos.php ├── user_nouvelle_absence.php └── user_suppr_demande.php └── version.php /.atoum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/.atoum.php -------------------------------------------------------------------------------- /.bettercodehub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/.bettercodehub.yml -------------------------------------------------------------------------------- /.bootstrap.atoum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/.bootstrap.atoum.php -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/demande-de-fonctionnalit-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/.github/ISSUE_TEMPLATE/demande-de-fonctionnalit-.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rapport-de-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/.github/ISSUE_TEMPLATE/rapport-de-bug.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | template: | 2 | ## Changements 3 | $CHANGES 4 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/.travis.yml -------------------------------------------------------------------------------- /App/Exceptions/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Exceptions/NotFoundException.php -------------------------------------------------------------------------------- /App/Helpers/Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Helpers/Formatter.php -------------------------------------------------------------------------------- /App/Libraries/ANotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/ANotification.php -------------------------------------------------------------------------------- /App/Libraries/ApiClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/ApiClient.php -------------------------------------------------------------------------------- /App/Libraries/Calendrier/Evenements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Calendrier/Evenements.php -------------------------------------------------------------------------------- /App/Libraries/Calendrier/Evenements/AHeure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Calendrier/Evenements/AHeure.php -------------------------------------------------------------------------------- /App/Libraries/Calendrier/Evenements/Conge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Calendrier/Evenements/Conge.php -------------------------------------------------------------------------------- /App/Libraries/Calendrier/Evenements/EchangeRtt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Calendrier/Evenements/EchangeRtt.php -------------------------------------------------------------------------------- /App/Libraries/Calendrier/Evenements/Ferie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Calendrier/Evenements/Ferie.php -------------------------------------------------------------------------------- /App/Libraries/Calendrier/Evenements/Fermeture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Calendrier/Evenements/Fermeture.php -------------------------------------------------------------------------------- /App/Libraries/Calendrier/Evenements/Heure/Additionnelle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Calendrier/Evenements/Heure/Additionnelle.php -------------------------------------------------------------------------------- /App/Libraries/Calendrier/Evenements/Heure/Repos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Calendrier/Evenements/Heure/Repos.php -------------------------------------------------------------------------------- /App/Libraries/Calendrier/Evenements/Weekend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Calendrier/Evenements/Weekend.php -------------------------------------------------------------------------------- /App/Libraries/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Configuration.php -------------------------------------------------------------------------------- /App/Libraries/InjectableCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/InjectableCreator.php -------------------------------------------------------------------------------- /App/Libraries/Interfaces/IHeritable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Interfaces/IHeritable.php -------------------------------------------------------------------------------- /App/Libraries/Interfaces/IHtmlElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Interfaces/IHtmlElement.php -------------------------------------------------------------------------------- /App/Libraries/Interfaces/IRenderable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Interfaces/IRenderable.php -------------------------------------------------------------------------------- /App/Libraries/Ldap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Ldap.php -------------------------------------------------------------------------------- /App/Libraries/Notification/Additionnelle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Notification/Additionnelle.php -------------------------------------------------------------------------------- /App/Libraries/Notification/Repos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Notification/Repos.php -------------------------------------------------------------------------------- /App/Libraries/Structure/HtmlElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Structure/HtmlElement.php -------------------------------------------------------------------------------- /App/Libraries/Structure/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Libraries/Structure/Table.php -------------------------------------------------------------------------------- /App/Models/AHeure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Models/AHeure.php -------------------------------------------------------------------------------- /App/Models/Conge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Models/Conge.php -------------------------------------------------------------------------------- /App/Models/Heure/Additionnelle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Models/Heure/Additionnelle.php -------------------------------------------------------------------------------- /App/Models/Heure/Repos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Models/Heure/Repos.php -------------------------------------------------------------------------------- /App/Models/Planning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Models/Planning.php -------------------------------------------------------------------------------- /App/Models/Planning/Creneau.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Models/Planning/Creneau.php -------------------------------------------------------------------------------- /App/Patchs/Installation/1.10.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Patchs/Installation/1.10.0.sql -------------------------------------------------------------------------------- /App/Patchs/Maj/1.11.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Patchs/Maj/1.11.0.sql -------------------------------------------------------------------------------- /App/Patchs/Maj/1.12.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Patchs/Maj/1.12.0.sql -------------------------------------------------------------------------------- /App/Patchs/Maj/1.12.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Patchs/Maj/1.12.1.sql -------------------------------------------------------------------------------- /App/Patchs/Maj/1.13.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Patchs/Maj/1.13.0.sql -------------------------------------------------------------------------------- /App/Patchs/Maj/1.13.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Patchs/Maj/1.13.1.sql -------------------------------------------------------------------------------- /App/Patchs/Maj/1.13.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Patchs/Maj/1.13.2.sql -------------------------------------------------------------------------------- /App/Patchs/Maj/1.13.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Patchs/Maj/1.13.3.sql -------------------------------------------------------------------------------- /App/Patchs/Maj/1.13.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Patchs/Maj/1.13.4.sql -------------------------------------------------------------------------------- /App/Patchs/Maj/1.13.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Patchs/Maj/1.13.5.sql -------------------------------------------------------------------------------- /App/Patchs/Maj/1.14.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Patchs/Maj/1.14.1.sql -------------------------------------------------------------------------------- /App/Patchs/Maj/1.14.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Patchs/Maj/1.14.2.sql -------------------------------------------------------------------------------- /App/ProtoControllers/APlanning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/APlanning.php -------------------------------------------------------------------------------- /App/ProtoControllers/Conge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Conge.php -------------------------------------------------------------------------------- /App/ProtoControllers/Employe/AHeure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Employe/AHeure.php -------------------------------------------------------------------------------- /App/ProtoControllers/Employe/Conge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Employe/Conge.php -------------------------------------------------------------------------------- /App/ProtoControllers/Employe/Heure/Additionnelle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Employe/Heure/Additionnelle.php -------------------------------------------------------------------------------- /App/ProtoControllers/Employe/Heure/Repos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Employe/Heure/Repos.php -------------------------------------------------------------------------------- /App/ProtoControllers/Groupe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Groupe.php -------------------------------------------------------------------------------- /App/ProtoControllers/Groupe/Gestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Groupe/Gestion.php -------------------------------------------------------------------------------- /App/ProtoControllers/Groupe/Responsable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Groupe/Responsable.php -------------------------------------------------------------------------------- /App/ProtoControllers/Groupe/Utilisateur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Groupe/Utilisateur.php -------------------------------------------------------------------------------- /App/ProtoControllers/HautResponsable/ClotureExercice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/HautResponsable/ClotureExercice.php -------------------------------------------------------------------------------- /App/ProtoControllers/HautResponsable/Planning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/HautResponsable/Planning.php -------------------------------------------------------------------------------- /App/ProtoControllers/HautResponsable/Planning/Creneau.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/HautResponsable/Planning/Creneau.php -------------------------------------------------------------------------------- /App/ProtoControllers/HautResponsable/Utilisateur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/HautResponsable/Utilisateur.php -------------------------------------------------------------------------------- /App/ProtoControllers/Responsable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Responsable.php -------------------------------------------------------------------------------- /App/ProtoControllers/Responsable/ATraitement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Responsable/ATraitement.php -------------------------------------------------------------------------------- /App/ProtoControllers/Responsable/Planning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Responsable/Planning.php -------------------------------------------------------------------------------- /App/ProtoControllers/Responsable/Traitement/Additionnelle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Responsable/Traitement/Additionnelle.php -------------------------------------------------------------------------------- /App/ProtoControllers/Responsable/Traitement/Conge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Responsable/Traitement/Conge.php -------------------------------------------------------------------------------- /App/ProtoControllers/Responsable/Traitement/Repos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Responsable/Traitement/Repos.php -------------------------------------------------------------------------------- /App/ProtoControllers/Utilisateur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/ProtoControllers/Utilisateur.php -------------------------------------------------------------------------------- /App/Tools/check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/check -------------------------------------------------------------------------------- /App/Tools/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/configure -------------------------------------------------------------------------------- /App/Tools/createHR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/createHR -------------------------------------------------------------------------------- /App/Tools/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/destroy -------------------------------------------------------------------------------- /App/Tools/libraries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/libraries -------------------------------------------------------------------------------- /App/Tools/locale/fr_FR/LC_MESSAGES/php-conges.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/locale/fr_FR/LC_MESSAGES/php-conges.mo -------------------------------------------------------------------------------- /App/Tools/locale/fr_FR/LC_MESSAGES/php-conges.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/locale/fr_FR/LC_MESSAGES/php-conges.po -------------------------------------------------------------------------------- /App/Tools/post-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/post-checkout -------------------------------------------------------------------------------- /App/Tools/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/restore -------------------------------------------------------------------------------- /App/Tools/savedb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/savedb -------------------------------------------------------------------------------- /App/Tools/setJoursFeries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/setJoursFeries -------------------------------------------------------------------------------- /App/Tools/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/setup -------------------------------------------------------------------------------- /App/Tools/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Tools/update -------------------------------------------------------------------------------- /App/Views/Calendrier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Calendrier.php -------------------------------------------------------------------------------- /App/Views/Calendrier/Jour.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Calendrier/Jour.php -------------------------------------------------------------------------------- /App/Views/Calendrier/Mois.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Calendrier/Mois.php -------------------------------------------------------------------------------- /App/Views/ClotureExercice/ClotureGlobale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/ClotureExercice/ClotureGlobale.php -------------------------------------------------------------------------------- /App/Views/Configuration/Type_Absence/Liste.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Configuration/Type_Absence/Liste.php -------------------------------------------------------------------------------- /App/Views/Employe/ChangerMotDePasse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Employe/ChangerMotDePasse.php -------------------------------------------------------------------------------- /App/Views/Employe/Conges/Liste.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Employe/Conges/Liste.php -------------------------------------------------------------------------------- /App/Views/Employe/Heure/Liste.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Employe/Heure/Liste.php -------------------------------------------------------------------------------- /App/Views/Groupe/Edition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Groupe/Edition.php -------------------------------------------------------------------------------- /App/Views/Groupe/Liste.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Groupe/Liste.php -------------------------------------------------------------------------------- /App/Views/HautResponsable/CreditConges.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/HautResponsable/CreditConges.php -------------------------------------------------------------------------------- /App/Views/HautResponsable/Employe/Ajout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/HautResponsable/Employe/Ajout.php -------------------------------------------------------------------------------- /App/Views/HautResponsable/Employe/Liste.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/HautResponsable/Employe/Liste.php -------------------------------------------------------------------------------- /App/Views/JourFerie/Liste.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/JourFerie/Liste.php -------------------------------------------------------------------------------- /App/Views/JourFerie/Mois.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/JourFerie/Mois.php -------------------------------------------------------------------------------- /App/Views/Planning/Formulaire/HautResponsable_Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Planning/Formulaire/HautResponsable_Edit.php -------------------------------------------------------------------------------- /App/Views/Planning/Formulaire/Responsable_Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Planning/Formulaire/Responsable_Edit.php -------------------------------------------------------------------------------- /App/Views/Planning/Formulaire/Semaine_Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Planning/Formulaire/Semaine_Detail.php -------------------------------------------------------------------------------- /App/Views/Planning/Formulaire/Semaine_Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Planning/Formulaire/Semaine_Edit.php -------------------------------------------------------------------------------- /App/Views/Planning/Liste.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Planning/Liste.php -------------------------------------------------------------------------------- /App/Views/Responsable/AjoutAbsence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Responsable/AjoutAbsence.php -------------------------------------------------------------------------------- /App/Views/Responsable/Employe/Liste.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Responsable/Employe/Liste.php -------------------------------------------------------------------------------- /App/Views/Responsable/Validation/ListeConges.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Responsable/Validation/ListeConges.php -------------------------------------------------------------------------------- /App/Views/Responsable/Validation/ListeHeures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/App/Views/Responsable/Validation/ListeHeures.php -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Makefile -------------------------------------------------------------------------------- /Public/Assets/Css/reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Css/reboot.css -------------------------------------------------------------------------------- /Public/Assets/Css/style_calendar_edition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Css/style_calendar_edition.css -------------------------------------------------------------------------------- /Public/Assets/Font/OpenSans/open-sans-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Font/OpenSans/open-sans-ext.woff2 -------------------------------------------------------------------------------- /Public/Assets/Font/OpenSans/open-sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Font/OpenSans/open-sans.woff2 -------------------------------------------------------------------------------- /Public/Assets/Img/1downarrow-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/1downarrow-16x16.png -------------------------------------------------------------------------------- /Public/Assets/Img/1uparrow-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/1uparrow-16x16.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/android-chrome-144x144.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/android-chrome-36x36.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/android-chrome-48x48.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/android-chrome-72x72.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/android-chrome-96x96.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/favicon-16x16.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/favicon-32x32.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/favicon-96x96.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/favicon.ico -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/manifest.json -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/mstile-144x144.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/mstile-150x150.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/mstile-310x150.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/mstile-310x310.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/mstile-70x70.png -------------------------------------------------------------------------------- /Public/Assets/Img/Favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /Public/Assets/Img/Libertempo143x39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Libertempo143x39.png -------------------------------------------------------------------------------- /Public/Assets/Img/Libertempo64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/Libertempo64.png -------------------------------------------------------------------------------- /Public/Assets/Img/fileprint_16x16_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/fileprint_16x16_2.png -------------------------------------------------------------------------------- /Public/Assets/Img/fileprint_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/fileprint_2.png -------------------------------------------------------------------------------- /Public/Assets/Img/pdf_16x16_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/pdf_16x16_2.png -------------------------------------------------------------------------------- /Public/Assets/Img/pdf_22x22_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/pdf_22x22_2.png -------------------------------------------------------------------------------- /Public/Assets/Img/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/stop.png -------------------------------------------------------------------------------- /Public/Assets/Img/toolbar-bg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/toolbar-bg-2.png -------------------------------------------------------------------------------- /Public/Assets/Img/tux_config_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Img/tux_config_32x32.png -------------------------------------------------------------------------------- /Public/Assets/Js/reboot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Js/reboot.js -------------------------------------------------------------------------------- /Public/Assets/Js/rollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/Assets/Js/rollbar.js -------------------------------------------------------------------------------- /Public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/index.php -------------------------------------------------------------------------------- /Public/template/bottom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libertempo/web/HEAD/Public/template/bottom.php -------------------------------------------------------------------------------- /Public/template/error_bottom.php: -------------------------------------------------------------------------------- 1 | 2 |