friendica/src/Module
Michael 209d4d0d6a DFRN endpoints moved, changelog entry added 2021-07-16 14:45:29 +00:00
..
Admin Proxy settings removed 2021-07-06 06:44:18 +00:00
Api We now use the new account-user-view (and fixed the function name) 2021-07-11 09:39:34 +00:00
Contact
Conversation Display the forum posts in the new format. 2021-06-05 20:29:19 +00:00
DFRN DFRN endpoints moved, changelog entry added 2021-07-16 14:45:29 +00:00
Debug
Diaspora
Filer
HTTPException
Item
Notifications Legacy DFRN transport layer is removed 2021-07-15 13:28:32 +00:00
OAuth Update src/Module/OAuth/Token.php 2021-06-16 22:19:26 +02:00
Profile Some more "convertForUriId" replacements 2021-07-10 12:58:48 +00:00
Search Cleaned code for contact avatars 2021-07-06 10:36:00 +00:00
Security
Settings Centzralized functionality to update and publish profile changes 2021-06-15 11:12:44 +00:00
Special
Update
WellKnown Diaspora relay functionality is removed 2021-06-13 11:15:04 +00:00
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php
BaseAdmin.php
BaseApi.php New founction to count threads 2021-07-08 17:32:41 +00:00
BaseNotifications.php
BaseProfile.php
BaseSearch.php
BaseSettings.php
Bookmarklet.php
Contact.php We now use the new account-user-view (and fixed the function name) 2021-07-11 09:39:34 +00:00
Credits.php
Delegation.php
Directory.php
Feed.php
FollowConfirm.php
Followers.php
Following.php
FriendSuggest.php
Friendica.php
Group.php
Hashtag.php
Help.php
Home.php
HoverCard.php
Inbox.php
Install.php
Invite.php
Magic.php
Maintenance.php
Manifest.php
NoScrape.php Use "getOwnerDataById" and "getOwnerDataByNick" to fetch owner data 2021-07-04 17:25:08 +00:00
NodeInfo110.php
NodeInfo120.php
NodeInfo210.php
Objects.php
Oembed.php
OpenSearch.php
Outbox.php
Owa.php
ParseUrl.php
PermissionTooltip.php
Photo.php New struture for post related links 2021-07-05 18:45:49 +00:00
Proxy.php Simplyfying code 2021-07-05 04:16:02 +00:00
PublicRSAKey.php
README.md
RandomProfile.php
ReallySimpleDiscovery.php
Register.php Avoid Notice: Undefined index: field1 in /src/Module/Register.php on line 253 2021-06-30 19:13:27 +00:00
RemoteFollow.php
RobotsTxt.php
Smilies.php
Statistics.php
Theme.php
ThemeDetails.php
ToggleMobile.php
Tos.php
Welcome.php
Xrd.php Some more places changed to the new contact avatar path format 2021-06-30 16:58:46 +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.