function bueditor_elements in BUEditor 6.2
Same name and namespace in other branches
- 5 bueditor.module \bueditor_elements()
- 6 bueditor.module \bueditor_elements()
Implementation of hook_elements().
File
- ./
bueditor.module, line 59 - Implements the necessary hooks for the editor to work properly.
Code
function bueditor_elements() {
return array(
'textarea' => array(
'#process' => array(
'bueditor_textarea',
),
),
);
}