friendica/src/Module
Tobias Diekershoff d1a85f1fa4
Merge pull request #12222 from MrPetovan/bug/12219-hovercard-stay-local
Fix support for `/contact/123456/conversations` URLs in Module\Contact\Hovercard
2022-11-20 08:10:42 +01:00
..
ActivityPub
Admin Fix memory issue on displaying conversations 2022-11-16 04:57:46 +00:00
Api Centralize config.admin_email management in Model\User 2022-11-14 17:02:42 -05:00
Blocklist/Domain
Calendar The last PHPCS error .. 2022-11-07 20:35:07 +01:00
Contact Merge pull request #12222 from MrPetovan/bug/12219-hovercard-stay-local 2022-11-20 08:10:42 +01:00
Conversation
Debug
DFRN
Diaspora
Filer
HTTPException
Item Improve error message when conversation isn't available in Module\Item\Display 2022-11-19 12:29:08 -05:00
Moderation Centralize config.admin_email management in Model\User 2022-11-14 17:02:42 -05:00
Notifications Flatten arbitrary contact structure in constructor of FormattedNavNotification 2022-11-10 10:41:02 -05:00
OAuth
OStatus Create new OStatus\Subscribe module class 2022-11-14 13:48:47 -05:00
Post Revert "Remove geotag" 2022-11-16 21:20:24 +01:00
Profile Add new OStatus\PortableContacts module class 2022-11-14 13:48:46 -05:00
Search Add license 2022-11-09 22:29:43 +01:00
Security Delete mod/settings.php and its reference 2022-11-09 06:26:08 -05:00
Settings Fix constructor compatibility with BaseSettings parent class 2022-11-19 13:33:05 -05:00
Special
Update PHP-CS and license .. 2022-11-15 20:15:25 +01:00
User Add new OStatus\PortableContacts module class 2022-11-14 13:48:46 -05:00
WellKnown
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php
BaseAdmin.php New area "moderation" 2022-11-08 02:28:42 -05:00
BaseApi.php
BaseModeration.php New area "moderation" 2022-11-08 02:28:42 -05:00
BaseNotifications.php
BaseProfile.php
BaseSearch.php
BaseSettings.php Move settings/connectors to src/Module 2022-11-09 06:26:05 -05:00
Bookmarklet.php
Contact.php Create new Contact\Redir module class 2022-11-08 20:12:23 -05:00
Credits.php
Delegation.php
Directory.php
Feed.php
FollowConfirm.php
Friendica.php
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
Owa.php
ParseUrl.php
PermissionTooltip.php
Photo.php
Proxy.php
PublicRSAKey.php
RandomProfile.php
README.md
ReallySimpleDiscovery.php
Register.php Ensure register records aren't created with uid = 0 2022-11-18 16:04:02 -05:00
Response.php
RobotsTxt.php
Smilies.php
Statistics.php
Theme.php
ThemeDetails.php
ToggleMobile.php
Tos.php Create new Settings\RemoveMe module class 2022-11-08 18:33:54 -05:00
Welcome.php
Xrd.php Add new OStatus\PortableContacts module class 2022-11-14 13:48:46 -05: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.