]> git.mxchange.org Git - friendica.git/blob - src/Module/README.md
bugfix
[friendica.git] / src / Module / README.md
1 ## Friendica\Module
2
3 The Module namespace contains the different modules of Friendica.
4 Each module is loaded through the [`App`](https://github.com/friendica/friendica/blob/develop/src/App.php).
5
6 Rules for Modules:
7 -       Named like the call (i.e. https://friendica.test/contact => `Contact`)
8 -       Start with capitals and are **not** camelCased.
9 -       Directly interacting with a given request (POST or GET)
10 -       Extending [`BaseModule`](https://github.com/friendica/friendica/blob/develop/src/BaseModule.php).