mirror of
https://github.com/friendica/friendica
synced 2024-11-13 17:02:54 +00:00
496 B
496 B
Friendica\Module
The Module namespace contains the different modules of Friendica.
Each module is loaded through the App
.
Rules for Modules:
- Named like the call (i.e. https://friendica.test/contact =>
Contact
) - Start with capitals and are not camelCased.
- Directly interacting with a given request (POST or GET)
- Extending
BaseModule
.