You are here

simplenews_handler_field_category_opt_inout.inc in Simplenews 7

Views field handler for simplenews_category.opt_inout.

File

includes/views/handlers/simplenews_handler_field_category_opt_inout.inc
View source
<?php

/**
 * @file
 * Views field handler for simplenews_category.opt_inout.
 */

/**
 * Provide translatable simplenews_category.opt_inout Options.
 */
class simplenews_handler_field_category_opt_inout extends views_handler_field {
  function render($values) {
    $opt = array(
      'hidden' => t('Hidden'),
      'single' => t('Single opt-in'),
      'double' => t('Double opt-in'),
    );
    return check_plain($opt[$values->{$this->field_alias}]);
  }

}

Classes

Namesort descending Description
simplenews_handler_field_category_opt_inout Provide translatable simplenews_category.opt_inout Options.