You are here

function imce_elements in IMCE 6.2

Same name and namespace in other branches
  1. 5 imce.module \imce_elements()
  2. 6 imce.module \imce_elements()

Implementation of hook_elements().

File

./imce.module, line 129
Implements the necessary hooks for the file browser to work properly.

Code

function imce_elements() {
  return array(
    'textarea' => array(
      '#process' => array(
        'imce_textarea',
      ),
    ),
  );
}