heyday / silverstripe-colorpalette
A color palette picker for SilverStripe CMS
Installs: 120 563
Dependents: 11
Suggesters: 0
Security: 0
Stars: 22
Watchers: 31
Forks: 16
Type:silverstripe-vendormodule
Requires
- php: ^7.4 || ^8.0
- silverstripe/framework: ^4.0 || ^5.0
- silverstripe/vendor-plugin: ^1 || ^2
This package is auto-updated.
Last update: 2024-10-21 02:26:22 UTC
README
Provides a color picker field in SilverStripe allowing a user to select from defined selection of colors (palette)
Installation (with composer)
$ composer require heyday/silverstripe-colorpalette
Example
Features
- Supports usage in Elemental
Usage
Regular palette
$fields->addFieldToTab( 'Root.Main', Heyday\ColorPalette\Fields\ColorPaletteField::create( 'BackgroundColor', 'Background Color', [ 'White' => '#fff', 'Black' => '#000' ] ) );
Grouped Palette
$fields->addFieldToTab( 'Root.Main', Heyday\ColorPalette\Fields\GroupedColorPaletteField::create( 'BackgroundColor', 'Background Color', array( 'Primary Palette' => [ 'White' => '#fff', 'Black' => '#000' ], 'Secondary Palette' => [ 'Blue' => 'blue', 'Red' => 'red' ] ) ) );
License
SilverStripe Color Palette Field is licensed under an MIT license