function textformatter_theme in Text list formatter 7
Same name and namespace in other branches
- 8.2 textformatter.module \textformatter_theme()
- 6 textformatter.module \textformatter_theme()
Implements hook_theme().
File
- ./
textformatter.module, line 305 - 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,
'settings' => NULL,
'attributes' => NULL,
),
),
);
}