PHPackages                             i13e/buttoneditor - 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. i13e/buttoneditor

ActiveNeos-package

i13e/buttoneditor
=================

A plugin for Neos CMS which provides a button editor

1.0.6(3y ago)9505↓100%MITJavaScript

Since Feb 10Pushed 3y ago1 watchersCompare

[ Source](https://github.com/ideenstadtwerke/I13e.ButtonEditor)[ Packagist](https://packagist.org/packages/i13e/buttoneditor)[ RSS](/packages/i13e-buttoneditor/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (6)Dependencies (1)Versions (8)Used By (0)

I13e.ButtonEditor
=================

[](#i13ebuttoneditor)

[![Latest Stable Version](https://camo.githubusercontent.com/ec921f5990cf07d3001f243d30de5593851b6e224b3f6ee90e6c8d91bc4101e9/687474703a2f2f706f7365722e707567782e6f72672f693133652f627574746f6e656469746f722f76)](https://packagist.org/packages/i13e/buttoneditor) [![Total Downloads](https://camo.githubusercontent.com/4995d59d0ccef7f0eb99ccc61fb182ef74d0a7b3f3e162167bdfb043a1bea009/687474703a2f2f706f7365722e707567782e6f72672f693133652f627574746f6e656469746f722f646f776e6c6f616473)](https://packagist.org/packages/i13e/buttoneditor) [![Latest Unstable Version](https://camo.githubusercontent.com/7535887acde7b8ad9a1891d161e6bc681509b518cdf75b4291a1bc82ae18158e/687474703a2f2f706f7365722e707567782e6f72672f693133652f627574746f6e656469746f722f762f756e737461626c65)](https://packagist.org/packages/i13e/buttoneditor) [![License](https://camo.githubusercontent.com/8ec0a475024f9aad23c0e74f359030790ebcb5723ac531d131aa3350be8ed33a/687474703a2f2f706f7365722e707567782e6f72672f693133652f627574746f6e656469746f722f6c6963656e7365)](https://packagist.org/packages/i13e/buttoneditor) [![PHP Version Require](https://camo.githubusercontent.com/230b2912fc4e5d92c97db59ac27ac4d878f7d9567865219090f0c12ae60aece6/687474703a2f2f706f7365722e707567782e6f72672f693133652f627574746f6e656469746f722f726571756972652f706870)](https://packagist.org/packages/i13e/buttoneditor)

Button editor for Neos CMS
--------------------------

[](#button-editor-for-neos-cms)

This package provides a new inspector editor displaying it's options as buttons.

Buttons operates like check- or radioboxes.

[![Align](https://camo.githubusercontent.com/6b1bfee98325d7d1ffc7f41929a8ad730db0a4663b2e9663ba868523acdc8e19/68747470733a2f2f7374617469632e693133652e64652f493133652e427574746f6e456469746f722f616c69676e2e676966)](https://camo.githubusercontent.com/6b1bfee98325d7d1ffc7f41929a8ad730db0a4663b2e9663ba868523acdc8e19/68747470733a2f2f7374617469632e693133652e64652f493133652e427574746f6e456469746f722f616c69676e2e676966)

Installation
------------

[](#installation)

Run `composer require i13e/buttoneditor`.

Usage
-----

[](#usage)

Use the new editor in your properties

```
I13e.Package:Content.Text:
  properties:
    align:
      # ButtonEditor supports "string" and "array"
      type: string
      defaultValue: left
      ui:
        label: 'Align'
        inspector:
          editor: I13e.ButtonEditor/ButtonEditor
          editorOptions:
            # Allow all buttons to be deselected
            # boolean, default: false
            allowEmpty: false
            # Allow multiple buttons to be active
            # If set to true also use `type` array
            # boolean, default: false
            multiple: false
            # Disable all buttons
            # boolean, default: false
            disabled: false
            values:
              left:
                label: i18n
                icon: align-left
              center:
                label: i18n
                icon: align-center
              right:
                label: i18n
                icon: align-right
              justify:
                label: i18n
                icon: align-justify
                # An alternative icon for the active state
                iconActive: align-justify
                # Disable a single option
                disabled: true

            # ---
            # Optionally use a data source:
            #
            # If `dataSourceIdentifier` or `dataSourceUri` is defined, the `values` from above will be ignored
            dataSourceIdentifier: 'i13e-some-datasource'
            dataSourceUri: 'some/custom-route'
            dataSourceAdditionalData:
              group: 'align'
            dataSourceDisableCaching: false
```

As you may have realized, the configuration is nearly completely compatible with the default [SelectBoxEditor](https://neos.readthedocs.io/en/stable/References/PropertyEditorReference.html#property-type-string-array-string-selectboxeditor-dropdown-select-editor).

Examples
--------

[](#examples)

### Basic example from above

[](#basic-example-from-above)

[![Align](https://camo.githubusercontent.com/6b1bfee98325d7d1ffc7f41929a8ad730db0a4663b2e9663ba868523acdc8e19/68747470733a2f2f7374617469632e693133652e64652f493133652e427574746f6e456469746f722f616c69676e2e676966)](https://camo.githubusercontent.com/6b1bfee98325d7d1ffc7f41929a8ad730db0a4663b2e9663ba868523acdc8e19/68747470733a2f2f7374617469632e693133652e64652f493133652e427574746f6e456469746f722f616c69676e2e676966)

### Multiple with allowEmpty

[](#multiple-with-allowempty)

```
editorOptions:
  allowEmpty: true
  multiple: true
  values:
    # define your own
```

[![Format](https://camo.githubusercontent.com/e5a9a900f795c43671a8f9ece02e8a3a55c409a1189f9278730573236865e2e8/68747470733a2f2f7374617469632e693133652e64652f493133652e427574746f6e456469746f722f666f726d61742e676966)](https://camo.githubusercontent.com/e5a9a900f795c43671a8f9ece02e8a3a55c409a1189f9278730573236865e2e8/68747470733a2f2f7374617469632e693133652e64652f493133652e427574746f6e456469746f722f666f726d61742e676966)

### Multiple with allowEmpty:

[](#multiple-with-allowempty-1)

```
editorOptions:
  allowEmpty: true
  values:
    toggle:
      label: i18n
      icon: toggle-off
      iconActive: toggle-on
```

[![Toggle](https://camo.githubusercontent.com/febcfe16656c1f36dc3d179d86ae6fb62e696c06abbf62a922b6e70c3dc047b4/68747470733a2f2f7374617469632e693133652e64652f493133652e427574746f6e456469746f722f746f67676c652e676966)](https://camo.githubusercontent.com/febcfe16656c1f36dc3d179d86ae6fb62e696c06abbf62a922b6e70c3dc047b4/68747470733a2f2f7374617469632e693133652e64652f493133652e427574746f6e456469746f722f746f67676c652e676966)

Known issues
------------

[](#known-issues)

- Although the ButtonEditor works with Neos 5.3 it does not support automatic label i18n handling. With Neos 5.3 please use full translation paths.

Contribution
------------

[](#contribution)

If you'd like to contribute simply create a pull-request.

---

Proudly developed in the Hanover Region

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~74 days

Recently: every ~110 days

Total

7

Last Release

1103d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4420468d77e2e4e8dc6c5c54aaf07439619ebe90b54901ef1683e42c4b72613a?d=identicon)[reflexxion](/maintainers/reflexxion)

![](https://www.gravatar.com/avatar/01c1d29cb53dfba3b4d13f1f4f1de3d8eeba2af90c3023cc64436ab01eeacb88?d=identicon)[IdeenstadtwerkeDe](/maintainers/IdeenstadtwerkeDe)

---

Top Contributors

[![reflexxion](https://avatars.githubusercontent.com/u/3419968?v=4)](https://github.com/reflexxion "reflexxion (7 commits)")

---

Tags

editorNeosneoscmsbuttonsinspector

### Embed Badge

![Health badge](/badges/i13e-buttoneditor/health.svg)

```
[![Health](https://phpackages.com/badges/i13e-buttoneditor/health.svg)](https://phpackages.com/packages/i13e-buttoneditor)
```

###  Alternatives

[shel/neos-colorpicker

A plugin for Neos CMS which provides a colorpicker editor

1494.4k6](/packages/shel-neos-colorpicker)[shel/neos-hyphens

A plugin for Neos CMS which provides hyphens for the inline editor

20200.7k1](/packages/shel-neos-hyphens)[shel/nodetypes-analyzer

Graphical analysis &amp; visualizer for the Neos CMS nodetypes as backend module

2160.6k](/packages/shel-nodetypes-analyzer)[shel/neos-terminal

Neos CMS Ui terminal for running Eel expressions and other commands

1441.3k](/packages/shel-neos-terminal)

PHPackages © 2026

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