You are here

og_views_handler_field_og_is_active.inc in Organic groups 6.2

Same filename and directory in other branches
  1. 6 modules/og_views/includes/og_views_handler_field_og_is_active.inc

File

modules/og_views/includes/og_views_handler_field_og_is_active.inc
View source
<?php

/**
 * Field handler to show if user is admin or not.
 *
 * @ingroup views_field_handlers
 */
class og_views_handler_field_og_is_active extends og_views_handler_field_og_uid {
  function render($values) {
    if (isset($values->{$this->field_alias})) {
      $is_active = $values->{$this->field_alias};
      if (!$is_active) {
        return '<em>(' . t('approval needed') . ')</em>';
      }
    }
  }

}

Classes

Namesort descending Description
og_views_handler_field_og_is_active Field handler to show if user is admin or not.