function insert_widget_settings in Insert 6
A list of settings needed by Insert module on widgets.
1 call to insert_widget_settings()
- insert_widget_settings_alter in ./
insert.module - Implementation of hook_widget_settings_alter().
File
- ./
insert.module, line 277 - 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_widget_settings() {
return array(
'insert',
'insert_absolute',
'insert_styles',
'insert_default',
'insert_class',
'insert_width',
);
}