You are here

function bueditor_elements in BUEditor 5

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

Implementation of hook_elements().

File

./bueditor.module, line 477

Code

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