friendica/src/Module
2022-07-25 09:09:22 -04:00
..
ActivityPub
Admin Merge remote-tracking branch 'upstream/develop' into server-detection 2022-07-16 12:44:21 +00:00
Api Merge remote-tracking branch 'upstream/develop' into server-detection 2022-07-16 12:44:21 +00:00
Contact Remove unused uid parameter in Item::newURI 2022-07-09 07:39:51 -04:00
Conversation Changes 2022-06-30 14:52:37 +02:00
Debug Fetching of missing posts is reworked 2022-07-21 05:16:14 +00:00
DFRN Fix wrong type-hint in Module/DFRN/Notify 2022-07-25 09:09:22 -04:00
Diaspora
Events
Filer
HTTPException Respect Forwarded-For headers 2022-06-23 22:42:35 +02:00
Item
Notifications Make network counts at the group level system level configurable 2022-07-08 15:29:34 -04:00
OAuth
Profile
Search Changes: 2022-07-19 18:02:38 +02:00
Security adhere use and type-hints :-) 2022-07-09 11:41:36 +02:00
Settings Split DBStructure & View to avoid DB-calls and dependencies for basic operations 2022-07-12 23:40:31 +02:00
Special
Update
WellKnown
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php
BaseAdmin.php
BaseApi.php
BaseNotifications.php
BaseProfile.php
BaseSearch.php Changes: 2022-07-19 18:02:38 +02:00
BaseSettings.php
Bookmarklet.php
Contact.php Changes 2022-06-30 14:50:28 +02:00
Credits.php
Delegation.php
Directory.php
Feed.php
FollowConfirm.php
Friendica.php
FriendSuggest.php
Group.php
Hashtag.php
HCard.php
Help.php
Home.php
Install.php Split DBStructure & View to avoid DB-calls and dependencies for basic operations 2022-07-12 23:40:31 +02:00
Invite.php
Magic.php
Maintenance.php
Manifest.php
NodeInfo110.php Add expected "users" property to NodeInfo usage property for all versions 2022-07-23 13:21:44 -04:00
NodeInfo120.php Add expected "users" property to NodeInfo usage property for all versions 2022-07-23 13:21:44 -04:00
NodeInfo210.php Add expected "users" property to NodeInfo usage property for all versions 2022-07-23 13:21:44 -04:00
NoScrape.php
Oembed.php
OpenSearch.php
Owa.php
ParseUrl.php
PermissionTooltip.php
Photo.php Fixed: 2022-06-27 15:16:16 +02:00
Proxy.php
PublicRSAKey.php
RandomProfile.php
README.md
ReallySimpleDiscovery.php
Register.php
RemoteFollow.php
Response.php
RobotsTxt.php
Smilies.php
Statistics.php
Theme.php
ThemeDetails.php
ToggleMobile.php
Tos.php
Welcome.php
Xrd.php

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.