You are here

function theme_editor_toolbar in Editor 6

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

Theme an editor toolbar.

Parameters

string $content:

Return value

string Markup.

1 theme call to theme_editor_toolbar()
editor_display_toolbars in ./editor.module
@todo: handle different toolbars etc? or all themeing?

File

./editor.module, line 483
Extendable WYSIWYG editor @author Tj Holowaychuk <http://www.350designs.com/> @package Editor

Code

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