Architecture
The new JoomLeague is built for Joomla 6.x.
Namespace
Root namespace:
php
Joomleague\Component\JoomleagueAdministrator:
php
Joomleague\Component\Joomleague\AdministratorSite:
php
Joomleague\Component\Joomleague\SiteDependency Injection
New code should not use direct global access such as Factory::getDbo() for business logic.
Database, application and other services should be injected and registered in services/provider.php.
Layer separation
- models return data;
- services contain business logic;
- views prepare data for templates;
- templates render HTML;
- JavaScript belongs to media assets.