function discussthis_theme in Discuss This! 6
Same name and namespace in other branches
- 7.2 discussthis.module \discussthis_theme()
- 7 discussthis.module \discussthis_theme()
\brief Implementation of hook_theme().
This enables us to tweak the form so it looks as expected.
\return An array of theme supported by this module.
File
- ./
discussthis.module, line 72 - Associations discussions in forums with specific nodes
Code
function discussthis_theme() {
return array(
'discussthis_admin_settings_forums' => array(
'arguments' => array(
'form',
),
'file' => 'discussthis.admin.inc',
),
);
}