function insert_content in Insert 6
Same name and namespace in other branches
- 7 insert.module \insert_content()
Given an item and an insert style, return the output.
1 call to insert_content()
- insert_element_process in ./
insert.module - Process function for insert-enabled fields.
File
- ./
insert.module, line 171 - Allows insertion of files, images, and other media directly into the body field by using an "Insert" button next to the uploaded file.
Code
function insert_content($item, $style, $widget) {
return module_invoke($style['module'], 'insert_content', $item, $style, $widget);
}