Download the PHP package fof/discussion-thumbnail without Composer

On this page you can find all versions of the php package fof/discussion-thumbnail. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package discussion-thumbnail

Discussion Thumbnail by FriendsOfFlarum

License Latest Stable Version OpenCollective

A Flarum extension. Replaces the author avatar in the discussion list with the first image found in the discussion's opening post.

https://cdn.discuss.flarum.org/2026-02-25/1771984263-288896-fof-discussion-thumbnail.mp4

How it works

When the discussion list is rendered, each discussion's author avatar is replaced with a thumbnail of the first <img> found in the HTML of the first post. If the first post contains no image, the normal user avatar is shown instead.

Backend: AddDiscussionThumbnail is registered as an API serializer attribute on BasicDiscussionSerializer. For each discussion it:

  1. Loads the first post and calls formatContent() to render the full HTML
  2. Extracts the src of the first <img> tag via regex
  3. Caches the result forever against the post ID, keyed as fof:discussion-thumbnail:discussion:{id}
  4. Returns the URL as the customThumbnail attribute on the discussion

The cache is invalidated when the post's edited_at timestamp is newer than the cached date, so editing the first post to change its image is reflected on next load.

Frontend: The customThumbnail attribute is read in a contentItems extension on DiscussionListItem. When a thumbnail URL is present, the authorAvatar item is replaced with a DiscussionThumbnail component wrapped in the same Tooltip + Link structure as the normal avatar. The thumbnail is styled with the .Avatar class so it matches core avatar sizing and alignment at all breakpoints.

Settings

Setting Default Description
Link to discussion false When enabled, clicking the thumbnail navigates to the discussion instead of the author's profile

Installation

Enable the extension in your Flarum admin panel.

Updating

Links

OpenCollective

An extension by FriendsOfFlarum.


All versions of discussion-thumbnail with dependencies

PHP Build Version
Package Version
Requires flarum/core Version ^2.0.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package fof/discussion-thumbnail contains the following files

Loading the files please wait ...