You are here

function theme_editor_toolbar in Editor 5

Same name and namespace in other branches
  1. 6 editor.module \theme_editor_toolbar()

Theme an editor toolbar.

Parameters

string $content:

Return value

string Markup.

Related topics

1 theme call to theme_editor_toolbar()
editor_display_toolbars in ./editor.module
Generate toolbar markup.

File

./editor.module, line 724
Extendable WYSIWYG editor @author Tj Holowaychuk <tj@vision-media.ca> @link http://vision-media.ca @package Editor

Code

function theme_editor_toolbar($content) {
  return '<div class="editor-toolbar">' . $content . '<div class="clear-block"></div></div>';
}