friendica/src/Module
2022-08-13 23:28:20 -04:00
..
ActivityPub
Admin Use L10n->tt instead of t() for plural strings in Module\Admin\Federation 2022-08-08 02:08:40 -04:00
Api Normalize start_time and end_time parameter names in Friendica API event endpoints 2022-08-13 23:28:20 -04:00
Blocklist/Domain Move server domain pattern blocklist features to its own class 2022-07-28 05:38:50 -04:00
Contact Remove poke feature 2022-08-09 14:55:55 -04:00
Conversation Changes 2022-06-30 14:52:37 +02:00
Debug More prevention of double processing of the same content 2022-08-06 17:06:55 +00:00
DFRN Improved message handling / new activity relay handling 2022-07-27 17:39:00 +00:00
Diaspora Changes: 2022-07-29 00:08:38 +02:00
Events
Filer
HTTPException Respect Forwarded-For headers 2022-06-23 22:42:35 +02:00
Item Improvements for the "post-reason" 2022-07-29 14:17:53 +00:00
Notifications Move system messages from boot to own class 2022-07-27 11:54:50 -04:00
OAuth
Profile Issue 11470: Check for removed account 2022-05-28 16:21:41 +00:00
Search Changes: 2022-07-19 18:02:38 +02:00
Security Add password length limit if using the Blowfish hashing algorithm 2022-08-01 12:12:18 -04:00
Settings Remove poke feature 2022-08-09 14:55:55 -04:00
Special Fix WSOD when Renderer throws exception 2022-08-05 15:28:21 +02:00
Update New function to exit the program 2022-05-18 02:13:54 +00:00
WellKnown
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php New function to exit the program 2022-05-18 02:13:54 +00:00
BaseAdmin.php Changes: 2022-06-22 14:36:45 +02:00
BaseApi.php Use L10n->tt instead of t() for plural string in Module\BaseApi 2022-08-08 02:08:43 -04:00
BaseNotifications.php
BaseProfile.php
BaseSearch.php Changes: 2022-07-19 18:02:38 +02:00
BaseSettings.php Accesskey was used twice 2022-06-19 06:30:00 +02:00
Bookmarklet.php
Contact.php Changes 2022-06-30 14:50:28 +02:00
Credits.php
Delegation.php
Directory.php Contact::getAccountType()'s parameter is never a string, ops 2022-06-19 09:36:24 +02:00
Feed.php Changed: 2022-07-29 00:38:46 +02:00
FollowConfirm.php
Friendica.php Add download feature for domain block list 2022-07-27 11:54:50 -04:00
FriendSuggest.php
Group.php New function to exit the program 2022-05-18 02:13:54 +00:00
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 Changes: 2022-06-23 17:30:14 +02:00
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 Changes: 2022-06-23 17:30:14 +02:00
Oembed.php New function to exit the program 2022-05-18 02:13:54 +00:00
OpenSearch.php Changes: 2022-06-23 17:30:16 +02:00
Owa.php
ParseUrl.php
PermissionTooltip.php Changes: 2022-06-23 17:30:14 +02:00
Photo.php Config for receiver / fix fatals 2022-07-28 21:16:42 +00:00
Proxy.php Changes: 2022-06-23 17:30:14 +02:00
PublicRSAKey.php
RandomProfile.php
README.md
ReallySimpleDiscovery.php
Register.php
RemoteFollow.php
Response.php
RobotsTxt.php New function to exit the program 2022-05-18 02:13:54 +00:00
Smilies.php
Statistics.php
Theme.php New function to exit the program 2022-05-18 02:13:54 +00:00
ThemeDetails.php unused DI" removed 2022-05-18 02:19:45 +00:00
ToggleMobile.php
Tos.php
Welcome.php
Xrd.php Fixes: 2022-08-13 22:47:57 +02: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.