You are here

function editor_plugin_image_options in Editor 5

Same name and namespace in other branches
  1. 6 editor.plugins.inc \editor_plugin_image_options()

Image options.

1 call to editor_plugin_image_options()
editor_editor_plugins in ./editor.plugins.inc
Implementation of hook_editor_plugins();

File

./editor.plugins.inc, line 90
Provides default plugin objects. @author Tj Holowaychuk <http://www.350designs.com/> @package Editor

Code

function editor_plugin_image_options() {
  return '
      <form>
        <input type="text" class="uri click-clear" value="' . t('Image Path') . '" />
        <input type="text" class="alt click-clear" value="' . t('Description') . '" />
        <input type="button" class="submit" value="' . t('Go') . '" />
      </form>
    ';
}