You are here

function editor_plugin_link_options in Editor 6

Same name and namespace in other branches
  1. 5 editor.plugins.inc \editor_plugin_link_options()

Link options.

1 call to editor_plugin_link_options()
editor_editor_plugins in ./editor.plugins.inc
Default core and popular module supported plugins.

File

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

Code

function editor_plugin_link_options() {
  return '
      <input type="text" class="href" value="Location" />
      <select class="window">
        <option value="same">Open in same window</option>
        <option value="_blank">Open in new window</option>
      </select>
      <input type="button" class="submit" value="Go" />
    ';
}