friendica/src/Module
Michael 81aaacc67d Improvements for the "post-reason" 2022-07-29 14:17:53 +00:00
..
ActivityPub
Admin Move server domain pattern blocklist features to its own class 2022-07-28 05:38:50 -04:00
Api Improvements for the "post-reason" 2022-07-29 14:17:53 +00:00
Blocklist/Domain Move server domain pattern blocklist features to its own class 2022-07-28 05:38:50 -04: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
DFRN Improved message handling / new activity relay handling 2022-07-27 17:39:00 +00:00
Debug Fetching of missing posts is reworked 2022-07-21 05:16:14 +00:00
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 Move system messages from boot to own class 2022-07-27 11:54:50 -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 Changed: 2022-07-29 00:38:46 +02:00
FollowConfirm.php
FriendSuggest.php
Friendica.php Add download feature for domain block list 2022-07-27 11:54:50 -04:00
Group.php
HCard.php
Hashtag.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
NoScrape.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
Oembed.php
OpenSearch.php
Owa.php
ParseUrl.php
PermissionTooltip.php
Photo.php Config for receiver / fix fatals 2022-07-28 21:16:42 +00:00
Proxy.php
PublicRSAKey.php
README.md
RandomProfile.php
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

README.md

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.