This commit is contained in:
Javier Vilarroig Christensen 2024-08-30 11:24:14 +02:00
parent beb887c388
commit 95a422d371
2 changed files with 21 additions and 3 deletions

View File

@ -29,9 +29,11 @@ Can be seen as an entity.
The Model persists the data and enforces the business rules.
The Controller
The Controller routes http calls -> Reacts to user actions
* Controller pases the data to the view with a ViewModel object
The View
The View produces HTML pages
* Receives the data from the Controller by a ViewModel object
**Are modules general enough to be used for a full Spinco product? or a main entity in the datamodel?**
* Modules must be registered at /composer.json for class autoloading
@ -44,6 +46,7 @@ Composed by:
* Controllers available for the module
* Routes
* View manager
* Service Manager
* src/
* Module.php
* Must implement getConfig from ConfigProviderInterface to load the module configuration.
@ -56,9 +59,11 @@ Composed by:
* It's used by the controller to retieave an persist data
* __MUST__ implement exchangeArray method
* This is the method that persists the data in collaboration with Lamina's `TableGateway` class
* Entity table (ex- AlbumTYable.php)
* Entity table (ex. AlbumTable.php)
* The class that interacts with the database via the `TableGatewayInterface` given in the constructor
Only one instance is to be created by the `ServiceManager`
* Entity table Factory (ex. AlbumTableFactory)
* Used by the Service Manager to create the instance.
* view/
* album(?)/
- album(?)

13
LaminasTest.md Normal file
View File

@ -0,0 +1,13 @@
# Laminas Test
This is a POC for UniData web application using Laminas.
# Next
* Start with a simpified Articles table with all the dependencies.
* Articles
* Main Type
* Group
* Family
* Root
* Code
* Label