You are here

function editor_plugin_code_options in Editor 6

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

Code options.

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

File

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

Code

function editor_plugin_code_options() {
  return '
      <select class="type">
        <option value="code">General</option>
        <option value="php">PHP</option>
      </select>
      <input type="button" class="submit" value="Go" />
    ';
}