friendica/src/Module
2022-10-07 17:20:22 -04:00
..
ActivityPub Use the cached activity function 2022-09-07 19:46:24 +00:00
Admin Akkoma is added to the federation statistics 2022-10-06 04:57:43 +00:00
Api Fix parameter names before being passed to Model\Event::store 2022-10-07 17:20:22 -04:00
Blocklist/Domain Changed: 2022-08-19 19:12:29 +02:00
Contact Remove poke feature 2022-08-09 14:55:55 -04:00
Conversation Simplified structure 2022-09-25 07:12:05 +00:00
Debug More prevention of double processing of the same content 2022-08-06 17:06:55 +00:00
DFRN Some more changed log levels 2022-08-31 05:01:22 +00:00
Diaspora
Events
Filer Enable POST route for /filerm module 2022-09-11 02:36:06 -04:00
HTTPException
Item Issue 11853/11867: Fix reshare of public posts 2022-08-27 21:22:49 +00:00
Notifications
OAuth Some more changed log levels 2022-08-31 05:01:22 +00:00
Profile (Hopefully) SQL improvements 2022-09-24 17:56:07 +00:00
Search
Security
Settings Pagecache for frequently fetched pages 2022-09-06 06:04:41 +00:00
Special
Update Some more index / fatal erros fixed 2022-08-16 11:23:47 +00:00
WellKnown Template based XML generation is replaced with native XML 2022-09-11 07:00:16 +00:00
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php
BaseAdmin.php
BaseApi.php Some more changed log levels 2022-08-31 05:01:22 +00:00
BaseNotifications.php
BaseProfile.php
BaseSearch.php Issue 11891: Enable search for user@domain.tld 2022-10-03 13:53:19 +00:00
BaseSettings.php
Bookmarklet.php
Contact.php Issue 11891: Enable search for user@domain.tld 2022-10-03 13:53:19 +00: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
Invite.php
Magic.php
Maintenance.php
Manifest.php
NodeInfo110.php
NodeInfo120.php
NodeInfo210.php
NoScrape.php The fcontact table is now updated in the background to improve performance 2022-09-18 15:40:44 +02:00
Oembed.php
OpenSearch.php
Owa.php
ParseUrl.php
PermissionTooltip.php
Photo.php Some more changed log levels 2022-08-31 05:01:22 +00:00
Proxy.php Some more changed log levels 2022-08-31 05:01:22 +00:00
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 Detect and remove contact duplicates 2022-09-16 05:00:06 +00: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.