function imce_element_info in IMCE 7
Implements hook_element_info().
File
- ./
imce.module, line 142 - Implements the necessary hooks for the file browser to work properly.
Code
function imce_element_info() {
return array(
'textarea' => array(
'#process' => array(
'imce_textarea',
),
),
);
}