1
0
Fork 0
friendica_2020-09-1_sharedH.../src/Module
2022-11-07 19:52:13 +01:00
..
ActivityPub
Admin Apply suggestions from code review 2022-11-03 21:13:03 +01:00
Api Use different parser modes for Mastodon and Twitter-API 2022-11-06 20:02:43 +00:00
Blocklist/Domain
Calendar Fix possible security issue 2022-11-07 19:52:13 +01:00
Contact Add follow/unfollow link to the contact actions menu 2022-11-06 19:03:21 -05:00
Conversation Merge pull request #12094 from MrPetovan/task/hide-reply-counts-ping 2022-11-04 18:00:15 +01:00
Debug
DFRN Add new OStatus\Salmon module class 2022-11-06 20:42:05 -05:00
Diaspora
Filer
HTTPException
Item
Notifications Remove non-top-level posts from notification labels when network sort order is "received" 2022-11-04 06:42:38 -04:00
OAuth
OStatus Fix code standards in Module\OStatus\Salmon 2022-11-07 07:54:12 -05:00
Post Remove trailing spaces from Module\Post\Share 2022-11-04 14:14:00 -04:00
Profile
Search
Security
Settings add a help text to the profile settings indicating how to verify the homepage, or that the homepage is verified 2022-11-07 11:15:55 +01:00
Special
Update
User Create new User\Import module class 2022-11-02 11:27:31 -04:00
WellKnown
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php
BaseAdmin.php
BaseApi.php
BaseNotifications.php
BaseProfile.php
BaseSearch.php Move viewcontact_template and contact_template to contact/ folder 2022-11-04 07:03:55 -04:00
BaseSettings.php
Bookmarklet.php
Contact.php
Credits.php
Delegation.php
Directory.php
Feed.php
FollowConfirm.php
Friendica.php
FriendSuggest.php
Group.php
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
Oembed.php
OpenSearch.php
Owa.php
ParseUrl.php
PermissionTooltip.php
Photo.php
Proxy.php
PublicRSAKey.php
RandomProfile.php
README.md
ReallySimpleDiscovery.php
Register.php Apply suggestions from code review 2022-11-03 21:13:03 +01:00
Response.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.