legal_views_handler_field_exploded_list.inc in Legal 6.8
Same filename and directory in other branches
Views field displaying explanations of changes to T&Cs.
File
views/legal_views_handler_field_exploded_list.incView source
<?php
// $Id$
/**
* @file
* Views field displaying explanations of changes to T&Cs.
*/
/**
* Implementing archived field.
*/
class legal_views_handler_field_exploded_list extends views_handler_field {
function render($values) {
$extras = explode("\r\n", $values->{$this->field_alias});
return theme('item_list', $extras);
}
}
Classes
Name | Description |
---|---|
legal_views_handler_field_exploded_list | Implementing archived field. |