1
0
Fork 0
friendica_2020-09-1_sharedH.../src/Module
Michael Vogel a20c6e3216
Apply suggestions from code review
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
2022-11-03 21:13:03 +01:00
..
ActivityPub Rewrite: 2022-10-15 00:44:06 +02:00
Admin
Api (Hopefully) query performance improvements 2022-11-01 08:45:25 -04:00
Blocklist/Domain Changed: 2022-08-19 19:12:29 +02:00
Calendar
Contact
Conversation (Hopefully) query performance improvements 2022-11-01 08:45:25 -04:00
Debug Fix messages.po issue 2022-10-21 10:19:13 +02:00
DFRN
Diaspora
Filer UserSession class [6] - Refactor src/Module/ files without DI 2022-10-21 10:25:07 +02:00
HTTPException
Item
Notifications
OAuth
Profile
Search UserSession class [5] - Refactor src/Module/ files with DI 2022-10-20 22:59:39 +02:00
Security
Settings Fix condition for follows export 2022-10-24 18:21:10 -04:00
Special
Update
User
WellKnown
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php
BaseAdmin.php
BaseApi.php Rewrite: 2022-10-15 00:44:06 +02:00
BaseNotifications.php UserSession class [6] - Refactor src/Module/ files without DI 2022-10-21 10:25:07 +02:00
BaseProfile.php
BaseSearch.php
BaseSettings.php
Bookmarklet.php UserSession class [5] - Refactor src/Module/ files with DI 2022-10-20 22:59:39 +02:00
Contact.php
Credits.php
Delegation.php
Directory.php UserSession class [5] - Refactor src/Module/ files with DI 2022-10-20 22:59:39 +02:00
Feed.php UserSession class [5] - Refactor src/Module/ files with DI 2022-10-20 22:59:39 +02:00
FollowConfirm.php
Friendica.php
FriendSuggest.php
Group.php UserSession class [5] - Refactor src/Module/ files with DI 2022-10-20 22:59:39 +02:00
Hashtag.php
HCard.php
Help.php
Home.php
Install.php The EOL constant is removed 2022-10-18 12:29:50 +00:00
Invite.php
Magic.php UserSession class [6] - Refactor src/Module/ files without DI 2022-10-21 10:25:07 +02:00
Maintenance.php
Manifest.php
NodeInfo110.php The friendica constants have been moved to the app class 2022-10-17 10:37:48 +00:00
NodeInfo120.php The friendica constants have been moved to the app class 2022-10-17 10:37:48 +00:00
NodeInfo210.php
NoScrape.php UserSession class [5] - Refactor src/Module/ files with DI 2022-10-20 22:59:39 +02:00
Oembed.php
OpenSearch.php
Owa.php
ParseUrl.php Fix missing/wrong IHandleUserSessions usages 2022-10-23 11:32:43 +02:00
PermissionTooltip.php
Photo.php
Proxy.php UserSession class [5] - Refactor src/Module/ files with DI 2022-10-20 22:59:39 +02:00
PublicRSAKey.php
RandomProfile.php
README.md
ReallySimpleDiscovery.php
Register.php
Response.php
RobotsTxt.php
Smilies.php
Statistics.php
Theme.php
ThemeDetails.php
ToggleMobile.php
Tos.php
Welcome.php
Xrd.php Move Follow to /contact namespace 2022-10-31 20:58:27 +01:00

Friendica\Module

The Module namespace contains the different modules of Friendica. Each module is loaded through the App.

There are mainly two types of modules:

  • frontend modules to interact with users
  • backend modules to interact with machine requests

Frontend modules

This type of modules mainly needs a template, which are generally located at view/templates/.

A frontend module should extend the BaseModule, especially the content() method.

Backend modules

This type of modules mainly responds either with encoded XML or with JSON output. It isn't intended to respond with human readable text.

A frontend module should extend the BaseModule, especially the rawContent() method.

Routing

Every module needs to be accessed within a route. The routes are defined inside Router->collectRoutes().

Use the given routes as a pattern for further routes.

The routing library and further documentation can be found here.