function img_assist_elements in Image Assist 5
Same name and namespace in other branches
- 5.3 img_assist.module \img_assist_elements()
 - 5.2 img_assist.module \img_assist_elements()
 - 6.2 img_assist.module \img_assist_elements()
 - 6 img_assist.module \img_assist_elements()
 
Implementation of hook_elements().
File
- ./
img_assist.module, line 124  - Image Assist module
 
Code
function img_assist_elements() {
  $type['textarea'] = array(
    '#process' => array(
      'img_assist_textarea' => array(),
    ),
  );
  return $type;
}