PHPackages                             fullscreeninteractive/silverstripe-dropdownimagefield - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Image &amp; Media](/categories/media)
4. /
5. fullscreeninteractive/silverstripe-dropdownimagefield

ActiveSilverstripe-vendormodule[Image &amp; Media](/categories/media)

fullscreeninteractive/silverstripe-dropdownimagefield
=====================================================

Dropdown field with image support for SilverStripe CMS

2.0.0(5mo ago)42.0k—0%7MITJavaScriptCI failing

Since Oct 15Pushed 5mo ago1 watchersCompare

[ Source](https://github.com/fullscreeninteractive/silverstripe-dropdownimagefield)[ Packagist](https://packagist.org/packages/fullscreeninteractive/silverstripe-dropdownimagefield)[ RSS](/packages/fullscreeninteractive-silverstripe-dropdownimagefield/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

SilverStripe DropdownImageField
===============================

[](#silverstripe-dropdownimagefield)

Adds a `DropdownImageField` field which enables you to display images alongside the captions. Uses a plugin for Chosen.js (which is used by SS), [Image-Select](https://github.com/websemantics/Image-Select). The plugin is modified.

[![Working screenshot](https://github.com/fullscreeninteractive/silverstripe-dropdownimagefield/raw/main/docs/img/ss.png)](https://github.com/fullscreeninteractive/silverstripe-dropdownimagefield/raw/main/docs/img/ss.png)

Requirements
------------

[](#requirements)

SilverStripe 6

Install
-------

[](#install)

```
composer require fullscreeninteractive/silverstripe-dropdownimagefield
```

Usage
-----

[](#usage)

Example:

```
DropdownImageField::create('Icon', 'Select icon')
    ->setSourceList($this->getAvailableIcons())

...
    /**
     * Get the available icons for the dropdown
     *
     * @return ArrayList
     */
    public function getAvailableIcons(): ArrayList
    {
        $list = ArrayList::create();
        $icons = [
            'car' => '/_resources/app/images/car.svg'
        ];

        foreach ($icons as $key => $value) {
            $list->push(ArrayData::create([
                'ID' => $key,
                'Title' => $key,
                'Image' => $value
            ]));
        }

        return $list;
    }
```

###  Health Score

47

—

FairBetter than 94% of packages

Maintenance71

Regular maintenance activity

Popularity25

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 61.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~3339 days

Total

2

Last Release

162d ago

Major Versions

1.0.0 → 2.0.02025-12-07

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/101629?v=4)[Will Rossiter](/maintainers/wilr)[@wilr](https://github.com/wilr)

---

Top Contributors

[![h7io](https://avatars.githubusercontent.com/u/1141177?v=4)](https://github.com/h7io "h7io (19 commits)")[![wilr](https://avatars.githubusercontent.com/u/101629?v=4)](https://github.com/wilr "wilr (10 commits)")[![MasseyIsaako](https://avatars.githubusercontent.com/u/26725710?v=4)](https://github.com/MasseyIsaako "MasseyIsaako (1 commits)")[![sebastiand](https://avatars.githubusercontent.com/u/974056?v=4)](https://github.com/sebastiand "sebastiand (1 commits)")

---

Tags

imagesilverstripefielddropdown

### Embed Badge

![Health badge](/badges/fullscreeninteractive-silverstripe-dropdownimagefield/health.svg)

```
[![Health](https://phpackages.com/badges/fullscreeninteractive-silverstripe-dropdownimagefield/health.svg)](https://phpackages.com/packages/fullscreeninteractive-silverstripe-dropdownimagefield)
```

###  Alternatives

[heyday/silverstripe-responsive-images

Configure and send a series of image size options to the client without loading any resources until a media query can be executed.

5387.7k6](/packages/heyday-silverstripe-responsive-images)[unclecheese/silverstripe-image-optionset

Provides a list of selectable items that use images as the primary label instead of text.

139.1k2](/packages/unclecheese-silverstripe-image-optionset)[chrometoaster/silverstripe-image-quality

Adds Quality function to images

1013.0k1](/packages/chrometoaster-silverstripe-image-quality)[dnadesign/silverstripe-lazyloaded-image

Implements the LQIP (Low Quality Image Placeholder) pattern powered by lazysizes

1011.4k4](/packages/dnadesign-silverstripe-lazyloaded-image)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
