friendica/src/Module
Philipp 20374ab5a2
Merge pull request #12447 from MrPetovan/bug/12441-profile-contacts
Retrieve contact records for the page visitor in several modules
2022-12-19 17:14:43 +01:00
..
ActivityPub Tighten profile restriction feature 2022-12-01 08:03:35 -05:00
Admin Provide default value for system.banner config key 2022-12-19 10:17:57 -05:00
Api Merge pull request #12392 from annando/api-relations 2022-12-14 08:06:14 -05:00
Blocklist/Domain
Calendar Apply calendar owner custom theme 2022-12-15 23:14:45 -05:00
Contact Remove fallback contact query from Model\Contact::photoMenu 2022-12-19 09:50:18 -05:00
Conversation
DFRN Remove parameter-less call of OStatus\Salmon module in DFRN\Notify 2022-12-10 11:45:53 -05:00
Debug
Diaspora
Filer
HTTPException
Item Tighten profile restriction feature 2022-12-01 08:03:35 -05:00
Media Update src/Module/Media/Photo/Upload.php 2022-11-30 18:16:55 +01:00
Moderation Only calculate the last login on a "date" level 2022-12-11 03:26:45 +00:00
Notifications Suppress notifications for forum users in Module\Notifications\Ping 2022-12-14 22:01:14 -05:00
OAuth
OStatus Check that $probed key exists before comparison in OStatus\Subscribe 2022-12-15 23:29:06 -05:00
Post
Profile Merge pull request #12447 from MrPetovan/bug/12441-profile-contacts 2022-12-19 17:14:43 +01:00
Search
Security
Settings Fix link to profile page in custom profile fields settings 2022-12-18 22:49:49 -05:00
Special
Update Don't compute system.update_interval when it's -1 (disabled) 2022-12-19 10:05:21 -05:00
User
WellKnown
About.php Redirect in a different way 2022-12-12 11:24:20 +00:00
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php
BaseAdmin.php
BaseApi.php Don't send the header 2022-12-12 03:13:24 +00:00
BaseModeration.php
BaseNotifications.php
BaseProfile.php Add new public_calendar additional feature 2022-12-01 08:06:07 -05:00
BaseSearch.php
BaseSettings.php
Bookmarklet.php
Contact.php Remove fallback contact query from Model\Contact::photoMenu 2022-12-19 09:50:18 -05:00
Credits.php
Delegation.php
Directory.php
Feed.php Tighten profile restriction feature 2022-12-01 08:03:35 -05:00
FollowConfirm.php
FriendSuggest.php
Friendica.php
Group.php
HCard.php
Hashtag.php
Help.php
Home.php
Install.php
Invite.php
Magic.php
Maintenance.php
Manifest.php
NoScrape.php Check for last-activity value before feeding it to strtotime in Module\NoScrape 2022-12-10 11:38:41 -05:00
NodeInfo110.php
NodeInfo120.php
NodeInfo210.php
Oembed.php
OpenSearch.php
Owa.php
ParseUrl.php
PermissionTooltip.php
Photo.php Ward against empty $contact array in Module\Photo::getPhotoById 2022-12-15 23:31:32 -05:00
Proxy.php
PublicRSAKey.php
README.md
RandomProfile.php
ReallySimpleDiscovery.php
Register.php
Response.php
RobotsTxt.php
Smilies.php
Statistics.php
Theme.php
ThemeDetails.php
ToggleMobile.php
Tos.php Skip blank lines in Tos module 2022-12-18 22:16:41 -05:00
Welcome.php
Xrd.php

README.md

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.