You are here

class context_og_condition_member_status in Context OG 7.2

Same name and namespace in other branches
  1. 6.3 plugins/context_og_condition_member_status.inc \context_og_condition_member_status

Expose organic groups member status as a context condition..

Hierarchy

Expanded class hierarchy of context_og_condition_member_status

3 string references to 'context_og_condition_member_status'
context_og_context_page_reaction in ./context_og.module
context_og_context_plugins in ./context_og.module
context_og_context_registry in ./context_og.module
Implementation of hook_context_registry().

File

plugins/context_og_condition_member_status.inc, line 6

View source
class context_og_condition_member_status extends context_condition {
  function condition_values() {
    return og_group_content_states();
  }
  function condition_form($context) {
    $form = parent::condition_form($context);
    $form['#type'] = 'select';
    $form['#multiple'] = TRUE;
    return $form;
  }
  function options_form($context) {
    $defaults = $this
      ->fetch_from_context($context, 'options');
    return array(
      'node_form' => array(
        '#title' => t('Set on node form'),
        '#type' => 'checkbox',
        '#description' => t('Set this context on node forms'),
        '#default_value' => isset($defaults['node_form']) ? $defaults['node_form'] : TRUE,
      ),
    );
  }
  function execute($group) {
    global $user;
    $node_form = arg(0) == 'node' && (is_numeric(arg(1)) && arg(2) == 'edit' || arg(1) == 'add');

    // load the og_membership corresponding to the current user and group
    $og_membership = og_get_membership($group['group_type'], $group['gid'], 'user', $user->uid);
    if (!empty($og_membership)) {

      // Load all contexts that trigger on this context.
      $contexts = $this
        ->get_contexts($og_membership->state);

      // iterate over all the states and trigger contexts for
      foreach ($contexts as $context) {
        $options = $this
          ->fetch_from_context($context, 'options');

        // Check node_Form status and trigger context accordingly.
        if (!$node_form || !empty($options['node_form'])) {
          $this
            ->condition_met($context, $og_membership->state);
        }
      }
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
context_condition::$description property
context_condition::$plugin property
context_condition::$title property
context_condition::$values property
context_condition::condition_form_submit function Condition form submit handler. 2
context_condition::condition_met function Marks a context as having met this particular condition.
context_condition::condition_used function Check whether this condition is used by any contexts. Can be used to prevent expensive condition checks from being triggered when no contexts use this condition.
context_condition::editor_form function Context editor form for conditions. 2
context_condition::editor_form_submit function Context editor form submit handler.
context_condition::fetch_from_context function Retrieve options from the context provided.
context_condition::get_contexts function Retrieve all contexts with the condition value provided. 2
context_condition::options_form_submit function Options form submit handler.
context_condition::settings_form function Settings form. Provide variable settings for your condition.
context_condition::__clone function Clone our references when we're being cloned.
context_condition::__construct function Constructor. Do not override.
context_og_condition_member_status::condition_form function Condition form. Overrides context_condition::condition_form
context_og_condition_member_status::condition_values function Condition values. Overrides context_condition::condition_values
context_og_condition_member_status::execute function
context_og_condition_member_status::options_form function Options form. Provide additional options for your condition. Overrides context_condition::options_form