function wysiwyg_whizzywig_plugins in Wysiwyg 6
Same name and namespace in other branches
- 5.2 editors/whizzywig.inc \wysiwyg_whizzywig_plugins()
- 5 editors/whizzywig.inc \wysiwyg_whizzywig_plugins()
Return internal plugins for Whizzywig; semi-implementation of hook_wysiwyg_plugin().
1 string reference to 'wysiwyg_whizzywig_plugins'
- wysiwyg_whizzywig_editor in editors/
whizzywig.inc - Plugin implementation of hook_editor().
File
- editors/
whizzywig.inc, line 104
Code
function wysiwyg_whizzywig_plugins($editor) {
return array(
'default' => array(
'buttons' => array(
'formatblock' => t('HTML block format'),
'fontname' => t('Font'),
'fontsize' => t('Font size'),
'bold' => t('Bold'),
'italic' => t('Italic'),
'underline' => t('Underline'),
'left' => t('Align left'),
'center' => t('Align center'),
'right' => t('Align right'),
'bullet' => t('Bullet list'),
'number' => t('Numbered list'),
'outdent' => t('Outdent'),
'indent' => t('Indent'),
'undo' => t('Undo'),
'redo' => t('Redo'),
'image' => t('Image'),
'color' => t('Forecolor'),
'hilite' => t('Backcolor'),
'rule' => t('Horizontal rule'),
'link' => t('Link'),
'image' => t('Image'),
'table' => t('Table'),
'clean' => t('Clean-up'),
'html' => t('Source code'),
'spellcheck' => t('Spell check'),
),
'internal' => TRUE,
),
);
}