You are here

function textformatter_theme in Text list formatter 8.2

Same name and namespace in other branches
  1. 6 textformatter.module \textformatter_theme()
  2. 7 textformatter.module \textformatter_theme()

Implements hook_theme().

File

./textformatter.module, line 45
Provide a field formatter to render values as HTML or comma-separated lists.

Code

function textformatter_theme($existing, $type, $theme, $path) {
  return array(
    'textformatter_comma' => array(
      'variables' => array(
        'items' => NULL,
        'formatter' => NULL,
        'attributes' => NULL,
      ),
    ),
  );
}