You are here

function bueditor_element_info in BUEditor 7

Implements hook_element_info().

File

./bueditor.module, line 70
Implements the necessary hooks for the editor to work properly.

Code

function bueditor_element_info() {
  $elements['textarea']['#process'] = array(
    'bueditor_textarea',
  );
  return $elements;
}