lukasbableck/contao-more-backend-widgets-bundle

This bundle adds backend widgets/inputTypes which can for example be used in other extensions or in RockSolid Custom Elements.

Fund package maintenance!
lukasbableck

Installs: 51

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:contao-bundle

1.2.0 2025-03-31 13:13 UTC

This package is auto-updated.

Last update: 2025-03-31 13:14:14 UTC


README

This bundle adds backend widgets/inputTypes which can for example be used in other extensions or in RockSolid Custom Elements.

Currently the following widgets are available:

  • charPicker
  • color
  • number
  • range

Usage

...
'inputType' => 'number' // or any other widget from the above
...

Widgets

charPicker

This is used by lukasbableck/contao-title-description-bundle.
It is intended to be used in combination with a JS script and wont do anything on its own.
The widget is not designed to save any value in the database.

image

color

Adds a color picker widget with both a normal text input and a color input.
It's recommended to use 'rgxp' => 'color' and 'isHexColor' => true for fields with this inputType.
Aside from the color regexp, this bundle also adds colorHex, colorHexRGB and colorHexRGBA regexps.

image

number

Supports min and max attributes via eval.minval/eval.maxval and step via eval.step.

image

range

Supports min and max attributes via eval.minval/eval.maxval and step via eval.step.

image

Regular expressions

color

Expects a color in the format RRGGBB, where RR, GG and BB are hexadecimal values between 00 and FF.
This regexp is intended to be used in combination with the color inputType.

colorHex

Expects a color in the format #RGB, #RRGGBB, #RGBA or #RRGGBBAA, where R, G, B and A are hexadecimal values between 0 and F.

colorHexRGB

Expects a color in the format #RGB or #RRGGBB, where R, G and B are hexadecimal values between 0 and F.

colorHexRGBA

Expects a color in the format #RGBA or #RRGGBBAA, where R, G, B and A are hexadecimal values between 0 and F.