You are here

og_views_handler_field_og_is_active.inc in Organic groups 6

Same filename and directory in other branches
  1. 6.2 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 views_handler_field {
  function render($values) {
    $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.