You are here

function _wysiwyg_markitup_plugins in Wysiwyg 6.2

Same name and namespace in other branches
  1. 7.2 editors/markitup.inc \_wysiwyg_markitup_plugins()

Return internal plugins for this editor; semi-implementation of hook_wysiwyg_plugin().

1 string reference to '_wysiwyg_markitup_plugins'
wysiwyg_markitup_editor in editors/markitup.inc
Plugin implementation of hook_editor().

File

editors/markitup.inc, line 189
Editor integration functions for markItUp.

Code

function _wysiwyg_markitup_plugins($editor) {
  return array(
    'default' => array(
      'buttons' => array(
        'bold' => t('Bold'),
        'italic' => t('Italic'),
        'stroke' => t('Strike-through'),
        'link' => t('Link'),
        'image' => t('Image'),
        // 'cleanup' => t('Clean-up'),
        'preview' => t('Preview'),
      ),
      'internal' => TRUE,
    ),
  );
}