You are here

function og_group_states in Organic groups 7.2

Same name and namespace in other branches
  1. 7 og.module \og_group_states()

Return the states a group can be in.

File

./og.module, line 3402
Enable users to create and manage groups with roles and permissions.

Code

function og_group_states() {
  return array(
    OG_STATE_ACTIVE => t('Active'),
    OG_STATE_PENDING => t('Pending'),
  );
}