You are here

function colorpicker_elements in Colorpicker 5

Same name and namespace in other branches
  1. 6.2 colorpicker.module \colorpicker_elements()
  2. 6 colorpicker.module \colorpicker_elements()

File

./colorpicker.module, line 16
This module creates a new form element called a 'colorpicker_textfield'.

Code

function colorpicker_elements() {

  // A textfield to associate with the Farbtastic colorpicker
  $type['colorpicker_textfield'] = array(
    '#input' => TRUE,
    '#validate' => array(
      'colorpicker_validate_hex_color' => array(),
    ),
  );
  return $type;
}