function editor_plugin_code_options in Editor 5
Same name and namespace in other branches
- 6 editor.plugins.inc \editor_plugin_code_options()
Code options.
1 call to editor_plugin_code_options()
- editor_editor_plugins in ./
editor.plugins.inc - Implementation of hook_editor_plugins();
File
- ./
editor.plugins.inc, line 48 - Provides default plugin objects. @author Tj Holowaychuk <http://www.350designs.com/> @package Editor
Code
function editor_plugin_code_options() {
return '
<form>
<select class="type">
<option value="code">' . t('General') . '</option>
</select>
<input type="button" class="submit" value="' . t('Go') . '" />
</form>
';
}