You are here

function theme_textformatter_formatter_text_unorderedlist in Text list formatter 6

Theme a textfield as an HTML unordered list.

1 string reference to 'theme_textformatter_formatter_text_unorderedlist'
textformatter_theme in ./textformatter.module
Implementation of hook_theme().

File

./textformatter.module, line 148

Code

function theme_textformatter_formatter_text_unorderedlist($element) {
  $values = textformatter_formatter_get_element_values($element);
  if (!empty($values)) {
    return theme('item_list', $values, NULL, 'ul');
  }
  return NULL;
}