function editor_plugin_link_options in Editor 5
Same name and namespace in other branches
- 6 editor.plugins.inc \editor_plugin_link_options()
Link options.
1 call to editor_plugin_link_options()
- editor_editor_plugins in ./
editor.plugins.inc - Implementation of hook_editor_plugins();
File
- ./
editor.plugins.inc, line 62 - Provides default plugin objects. @author Tj Holowaychuk <http://www.350designs.com/> @package Editor
Code
function editor_plugin_link_options() {
return '
<form>
<input type="text" class="href click-clear" value="Location" />
<select class="window">
<option value="same">' . t('Open in same window') . '</option>
<option value="_blank">' . t('Open in new window') . '</option>
</select>
<input type="button" class="submit" value="Go" />
</form>
';
}