You are here

function editor_editor_plugin_classes in Editor 5

Default plugin classes.

File

./editor.plugins.classes.inc, line 13
Provides default plugin class objects. @author Tj Holowaychuk <http://vision-media.ca/> @package Editor

Code

function editor_editor_plugin_classes() {
  $plugin_classes = array();
  $plugin_classes[] = editor_plugin_class_create('button', t('Button'), 'editor_button');
  $plugin_classes[] = editor_plugin_class_create('hidden', t('Hidden'), NULL);
  return $plugin_classes;
}