friendica/src/Module
2021-11-04 20:29:59 +00:00
..
ActivityPub The boot.php had been cleared of most functions 2021-11-04 20:29:59 +00:00
Admin The boot.php had been cleared of most functions 2021-11-04 20:29:59 +00:00
Api Rename Depository to Repository 2021-10-23 21:45:36 -04: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
OAuth
Profile
Search Merge remote-tracking branch 'upstream/develop' into error-handling 2021-10-31 05:25:39 +00:00
Security
Settings Add redirection to clear the owner cache after profile update 2021-10-21 19:11:28 -04: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
BaseAdmin.php The boot.php had been cleared of most functions 2021-11-04 20:29:59 +00:00
BaseApi.php
BaseNotifications.php
BaseProfile.php
BaseSearch.php
BaseSettings.php
Bookmarklet.php
Contact.php
Credits.php
Delegation.php
Directory.php
Feed.php
FollowConfirm.php
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
Hashtag.php
HCard.php
Help.php
Home.php
Install.php Refactoring Core class structures ... 2021-10-26 22:11:09 +02:00
Invite.php The boot.php had been cleared of most functions 2021-11-04 20:29:59 +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
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
RemoteFollow.php
RobotsTxt.php
Smilies.php
Statistics.php
Theme.php
ThemeDetails.php
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.