Skip to content

Instantly share code, notes, and snippets.

@andypost
Last active December 12, 2015 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andypost/4691730 to your computer and use it in GitHub Desktop.
Save andypost/4691730 to your computer and use it in GitHub Desktop.
/**
* Implements hook_field_widget_info_alter().
*
* @todo convert this to a WidgetPlugin annotation.
*/
function comment_field_widget_info_alter(&$info) {
$info['comment_default']['behaviors'] = array(
'multiple values' => FIELD_BEHAVIOR_CUSTOM,
'default value' => FIELD_BEHAVIOR_NONE,
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment