]> git.agnieray.net Git - galette.git/commit - galette/lib/Galette/Controllers/AuthController.php
Integrate php-di; closes #1372
authorJohan Cwiklinski <jcwiklinski@teclib.com>
Wed, 4 Dec 2019 07:39:14 +0000 (08:39 +0100)
committerJohan Cwiklinski <johan@x-tnd.be>
Sun, 13 Dec 2020 09:53:24 +0000 (10:53 +0100)
commitc849d915320c58398d3e43a125dfe60770e8db46
tree990bfb92879e7a8d26b32b3ceb5ba932e026e242
parentf5bb4173942bf5712bde47af9b1dc53bc102fca6
Integrate php-di; closes #1372

Rework some routes; refs #1354
Rework routes; args are now passed on separate variables
Controller syntax is not supported by slim php-di bridge
Fix middleware tests
Fix wrong unknown symbols in checks
Fix installer instantiation
Setup DI on plugins, add controllers abstract classes
58 files changed:
.composer-require-checker.config.json
galette/composer.json
galette/composer.lock
galette/includes/dependencies.php
galette/includes/galette.inc.php
galette/includes/main.inc.php
galette/includes/routes/ajax.routes.php
galette/includes/routes/authentication.routes.php
galette/includes/routes/contributions.routes.php
galette/includes/routes/groups.routes.php
galette/includes/routes/main.routes.php
galette/includes/routes/management.routes.php
galette/includes/routes/members.routes.php
galette/includes/routes/plugins.routes.php
galette/includes/routes/public_pages.routes.php
galette/lib/Galette/Controllers/AbstractController.php
galette/lib/Galette/Controllers/AbstractPluginController.php [new file with mode: 0644]
galette/lib/Galette/Controllers/AuthController.php
galette/lib/Galette/Controllers/Crud/AbstractPluginController.php [new file with mode: 0644]
galette/lib/Galette/Controllers/Crud/ContributionsController.php
galette/lib/Galette/Controllers/Crud/DynamicFieldsController.php
galette/lib/Galette/Controllers/Crud/EntitledsController.php
galette/lib/Galette/Controllers/Crud/GroupsController.php
galette/lib/Galette/Controllers/Crud/MailingsController.php
galette/lib/Galette/Controllers/Crud/MembersController.php
galette/lib/Galette/Controllers/Crud/PaymentTypeController.php
galette/lib/Galette/Controllers/Crud/SavedSearchesController.php
galette/lib/Galette/Controllers/Crud/TitlesController.php
galette/lib/Galette/Controllers/Crud/TransactionsController.php
galette/lib/Galette/Controllers/CrudController.php
galette/lib/Galette/Controllers/CsvController.php
galette/lib/Galette/Controllers/DynamicTranslationsController.php
galette/lib/Galette/Controllers/GaletteController.php
galette/lib/Galette/Controllers/HistoryController.php
galette/lib/Galette/Controllers/ImagesController.php
galette/lib/Galette/Controllers/PdfController.php
galette/lib/Galette/Controllers/PluginsController.php
galette/lib/Galette/Controllers/TextController.php
galette/lib/Galette/Core/LightSlimApp.php [new file with mode: 0644]
galette/lib/Galette/Core/Pagination.php
galette/lib/Galette/Core/Picture.php
galette/lib/Galette/Core/PluginControllerTrait.php [new file with mode: 0644]
galette/lib/Galette/Core/Plugins.php
galette/lib/Galette/Core/SlimApp.php [new file with mode: 0644]
galette/lib/Galette/Entity/Entitled.php
galette/lib/Galette/Entity/FieldsConfig.php
galette/lib/Galette/Entity/Transaction.php
galette/lib/Galette/Middleware/Authenticate.php
galette/lib/Galette/Middleware/CheckAcls.php
galette/lib/Galette/Middleware/Language.php
galette/lib/Galette/Middleware/MembersNavigate.php
galette/lib/Galette/Middleware/Telemetry.php
galette/templates/default/gestion_intitules.tpl
galette/webroot/installer.php
tests/Galette/Core/tests/units/Plugins.php
tests/Galette/IO/tests/units/CsvIn.php
tests/Galette/Middleware/tests/unit/CheckAcls.php
tests/TestsBootstrap.php