You are here

function context_og_condition_member_status::condition_values in Context OG 6.3

Same name and namespace in other branches
  1. 7.2 plugins/context_og_condition_member_status.inc \context_og_condition_member_status::condition_values()

File

plugins/context_og_condition_member_status.inc, line 7

Class

context_og_condition_member_status
Expose organic groups member status as a context condition.

Code

function condition_values() {
  $values = array(
    'no_member' => t('Not a member'),
    'member' => t('Member of group'),
    'admin' => t('Admin of group'),
  );
  return $values;
}