You are here

function commons_groups_group_submission_message in Drupal Commons 7.3

1 string reference to 'commons_groups_group_submission_message'
commons_groups_form_alter in modules/commons/commons_groups/commons_groups.module
Implements hook_form_alter().

File

modules/commons/commons_groups/commons_groups.module, line 679

Code

function commons_groups_group_submission_message($form, &$form_state) {
  if ($form_state['values']['status'] !== 1) {
    drupal_set_message(t('Thanks for your group submission! This group has entered the moderation queue and will be reviewed shortly.'));
  }
}