You are here

function editor_plugins in Editor 5

Implementation of hook_plugins().

File

./editor.module, line 135
Extendable WYSIWYG editor @author Tj Holowaychuk <tj@vision-media.ca> @link http://vision-media.ca @package Editor

Code

function editor_plugins() {
  return array(
    array(
      '#name' => 'design_mode',
      '#download_uri' => 'http://plugins.jquery.com/files/jquery.designmode.js_0.txt',
      '#description' => t('This plugin is required to supply cross-browser compatible methods needed for Editor.'),
    ),
  );
}