You are here

function ckeditor_htmlbuttons_button_load in CKEditor HTML Buttons (for WYSIWYG and CKEditor) 7

CKEditor button Wildcard menu loader.

Prepare item for the create/modify admin form.

Parameters

string $name: Button machine name.

Return value

array|null Button data.

File

./ckeditor_htmlbuttons.module, line 98
Basic module file for CKEditor HTML Buttons.

Code

function ckeditor_htmlbuttons_button_load($name) {
  $button = ckeditor_htmlbutton_load_button($name);
  return $button;
}