packettide / bree-colorpicker by bryannielsen

A colorpicker field package for Bree
114
0
3
Package Data
Maintainer Username: bryannielsen
Maintainer Contact: bryan@packettide.com (Bryan Nielsen)
Package Create Date: 2013-10-22
Package Last Update: 2014-01-31
Language: JavaScript
License: Unknown
Last Refreshed: 2024-04-27 03:02:16
Package Statistics
Total Downloads: 114
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

#Colorpicker

Colorpicker is a field package for Bree which provides a basic fieldset implementation using the HTML input type="color" as well as an advanced fieldset implementation utilizing Spectrum.

##Installation

  1. Install with composer by adding this line to your 'require' block: "packettide/bree-colorpicker": "@dev"
  2. Run composer update
  3. In Laravel4 add 'Packettide\BreeColorpicker\BreeColorpickerServiceProvider', to the providers array in app/config/app.php
  4. Publish the package assets: php artisan bree:assets

##Usage

$book = new Bree('Book', array(
		'jacketcolor'  => array('type' => 'Colorpicker', 'fieldset' => 'advanced')
	));

$book->find(1);
echo $book;

For more examples on how to setup fieldtypes for a model refer to the Bree documentation