function faqfield_theme in FAQ Field 7
Same name and namespace in other branches
- 8 faqfield.module \faqfield_theme()
- 2.0.x faqfield.module \faqfield_theme()
Implements hook_theme().
File
- ./
faqfield.module, line 504 - FAQ Field Provides a field for frequently asked questions.
Code
function faqfield_theme() {
// Themeable simple text formatter.
return array(
'faqfield_formatter' => array(
'variables' => array(
'question' => NULL,
'answer' => NULL,
'delta' => NULL,
),
),
);
}