You are here

simplenews_handler_field_category_hyperlinks.inc in Simplenews 7

Views handler for simplenews field simplewnews_category.hyperlinks.

File

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

/**
 * @file
 * Views handler for simplenews field simplewnews_category.hyperlinks.
 */

/**
 * Provide HTML Mail Hyperlinks position settings.
 */
class simplenews_handler_field_category_hyperlinks extends views_handler_field {
  function render($values) {
    switch ($values->{$this->field_alias}) {
      case 0:
        return t('Bottom');
      case 1:
        return t('Inline');
    }
  }

}

Classes

Namesort descending Description
simplenews_handler_field_category_hyperlinks Provide HTML Mail Hyperlinks position settings.