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'
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;
}