PHPackages                             copperis/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. copperis/dropdownimagefield

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

copperis/dropdownimagefield
===========================

Dropdown field with image support for SilverStripe CMS

2.0.0(6mo ago)49377MITJavaScriptCI failing

Since Oct 15Pushed 6mo ago1 watchersCompare

[ Source](https://github.com/Copperis/DropdownImageField)[ Packagist](https://packagist.org/packages/copperis/dropdownimagefield)[ RSS](/packages/copperis-dropdownimagefield/feed)WikiDiscussions main Synced 1w 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

45

—

FairBetter than 91% of packages

Maintenance68

Regular maintenance activity

Popularity21

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

184d ago

Major Versions

1.0.0 → 2.0.02025-12-07

### Community

Maintainers

![](https://www.gravatar.com/avatar/b4f501870e7501aff767ee5fc322349b57c94677ff7147e5febeafa8227a4a27?d=identicon)[Copperis](/maintainers/Copperis)

---

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/copperis-dropdownimagefield/health.svg)

```
[![Health](https://phpackages.com/badges/copperis-dropdownimagefield/health.svg)](https://phpackages.com/packages/copperis-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.

5489.1k6](/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.3k2](/packages/unclecheese-silverstripe-image-optionset)[dnadesign/silverstripe-lazyloaded-image

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

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

PHPackages © 2026

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