You are here

README.txt in Jquery Colorpicker 8.2

Same filename and directory in other branches
  1. 8 README.txt
  2. 6 README.txt
  3. 7 README.txt
CONTENTS OF THIS FILE
---------------------

 * Introduction
 * Requirements
 * Installation
 * Maintainers

INTRODUCTION
------------

The Drupal 8 branch of Jquery Colorpicker offers jQuery Colorpicker widget for
the (Hexidecimal) Color field, and a Form API form element than can be used as
follows:

<?php
$form['element'] = [
  '#type' => 'jquery_colorpicker',
  '#title' => t('Color'),
  '#default_value' => 'FFFFFF',
];
?>


REQUIREMENTS
------------

This module depends upon:

- The jQuery Colorpicker library (https://www.eyecon.ro/colorpicker/)
- The Drupal (Hexidecimal) Color module
  (https://www.drupal.org/project/hexidecimal_color)
- The Drupal Vendor Stream Wrapper module
   (https://www.drupal.org/project/vendor_stream_wrapper).

These dependencies are managed through Composer when the module is installed
using:

composer require drupal/jquery_colorpicker


INSTALLATION
------------

Add the module to your project using:

composer require drupal/jquery_colorpicker

Then enable the module as you would any Drupal module.


MAINTAINERS
-----------

This module is maintained by:

* Jaypan (https://www.jaypan.com)
* Plopesc (https://www.drupal.org/u/plopesc)

File

README.txt
View source
  1. CONTENTS OF THIS FILE
  2. ---------------------
  3. * Introduction
  4. * Requirements
  5. * Installation
  6. * Maintainers
  7. INTRODUCTION
  8. ------------
  9. The Drupal 8 branch of Jquery Colorpicker offers jQuery Colorpicker widget for
  10. the (Hexidecimal) Color field, and a Form API form element than can be used as
  11. follows:
  12. $form['element'] = [
  13. '#type' => 'jquery_colorpicker',
  14. '#title' => t('Color'),
  15. '#default_value' => 'FFFFFF',
  16. ];
  17. ?>
  18. REQUIREMENTS
  19. ------------
  20. This module depends upon:
  21. - The jQuery Colorpicker library (https://www.eyecon.ro/colorpicker/)
  22. - The Drupal (Hexidecimal) Color module
  23. (https://www.drupal.org/project/hexidecimal_color)
  24. - The Drupal Vendor Stream Wrapper module
  25. (https://www.drupal.org/project/vendor_stream_wrapper).
  26. These dependencies are managed through Composer when the module is installed
  27. using:
  28. composer require drupal/jquery_colorpicker
  29. INSTALLATION
  30. ------------
  31. Add the module to your project using:
  32. composer require drupal/jquery_colorpicker
  33. Then enable the module as you would any Drupal module.
  34. MAINTAINERS
  35. -----------
  36. This module is maintained by:
  37. * Jaypan (https://www.jaypan.com)
  38. * Plopesc (https://www.drupal.org/u/plopesc)