You are here

function og_views_handler_field_og_managelink::construct in Organic groups 6

Same name and namespace in other branches
  1. 6.2 modules/og_views/includes/og_views_handler_field_og_managelink.inc \og_views_handler_field_og_managelink::construct()

File

modules/og_views/includes/og_views_handler_field_og_managelink.inc, line 8

Class

og_views_handler_field_og_managelink
Field handler to approve/deny a subscription request, or remove a member.

Code

function construct() {
  parent::construct();
  $this->additional_fields['is_active'] = array(
    'table' => 'og_uid',
    'field' => 'is_active',
  );
  $this->additional_fields['uid'] = array(
    'table' => 'og_uid',
    'field' => 'uid',
  );
  $this->additional_fields['nid'] = array(
    'table' => 'og_uid',
    'field' => 'nid',
  );
}