You are here

function bueditor_elements in BUEditor 6

Same name and namespace in other branches
  1. 5 bueditor.module \bueditor_elements()
  2. 6.2 bueditor.module \bueditor_elements()

Implementation of hook_elements().

File

./bueditor.module, line 118

Code

function bueditor_elements() {
  return array(
    'textarea' => array(
      '#process' => array(
        'bueditor_textarea',
      ),
    ),
  );
}