1
0
Fork 0
friendica_2020-09-1_sharedH.../src/Module
Roland Häder 44a9ec9b17
Rewrite:
- avoid having array|string for $table to have a "string" type-hint for $table
- you now have to do it for yourself by giving 'schema.table' as parameter
2022-06-21 13:47:38 +02:00
..
ActivityPub Issue 11427: id values of OrderedCollections have to contain the page number 2022-04-21 04:29:08 +00:00
Admin Rewrite: 2022-06-21 13:47:38 +02:00
Api API: Use the type field in the query for pinned posts 2022-06-11 06:05:55 +00:00
Contact New function to exit the program 2022-05-18 02:13:54 +00:00
Conversation Use "received" for starred posts 2022-04-21 13:58:24 +00:00
Debug New function to exit the program 2022-05-18 02:13:54 +00:00
DFRN Ops, needs to be a variable: 2022-06-18 09:59:19 +02: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 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 Different approach for empty values 2022-06-06 07:35:28 +00:00
Special Unified output via the "httpExit" function 2022-04-10 08:31:55 +00:00
Update New function to exit the program 2022-05-18 02:13:54 +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 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 Accesskey was used twice 2022-06-19 06:30:00 +02:00
Bookmarklet.php
Contact.php
Credits.php
Delegation.php
Directory.php Contact::getAccountType()'s parameter is never a string, ops 2022-06-19 09:36:24 +02:00
Feed.php Throw an error when the feed is invalid 2022-05-03 08:20:26 +00:00
FollowConfirm.php
Friendica.php Switched maximum database update with currently worked on to "current/max" as 2022-06-08 11:48:05 +02:00
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 Use central function to fetch the global directory 2022-04-26 18:33:58 +00:00
Magic.php
Maintenance.php
Manifest.php Update app manifest icons 2022-04-28 13:26:59 +02:00
NodeInfo110.php
NodeInfo120.php
NodeInfo210.php Ops, also this! 2022-06-18 23:31:52 +02:00
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 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 New function to exit the program 2022-05-18 02:13:54 +00:00
Photo.php Changes: 2022-06-18 23:12:52 +02:00
Proxy.php New function to exit the program 2022-05-18 02:13:54 +00:00
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 New function to exit the program 2022-05-18 02:13:54 +00:00
Smilies.php
Statistics.php Unified JSON exit 2022-04-09 11:58:01 +00:00
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 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.