You are here

function panopoly_wysiwyg_button_order_help in Panopoly WYSIWYG 7

After build callback that adds help text about using wysiwyg_button_order.

1 string reference to 'panopoly_wysiwyg_button_order_help'
panopoly_wysiwyg_form_wysiwyg_profile_form_alter in ./panopoly_wysiwyg.module
Implements hook_form_FORM_ID_alter().

File

./panopoly_wysiwyg.module, line 362

Code

function panopoly_wysiwyg_button_order_help($form) {
  if (isset($form['buttonorder'])) {
    $form['buttonorder']['#description'] = '<p>Add two separators in a row to force buttons to a new row.</p>';
  }
  return $form;
}