friendica/src/Module
Hypolite Petovan 967c438312 Enclose account settings panels in separate forms
- This prevents auto-filled password fields to abort settings save
- Move single-use settings/nick_set template HTML to settings/account
2022-04-24 08:36:53 -04:00
..
ActivityPub Issue 11427: id values of OrderedCollections have to contain the page number 2022-04-21 04:29:08 +00:00
Admin Avoid wrong server type detection / Owncast added 2022-04-12 05:34:34 +00:00
Api API: We can now display polls 2022-04-22 19:24:22 +00:00
Contact
Conversation Use "received" for starred posts 2022-04-21 13:58:24 +00:00
Debug
DFRN Unified output via the "httpExit" function 2022-04-10 08:31:55 +00: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
Search Unified JSON exit 2022-04-09 11:58:01 +00:00
Security
Settings Enclose account settings panels in separate forms 2022-04-24 08:36:53 -04: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
BaseProfile.php
BaseSearch.php
BaseSettings.php
Bookmarklet.php
Contact.php
Credits.php
Delegation.php
Directory.php
Feed.php Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
FollowConfirm.php
Friendica.php Unified JSON exit 2022-04-09 11:58:01 +00:00
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 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
Proxy.php
PublicRSAKey.php Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
RandomProfile.php
README.md
ReallySimpleDiscovery.php Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
Register.php
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

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.