friendica/src/Module
2023-09-16 08:03:50 +00:00
..
ActivityPub Centralize Vary header declaration in ActivityPub::isRequest 2023-07-08 22:24:01 -04:00
Admin Merge pull request #13246 from nupplaphil/feat/addons 2023-07-23 06:58:46 -04:00
Api Replace remaining references to default banner image by api.mastodon_banner configuration value 2023-08-17 21:58:53 -04:00
Blocklist/Domain
Calendar Replace "group" with "circle" in the rest of the code 2023-05-27 22:01:45 -04:00
Contact Indention fixed 2023-09-16 08:03:50 +00:00
Conversation Fix the erratic page update behaviour 2023-09-16 04:21:59 +00:00
Debug Unified BBCode conversion, improved proxy functionality 2023-07-15 20:12:08 +00:00
DFRN
Diaspora spelling: protocol 2023-03-26 16:14:16 -04:00
Filer
HTTPException
Item Fix DisplayNotFound page 2023-08-20 14:26:27 -04:00
Media Simplify image url 2023-05-17 20:30:45 +00:00
Moderation Code standards againg 2023-09-10 08:16:06 +00:00
Notifications Preparations for a moderator role 2023-08-10 21:06:08 +00:00
OAuth Reformatted code 2023-07-23 20:20:46 +00:00
OStatus The query condition for active users are unified 2023-09-08 15:01:51 +00:00
Post The Emojipicker is added to Frio for new posts 2023-05-04 10:54:29 +00:00
Profile The query condition for active users are unified 2023-09-08 15:01:51 +00:00
Search Improved logging 2023-08-03 20:36:19 +00:00
Security The query condition for active users are unified 2023-09-08 15:01:51 +00:00
Settings Setting to select your network tabs 2023-09-09 17:38:09 +00:00
Special Implement ignored server block in conversations 2023-08-20 14:27:43 -04:00
Update Setting to select your network tabs 2023-09-09 17:38:09 +00:00
User Replace "group" with "circle" in the rest of the code 2023-05-27 22:01:45 -04:00
WellKnown Ensure that the baseurl return value is a string 2023-05-11 08:13:19 +00:00
About.php
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php
BaseAdmin.php
BaseApi.php Don't perform BasicAuth on public endpoints 2023-04-08 19:17:57 +00:00
BaseModeration.php Basic functionality for seeing reports 2023-09-10 08:00:44 +00:00
BaseNotifications.php spelling: with 2023-03-26 16:14:16 -04:00
BaseProfile.php
BaseSearch.php Replace "forum" by "group" in the rest of the code 2023-06-02 13:52:41 -04:00
BaseSettings.php Setting to select your network tabs 2023-09-09 17:38:09 +00:00
Bookmarklet.php
Circle.php Issue 13289: Ensure to not respect deactivated connector networks 2023-07-22 10:49:42 +00:00
Contact.php Display the contact alias if the URL is no HTTP link 2023-06-18 16:49:38 +00:00
Credits.php
Delegation.php Remove support for user.parent-uid = 0 2023-05-29 18:32:21 -04:00
Directory.php
Feed.php
FollowConfirm.php
Friendica.php Merge pull request #13291 from Quix0r/features/config-blocklist-published 2023-08-12 11:31:42 +02:00
FriendSuggest.php
Hashtag.php Rework Hashtag module to avoid undefined key error 2023-05-06 23:55:41 -04:00
HCard.php Ensure that the baseurl return value is a string 2023-05-11 08:13:19 +00:00
Help.php
Home.php
Install.php Fix: Force baseUrl being a string 2023-04-15 14:17:30 +00:00
Invite.php fixes registration link in invitations 2023-07-05 10:12:10 +02:00
Magic.php Merge remote-tracking branch 'upstream/develop' into lemmy 2023-06-18 17:38:39 +00:00
Maintenance.php
Manifest.php
NodeInfo110.php The twitter addon is no import connector anymore 2023-08-09 20:29:45 +00:00
NodeInfo120.php The twitter addon is no import connector anymore 2023-08-09 20:29:45 +00:00
NodeInfo210.php The twitter addon is no import connector anymore 2023-08-09 20:29:45 +00:00
NoScrape.php
Oembed.php
OpenSearch.php Ensure that the baseurl return value is a string 2023-05-11 08:13:19 +00:00
Owa.php spelling: public 2023-03-26 20:04:18 -04:00
ParseUrl.php
PermissionTooltip.php Replace "group" with "circle" in the rest of the code 2023-05-27 22:01:45 -04:00
Photo.php Replace remaining references to default banner image by api.mastodon_banner configuration value 2023-08-17 21:58:53 -04:00
Proxy.php
PublicRSAKey.php
RandomProfile.php
README.md
ReallySimpleDiscovery.php
Register.php Unified BBCode conversion, improved proxy functionality 2023-07-15 20:12:08 +00:00
Response.php
RobotsTxt.php GPTBot added to the default robots.txt 2023-08-20 12:41:42 +00:00
Smilies.php
Statistics.php The twitter addon is no import connector anymore 2023-08-09 20:29:45 +00:00
Theme.php
ThemeDetails.php
ToggleMobile.php Rework Module\ToggleMobile to check for local links 2023-07-26 19:11:39 +02:00
Tos.php Unified BBCode conversion, improved proxy functionality 2023-07-15 20:12:08 +00:00
Welcome.php Replace "group" with "circle" in the rest of the code 2023-05-27 22:01:45 -04:00
Xrd.php Centralize Vary header declaration in ActivityPub::isRequest 2023-07-08 22:24:01 -04: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.