friendica/src/Module
Philipp e594656a48
Merge pull request #11684 from MrPetovan/bug/11651-ap-fetch-queue
Create ActivityPub\FetchQueue and ActivityPub\FetchQueueItem classes
2022-06-26 13:36:19 +02:00
..
ActivityPub
Admin Rewrite: 2022-06-21 13:47:38 +02:00
Api API: Use the type field in the query for pinned posts 2022-06-11 06:05:55 +00:00
Contact Changes: 2022-06-25 16:48:36 +02:00
Conversation
Debug Create ActivityPub\FetchQueue and ActivityPub\FetchQueueItem classes 2022-06-25 12:40:54 -04:00
DFRN Ops, needs to be a variable: 2022-06-18 09:59:19 +02:00
Diaspora
Events
Filer
HTTPException Respect Forwarded-For headers 2022-06-23 22:42:35 +02:00
Item
Notifications Issue 11469: Repect desktop notification settings 2022-05-29 09:20:06 +00:00
OAuth
Profile Issue 11470: Check for removed account 2022-05-28 16:21:41 +00:00
Search Respect Forwarded-For headers 2022-06-23 22:42:35 +02:00
Security adaptions 2022-06-26 10:13:32 +02:00
Settings adaptions 2022-06-26 10:13:32 +02:00
Special
Update New function to exit the program 2022-05-18 02:13:54 +00:00
WellKnown
AccountManagementControlDocument.php
Acctlink.php
Apps.php
Attach.php New function to exit the program 2022-05-18 02:13:54 +00:00
BaseAdmin.php Changes: 2022-06-22 14:36:45 +02:00
BaseApi.php
BaseNotifications.php
BaseProfile.php
BaseSearch.php
BaseSettings.php Accesskey was used twice 2022-06-19 06:30:00 +02:00
Bookmarklet.php
Contact.php
Credits.php
Delegation.php
Directory.php Contact::getAccountType()'s parameter is never a string, ops 2022-06-19 09:36:24 +02:00
Feed.php
FollowConfirm.php
Friendica.php Switched maximum database update with currently worked on to "current/max" as 2022-06-08 11:48:05 +02:00
FriendSuggest.php
Group.php New function to exit the program 2022-05-18 02:13:54 +00:00
Hashtag.php
HCard.php
Help.php
Home.php
Install.php Changes: 2022-06-23 17:30:14 +02:00
Invite.php
Magic.php
Maintenance.php Changes: 2022-06-23 17:30:14 +02:00
Manifest.php
NodeInfo110.php
NodeInfo120.php
NodeInfo210.php Ops, also this! 2022-06-18 23:31:52 +02:00
NoScrape.php Changes: 2022-06-23 17:30:14 +02:00
Oembed.php New function to exit the program 2022-05-18 02:13:54 +00:00
OpenSearch.php Changes: 2022-06-23 17:30:16 +02:00
Owa.php
ParseUrl.php
PermissionTooltip.php Changes: 2022-06-23 17:30:14 +02:00
Photo.php Changes: 2022-06-23 17:30:14 +02:00
Proxy.php Changes: 2022-06-23 17:30:14 +02:00
PublicRSAKey.php
RandomProfile.php
README.md
ReallySimpleDiscovery.php
Register.php
RemoteFollow.php
Response.php
RobotsTxt.php New function to exit the program 2022-05-18 02:13:54 +00:00
Smilies.php
Statistics.php
Theme.php New function to exit the program 2022-05-18 02:13:54 +00:00
ThemeDetails.php unused DI" removed 2022-05-18 02:19:45 +00:00
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.