You are here

function img_assist_elements in Image Assist 6.2

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

Implementation of hook_elements().

File

./img_assist.module, line 141
Image Assist module

Code

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