function tinymce_tinymce_plugins in TinyMCE 7
Implements hook_tinymce_plugins().
Return a list of all plugins provided by this module.
File
- ./
tinymce.module, line 113
Code
function tinymce_tinymce_plugins() {
$image_prefix = drupal_get_path('module', 'tinymce') . '/images/buttons/';
$buttons = array(
'Bold' => array(
'label' => t('Bold'),
'required_tags' => array(
'strong',
),
),
'Italic' => array(
'label' => t('Italic'),
'required_tags' => array(
'em',
),
),
'Underline' => array(
'label' => t('Underline'),
// A class is used on spans for underline.
'required_tags' => array(
'span',
),
),
'Strike' => array(
'label' => t('Strike-through'),
'required_tags' => array(
'del',
),
),
'JustifyLeft' => array(
'label' => t('Align left'),
'required_tags' => array(
'p',
),
),
'JustifyCenter' => array(
'label' => t('Align center'),
'required_tags' => array(
'p',
),
),
'JustifyRight' => array(
'label' => t('Align right'),
'required_tags' => array(
'p',
),
),
'JustifyBlock' => array(
'label' => t('Justify'),
'required_tags' => array(
'p',
),
),
'BulletedList' => array(
'label' => t('Bullet list'),
'image_rtl' => $image_prefix . '/bulletedlist-rtl.png',
'required_tags' => array(
'ul',
'li',
),
),
'NumberedList' => array(
'label' => t('Numbered list'),
'image_rtl' => $image_prefix . '/numberedlist-rtl.png',
'required_tags' => array(
'ol',
'li',
),
),
'Outdent' => array(
'label' => t('Outdent'),
'image_rtl' => $image_prefix . '/outdent-rtl.png',
'required_tags' => array(
'p',
),
),
'Indent' => array(
'label' => t('Indent'),
'image_rtl' => $image_prefix . '/indent-rtl.png',
'required_tags' => array(
'p',
),
),
'Undo' => array(
'label' => t('Undo'),
'image_rtl' => $image_prefix . '/undo-rtl.png',
),
'Redo' => array(
'label' => t('Redo'),
'image_rtl' => $image_prefix . '/redo-rtl.png',
),
'Link' => array(
'label' => t('Link'),
'required_tags' => array(
'a',
),
),
'Unlink' => array(
'label' => t('Unlink'),
'required_tags' => array(
'a',
),
),
'Anchor' => array(
'image_rtl' => $image_prefix . '/anchor-rtl.png',
'label' => t('Anchor'),
'required_tags' => array(
'a',
),
),
'Superscript' => array(
'label' => t('Superscript'),
'required_tags' => array(
'sub',
),
),
'Subscript' => array(
'label' => t('Subscript'),
'required_tags' => array(
'sup',
),
),
'Blockquote' => array(
'label' => t('Blockquote'),
'required_tags' => array(
'blockquote',
),
),
'Source' => array(
'label' => t('Source code'),
),
'HorizontalRule' => array(
'label' => t('Horizontal rule'),
'required_tags' => array(
'hr',
),
),
'Cut' => array(
'label' => t('Cut'),
),
'Copy' => array(
'label' => t('Copy'),
),
'Paste' => array(
'label' => t('Paste'),
),
'PasteText' => array(
'label' => t('Paste Text'),
'image_rtl' => $image_prefix . '/pastetext-rtl.png',
),
'PasteFromWord' => array(
'label' => t('Paste from Word'),
'image_rtl' => $image_prefix . '/pastefromword-rtl.png',
),
'ShowBlocks' => array(
'label' => t('Show blocks'),
'image_rtl' => $image_prefix . '/showblocks-rtl.png',
),
'RemoveFormat' => array(
'label' => t('Remove format'),
),
'SpecialChar' => array(
'label' => t('Character map'),
),
'Format' => array(
'label' => t('HTML block format'),
'image_alternative' => '<span class="tinymce-button-dropdown">' . t('Format') . '<span class="tinymce-button-arrow"></span></span>',
),
'Styles' => array(
'label' => t('Font style'),
'image_alternative' => '<span class="tinymce-button-dropdown">' . t('Styles') . '<span class="tinymce-button-arrow"></span></span>',
),
'Table' => array(
'label' => t('Table'),
'required_tags' => array(
'table',
'thead',
'tbody',
'tr',
'td',
'th',
),
),
'Maximize' => array(
'label' => t('Maximize'),
),
'|' => array(
'label' => t('Group separator'),
'image_alternative' => '<span class="tinymce-group-separator"> </span>',
'attributes' => array(
'class' => array(
'tinymce-group-button-separator',
),
),
'multiple' => TRUE,
),
'-' => array(
'label' => t('Separator'),
'image_alternative' => '<span class="tinymce-separator"> </span>',
'attributes' => array(
'class' => array(
'tinymce-button-separator',
),
),
'multiple' => TRUE,
),
);
// Populate image locations that match button names.
foreach ($buttons as $button_name => &$button) {
if (!isset($button['image_alternative']) && !isset($button['image'])) {
// Because button names are ASCII text, drupal_strtolower() is not needed.
$button['image'] = $image_prefix . strtolower($button_name) . '.png';
}
}
// List all the basic plugin buttons as an "internal" plugin.
$plugins['default'] = array(
'buttons' => $buttons,
'internal' => TRUE,
);
// The drupalimage plugin replaces normal image functionality.
$plugins['drupalimage'] = array(
'path' => drupal_get_path('module', 'tinymce') . '/js/plugins/drupalimage',
'file' => 'plugin.js',
'buttons' => array(
'DrupalImage' => array(
'label' => t('Image'),
'required_tags' => array(
'img',
),
'image' => $image_prefix . '/image.png',
),
),
);
// The drupalcaption plugin provides consistent behaviors for image captions.
$plugins['drupalcaption'] = array(
'path' => drupal_get_path('module', 'tinymce') . '/js/plugins/drupalcaption',
'file' => 'plugin.js',
'css' => array(
drupal_get_path('module', 'tinymce') . '/css/tinymce-caption.css',
),
'enabled callback' => 'tinymce_image_plugin_check',
);
// The drupalbreak plugin provides support for Drupal's <!--break--> comment.
$plugins['drupalbreak'] = array(
'path' => drupal_get_path('module', 'tinymce') . '/js/plugins/drupalbreak',
'file' => 'plugin.js',
'buttons' => array(
'DrupalBreak' => array(
'label' => t('Teaser break'),
'image' => $image_prefix . '/pagebreak.png',
'image_rtl' => $image_prefix . '/pagebreak-rtl.png',
),
),
);
// Webkit support for resizing images.
$plugins['webkitdrag'] = array(
'path' => drupal_get_path('module', 'tinymce') . '/js/plugins/webkitdrag',
'file' => 'plugin.js',
'enabled callback' => 'tinymce_image_plugin_check',
);
return $plugins;
}