You are here

function img_assist_elements in Image Assist 5.3

Same name and namespace in other branches
  1. 5 img_assist.module \img_assist_elements()
  2. 5.2 img_assist.module \img_assist_elements()
  3. 6.2 img_assist.module \img_assist_elements()
  4. 6 img_assist.module \img_assist_elements()

Implementation of hook_elements().

File

./img_assist.module, line 133
Image Assist module

Code

function img_assist_elements() {
  $type['textarea'] = array(
    '#process' => array(
      'img_assist_textarea' => array(),
    ),
  );
  return $type;
}