You are here

function textimage_element_info in Textimage 7.3

Implements hook_element_info().

Implement a form element to enable capturing color information.

File

./textimage.module, line 637
Textimage - Provides text to image manipulations.

Code

function textimage_element_info() {

  // This are the definition for the form API elements.
  return array(
    'textimage_color' => array(
      '#input' => TRUE,
      '#process' => array(
        'textimage_color_element_process',
      ),
      '#element_validate' => array(
        'textimage_color_element_validate',
      ),
    ),
  );
}