forked from jvilarroig/MyNotes
Update
This commit is contained in:
parent
beb887c388
commit
95a422d371
11
Laminas.md
11
Laminas.md
|
@ -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(?)
|
||||
|
|
|
@ -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
|
||||
|
Loading…
Reference in New Issue