function editor_settings_overview in Editor 5
Editor settings overview.
1 string reference to 'editor_settings_overview'
- editor_menu in ./
editor.module - Implementation of hook_menu().
File
- ./
editor.module, line 600 - Extendable WYSIWYG editor @author Tj Holowaychuk <tj@vision-media.ca> @link http://vision-media.ca @package Editor
Code
function editor_settings_overview() {
// Check database setup if necessary
if (function_exists('db_check_setup') && empty($_POST)) {
db_check_setup();
}
$menu = menu_get_item(NULL, 'admin/editor');
$content = system_admin_menu_block($menu);
return theme('admin_block_content', $content);
}