1
0
Fork 0
friendica_2020-09-1_sharedH.../src/Module
2022-06-05 21:19:21 +00:00
..
ActivityPub
Admin Remove relocation form from Admin Site settings 2022-05-29 13:15:23 -04:00
Api Increase cache lifespan / clear cache upon changes 2022-05-17 12:32:25 +00:00
Contact New function to exit the program 2022-05-18 02:13:54 +00:00
Conversation
Debug New function to exit the program 2022-05-18 02:13:54 +00:00
DFRN
Diaspora
Events
Filer
HTTPException New function to exit the program 2022-05-18 02:13:54 +00:00
Item Increase cache lifespan / clear cache upon changes 2022-05-17 12:32:25 +00:00
Notifications Issue 11469: Repect desktop notification settings 2022-05-29 09:20:06 +00:00
OAuth
Profile Issue 11470: Check for removed account 2022-05-28 16:21:41 +00:00
Search Issue 11487: IDN support added 2022-05-11 06:34:25 +00:00
Security
Settings Rearrange the notification settings 2022-06-05 21:19:21 +00:00
Special
Update New function to exit the program 2022-05-18 02:13:54 +00:00
WellKnown
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php New function to exit the program 2022-05-18 02:13:54 +00:00
BaseAdmin.php
BaseApi.php
BaseNotifications.php
BaseProfile.php
BaseSearch.php Issue 11487: IDN support added 2022-05-11 06:34:25 +00:00
BaseSettings.php
Bookmarklet.php
Contact.php
Credits.php
Delegation.php
Directory.php
Feed.php Throw an error when the feed is invalid 2022-05-03 08:20:26 +00:00
FollowConfirm.php
Friendica.php
FriendSuggest.php
Group.php New function to exit the program 2022-05-18 02:13:54 +00:00
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 Caching of "noscrape" 2022-05-17 15:39:04 +00:00
Oembed.php New function to exit the program 2022-05-18 02:13:54 +00:00
OpenSearch.php
Owa.php
ParseUrl.php
PermissionTooltip.php New function to exit the program 2022-05-18 02:13:54 +00:00
Photo.php New function to exit the program 2022-05-18 02:13:54 +00:00
Proxy.php New function to exit the program 2022-05-18 02:13:54 +00:00
PublicRSAKey.php
RandomProfile.php
README.md
ReallySimpleDiscovery.php
Register.php
RemoteFollow.php
Response.php
RobotsTxt.php New function to exit the program 2022-05-18 02:13:54 +00:00
Smilies.php
Statistics.php
Theme.php New function to exit the program 2022-05-18 02:13:54 +00:00
ThemeDetails.php unused DI" removed 2022-05-18 02:19:45 +00:00
ToggleMobile.php
Tos.php
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.