1
0
Fork 0
friendica_2020-09-1_sharedH.../src/Module
2021-11-10 23:31:42 +00: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 Photo delete is moved as well 2021-11-10 23:31:42 +00:00
Contact The media class moved 2021-10-02 19:31:27 +00:00
Conversation Remove most calls to date_default_timezone_* calls 2021-10-03 13:42:31 -04:00
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 [frio] Fix event time display 2021-10-03 13:42:32 -04:00
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 Update src/Module/BaseApi.php 2021-11-10 04:44:59 +01:00
BaseNotifications.php Move notify to the new paradigm 2021-10-02 18:15:42 -04:00
BaseProfile.php "Video" is replaced by a "Media" tab in contact and profile 2021-10-02 15:09:43 +00:00
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 Refactor User::getAvatarUrlForId into getAvatarUrl 2021-10-02 19:06:25 -04:00
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.