friendica/src/Module
2023-08-20 14:27:09 -04:00
..
ActivityPub
Admin Merge pull request #13246 from nupplaphil/feat/addons 2023-07-23 06:58:46 -04:00
Api Replace remaining references to default banner image by api.mastodon_banner configuration value 2023-08-17 21:58:53 -04:00
Blocklist/Domain
Calendar
Contact Remove DI dependency from Module\Contact\Profile 2023-08-20 14:26:27 -04:00
Conversation
Debug Unified BBCode conversion, improved proxy functionality 2023-07-15 20:12:08 +00:00
DFRN
Diaspora
Filer
HTTPException
Item Fix DisplayNotFound page 2023-08-20 14:26:27 -04:00
Media
Moderation Merge remote-tracking branch 'upstream/develop' into more-privacy 2023-07-16 09:41:55 +00:00
Notifications Preparations for a moderator role 2023-08-10 21:06:08 +00:00
OAuth Reformatted code 2023-07-23 20:20:46 +00:00
OStatus
Post
Profile Escape HTML in display names for inclusion in syndication link tags 2023-08-02 16:59:46 +02:00
Search Improved logging 2023-08-03 20:36:19 +00:00
Security
Settings [frio] Add Mute Author Server button to post actions 2023-08-20 14:27:09 -04:00
Special Fix DisplayNotFound page 2023-08-20 14:26:27 -04:00
Update
User
WellKnown
About.php
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php
BaseAdmin.php
BaseApi.php
BaseModeration.php Preparations for a moderator role 2023-08-10 21:06:08 +00:00
BaseNotifications.php
BaseProfile.php
BaseSearch.php
BaseSettings.php
Bookmarklet.php
Circle.php Issue 13289: Ensure to not respect deactivated connector networks 2023-07-22 10:49:42 +00:00
Contact.php
Credits.php
Delegation.php
Directory.php
Feed.php
FollowConfirm.php
Friendica.php Merge pull request #13291 from Quix0r/features/config-blocklist-published 2023-08-12 11:31:42 +02:00
FriendSuggest.php
Hashtag.php
HCard.php
Help.php
Home.php
Install.php
Invite.php
Magic.php
Maintenance.php
Manifest.php
NodeInfo110.php The twitter addon is no import connector anymore 2023-08-09 20:29:45 +00:00
NodeInfo120.php The twitter addon is no import connector anymore 2023-08-09 20:29:45 +00:00
NodeInfo210.php The twitter addon is no import connector anymore 2023-08-09 20:29:45 +00:00
NoScrape.php
Oembed.php
OpenSearch.php
Owa.php
ParseUrl.php
PermissionTooltip.php
Photo.php Replace remaining references to default banner image by api.mastodon_banner configuration value 2023-08-17 21:58:53 -04:00
Proxy.php
PublicRSAKey.php
RandomProfile.php
README.md
ReallySimpleDiscovery.php
Register.php Unified BBCode conversion, improved proxy functionality 2023-07-15 20:12:08 +00:00
Response.php
RobotsTxt.php GPTBot added to the default robots.txt 2023-08-20 12:41:42 +00:00
Smilies.php
Statistics.php The twitter addon is no import connector anymore 2023-08-09 20:29:45 +00:00
Theme.php
ThemeDetails.php
ToggleMobile.php Rework Module\ToggleMobile to check for local links 2023-07-26 19:11:39 +02:00
Tos.php Unified BBCode conversion, improved proxy functionality 2023-07-15 20:12:08 +00:00
Welcome.php
Xrd.php

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.