function ckeditor_field_extra_fields in CKEditor - WYSIWYG HTML editor 7
Implements hook_field_extra_fields().
File
- ./
ckeditor.module, line 763 - CKEditor - The text editor for the Internet - http://ckeditor.com Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
Code
function ckeditor_field_extra_fields() {
$fields['user']['user']['form']['ckeditor'] = array(
'label' => t('Rich text editor settings'),
'description' => t('Rich text editor settings'),
'weight' => 10,
);
return $fields;
}