1
0
Fork 0
friendica_2020-09-1_sharedH.../src/Module
Hypolite Petovan dd24b3bac0 Move api/profile/show to src/Module
- Update API documentation
- Update BaseApi::format to include headers by format
2020-01-29 23:31:37 -05:00
..
Admin Move/rename base module classes 2020-01-29 23:23:07 -05:00
Api Move api/profile/show to src/Module 2020-01-29 23:31:37 -05:00
Contact Remove unneeded Config namespace usages 2020-01-19 22:50:44 +01:00
Debug
Diaspora
Filer
HTTPException
Item
Notifications Add System::jsonExit() 2020-01-28 23:36:28 +01:00
Profile Re-enable pinned items in profile wall 2020-01-26 14:21:20 -05:00
Search Move/rename base module classes 2020-01-29 23:23:07 -05:00
Security Remove unneeded Config namespace usages 2020-01-19 22:50:44 +01:00
Settings Move/rename base module classes 2020-01-29 23:23:07 -05:00
Special Add trace for admin in exceptionpages 2020-01-20 07:47:53 -05:00
Update Remove superfluous includes in profile modules 2020-01-23 10:00:48 -05:00
WellKnown
AccountManagementControlDocument.php
Acctlink.php
AllFriends.php Remove obsolete profile_id parameter in Model\Profile::load 2020-01-27 22:01:12 -05:00
Apps.php Remove unneeded Config namespace usages 2020-01-19 22:50:44 +01:00
Attach.php
BaseAdmin.php Move/rename base module classes 2020-01-29 23:23:07 -05:00
BaseApi.php Move api/profile/show to src/Module 2020-01-29 23:31:37 -05:00
BaseNotifications.php Fix ignore notification 2020-01-28 22:47:15 +01:00
BaseProfile.php Restore base profile URL behavior 2020-01-26 14:21:20 -05:00
BaseSearch.php Move/rename base module classes 2020-01-29 23:23:07 -05:00
BaseSettings.php Move/rename base module classes 2020-01-29 23:23:07 -05:00
Bookmarklet.php
Contact.php Remove obsolete profile_id parameter in Model\Profile::load 2020-01-27 22:01:12 -05:00
Credits.php
Delegation.php
Directory.php Remove uses of the rest of deprecated profile fields 2020-01-27 23:06:30 -05:00
Feed.php
FollowConfirm.php
Followers.php
Following.php
Friendica.php
Group.php Remove unneeded Config namespace usages 2020-01-19 22:50:44 +01:00
Hashtag.php
Help.php Remove duplicated TOC loop in Module\Help 2020-01-23 09:13:31 -05:00
Home.php
HoverCard.php Remove obsolete profile_id parameter in Model\Profile::load 2020-01-27 22:01:12 -05:00
Inbox.php Remove unneeded Config namespace usages 2020-01-19 22:50:44 +01:00
Install.php
Invite.php
Like.php
Magic.php
Maintenance.php
Manifest.php
NodeInfo.php
NoScrape.php Fix wrong variable name in Module\NoScrape 2020-01-28 10:33:19 -05:00
Objects.php
Oembed.php
OpenSearch.php
Outbox.php
Owa.php
Photo.php
Pinned.php
Proxy.php
PublicRSAKey.php
RandomProfile.php
README.md
ReallySimpleDiscovery.php
Register.php Move profile-related templates to sub-folder 2020-01-20 07:27:14 -05:00
RobotsTxt.php
Smilies.php
Starred.php
Statistics.php
Theme.php
ThemeDetails.php
ToggleMobile.php
Tos.php Remove unneeded Config namespace usages 2020-01-19 22:50:44 +01:00
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.