1
0
Fork 0
friendica_2020-09-1_sharedH.../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
Contact Remove poke feature 2022-08-09 14:55:55 -04:00
Conversation
Debug More prevention of double processing of the same content 2022-08-06 17:06:55 +00:00
DFRN
Diaspora Changes: 2022-07-29 00:08:38 +02:00
Events
Filer
HTTPException
Item Improvements for the "post-reason" 2022-07-29 14:17:53 +00:00
Notifications
OAuth
Profile
Search
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
WellKnown
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php
BaseAdmin.php
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
BaseSettings.php
Bookmarklet.php
Contact.php
Credits.php
Delegation.php
Directory.php
Feed.php Changed: 2022-07-29 00:38:46 +02:00
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
Oembed.php
OpenSearch.php
Owa.php
ParseUrl.php
PermissionTooltip.php
Photo.php
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 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.