function og_remove_group_action_form in Organic groups 6.2
Same name and namespace in other branches
- 6 modules/og_actions/og_actions.module \og_remove_group_action_form()
Configuration form for Remove Group action.
File
- modules/
og_actions/ og_actions.module, line 193
Code
function og_remove_group_action_form($context) {
if (!isset($context['groups'])) {
$context['groups'] = array();
}
$groups = og_all_groups_options();
if (count($groups)) {
$form = array();
$form['groups'] = array(
'#type' => 'select',
'#title' => t('Groups'),
'#options' => $groups,
'#description' => t('Select the groups to remove from the node.'),
'#default_value' => $context['groups'],
'#required' => TRUE,
'#multiple' => TRUE,
);
}
else {
drupal_set_message(t('There are no groups. You must have at least one existing group with nodes assigned to use this action.'));
}
return $form;
}