1
0
Fork 0
friendica_2020-09-1_sharedH.../src/Module
2021-11-14 23:21:57 +01:00
..
ActivityPub The boot.php had been cleared of most functions 2021-11-04 20:29:59 +00:00
Admin Some more "escapeTags" removed 2021-11-06 20:25:21 +00:00
Api Fix PHP-CS 2021-11-14 23:21:57 +01:00
Contact
Conversation
Debug Changed scope 2021-10-31 04:54:24 +00:00
DFRN
Diaspora Improved http error handling 2021-10-29 23:21:07 +00:00
Events
Filer
HTTPException
Item
Notifications Rename setIgnore() to ignore() 2021-10-21 21:49:22 +02:00
OAuth
Profile Rename method again 2021-10-18 23:32:46 +02:00
Search "escapeTags" is finally removed 2021-11-07 09:18:25 +00:00
Security Some more "escapeTags" removed 2021-11-06 20:25:21 +00:00
Settings Some more "escapeTags" removed 2021-11-06 20:25:21 +00:00
Special The boot.php had been cleared of most functions 2021-11-04 20:29:59 +00:00
Update
WellKnown The boot.php had been cleared of most functions 2021-11-04 20:29:59 +00:00
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php Replace deprecated log calls 2021-10-20 18:53:52 +00:00
BaseAdmin.php The boot.php had been cleared of most functions 2021-11-04 20:29:59 +00:00
BaseApi.php Move API Response methods into an own class to make them mockable 2021-11-12 19:52:01 +01:00
BaseNotifications.php
BaseProfile.php
BaseSearch.php "escapeTags" is finally removed 2021-11-07 09:18:25 +00:00
BaseSettings.php
Bookmarklet.php
Contact.php Some more "escapeTags" removed 2021-11-06 20:25:21 +00:00
Credits.php
Delegation.php Replace almost every Introduction places 2021-10-21 21:49:21 +02:00
Directory.php Some more "escapeTags" removed 2021-11-06 20:25:21 +00:00
Feed.php
FollowConfirm.php Delete the intro after confirming it ;-) 2021-10-21 22:18:32 +02:00
Friendica.php Reverting some parts because wouldn't work 2021-10-30 09:13:06 +00:00
FriendSuggest.php Fix "Suggest a friend" text 2021-10-23 21:45:37 -04:00
Group.php Some more "escapeTags" removed 2021-11-06 20:25:21 +00:00
Hashtag.php
HCard.php
Help.php Some more "escapeTags" removed 2021-11-06 20:25:21 +00:00
Home.php
Install.php Some more "escapeTags" removed 2021-11-06 20:25:21 +00:00
Invite.php "escapeTags" is finally removed 2021-11-07 09:18:25 +00:00
Magic.php Restructure HTTPClient for new paradigm 2021-10-28 20:01:03 +02:00
Maintenance.php
Manifest.php
NodeInfo110.php
NodeInfo120.php
NodeInfo210.php
NoScrape.php
Oembed.php
OpenSearch.php
Owa.php
ParseUrl.php
PermissionTooltip.php Manually expand ACLs coming from non-permissionset tables 2021-10-21 18:56:43 -04:00
Photo.php Accept photo fetching for octet-stream as well 2021-11-02 08:10:12 +00:00
Proxy.php Improved http error handling 2021-10-29 23:21:07 +00:00
PublicRSAKey.php
RandomProfile.php
README.md
ReallySimpleDiscovery.php
Register.php Some removed escapeTags calls 2021-11-05 19:59:18 +00:00
RemoteFollow.php
RobotsTxt.php
Smilies.php
Statistics.php
Theme.php
ThemeDetails.php
ToggleMobile.php
Tos.php
Welcome.php
Xrd.php Some removed escapeTags calls 2021-11-05 19:59:18 +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.