You are here

gdpr_consent_views_handler_field_exploded_list.inc in GDPR Consent 7

Views field displaying explanations of changes to consent.

File

views/gdpr_consent_views_handler_field_exploded_list.inc
View source
<?php

/**
 * @file
 * Views field displaying explanations of changes to consent.
 */

/**
 * Implementing archived field.
 */
class GdprConsentViewsHandlerFieldExplodedList extends views_handler_field {

  /**
   * {@inheritdoc}
   */
  public function render($values) {
    $extras = explode("\r\n", $values->{$this->field_alias});
    return theme('item_list', $extras);
  }

}

Classes

Namesort descending Description
GdprConsentViewsHandlerFieldExplodedList Implementing archived field.