friendica/src/Module
atjn 31ed9b450d Update default icon 2022-04-28 12:41:26 +02:00
..
ActivityPub Issue 11427: id values of OrderedCollections have to contain the page number 2022-04-21 04:29:08 +00:00
Admin Update default icon 2022-04-28 12:41:26 +02:00
Api Use central function to fetch the global directory 2022-04-26 18:33:58 +00:00
Contact Move follow revoke protocol to worker task 2022-02-24 09:35:55 -05:00
Conversation Use "received" for starred posts 2022-04-21 13:58:24 +00:00
DFRN Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
Debug Introduce "accept_header" as specific argument to the http client 2022-04-02 21:16:53 +02:00
Diaspora Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
Events Unified JSON exit 2022-04-09 11:58:01 +00:00
Filer
HTTPException
Item Fixes notice 2022-04-15 04:14:21 +00:00
Notifications Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
OAuth
Profile Use centralized function to fetch query results 2022-04-08 06:04:50 +00:00
Search Unified JSON exit 2022-04-09 11:58:01 +00:00
Security
Settings Use central function to fetch the global directory 2022-04-26 18:33:58 +00:00
Special Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
Update Issue 11425: Additional sorting by creation date 2022-04-20 21:03:33 +00:00
WellKnown Use the correct content type 2022-04-11 06:07:50 +00:00
AccountManagementControlDocument.php Unified JSON exit 2022-04-09 11:58:01 +00:00
Acctlink.php
Apps.php
Attach.php
BaseAdmin.php
BaseApi.php
BaseNotifications.php Deprecated the notify table/classes 2022-03-14 07:56:20 -04:00
BaseProfile.php
BaseSearch.php Use central function to fetch the global directory 2022-04-26 18:33:58 +00:00
BaseSettings.php
Bookmarklet.php
Contact.php
Credits.php
Delegation.php
Directory.php Use central function to fetch the global directory 2022-04-26 18:33:58 +00:00
Feed.php Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
FollowConfirm.php
FriendSuggest.php
Friendica.php Unified JSON exit 2022-04-09 11:58:01 +00:00
Group.php
HCard.php
Hashtag.php
Help.php
Home.php
Install.php
Invite.php Use central function to fetch the global directory 2022-04-26 18:33:58 +00:00
Magic.php Introduce "accept_header" as specific argument to the http client 2022-04-02 21:16:53 +02:00
Maintenance.php
Manifest.php
NoScrape.php
NodeInfo110.php
NodeInfo120.php
NodeInfo210.php
Oembed.php
OpenSearch.php Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
Owa.php
ParseUrl.php Some more "exit" replaced 2022-04-10 11:03:24 +00:00
PermissionTooltip.php Use different collections 2022-04-23 12:32:29 +00:00
Photo.php Move ACCEPT constants to own "enum" class 2022-04-02 20:26:11 +02:00
Proxy.php Move ACCEPT constants to own "enum" class 2022-04-02 20:26:11 +02:00
PublicRSAKey.php Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
README.md
RandomProfile.php
ReallySimpleDiscovery.php Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
Register.php Normalize base URL usage in admin templates 2022-03-11 23:14:21 -05:00
RemoteFollow.php
Response.php Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
RobotsTxt.php
Smilies.php
Statistics.php Unified JSON exit 2022-04-09 11:58:01 +00:00
Theme.php
ThemeDetails.php Unified JSON exit 2022-04-09 11:58:01 +00:00
ToggleMobile.php
Tos.php
Welcome.php
Xrd.php Fix: Webfinger returned xml when json has been requested and vice versa 2022-04-18 05:42:05 +00:00

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.