You are here

function rolereference_content_multigroup_allowed_widgets in Role Reference 6

Implementation of hook_content_multigroup_allowed_widgets().

File

./rolereference.module, line 877
Defines a field type for referencing a role. Based almost entirely on nodereference and userreference modules.

Code

function rolereference_content_multigroup_allowed_widgets() {
  return array(
    'rolereference_select',
    'rolereference_buttons',
    'rolereference_autocomplete',
  );
}