function itoggle_theme in iToggle 7
Same name and namespace in other branches
- 7.3 itoggle.module \itoggle_theme()
- 7.2 itoggle.module \itoggle_theme()
Implements hook_theme().
File
- ./
itoggle.module, line 257 - iToggle module.
Code
function itoggle_theme($existing, $type, $theme, $path) {
return array(
'itoggle' => array(
'variables' => array(
'type' => NULL,
'id' => NULL,
'property' => NULL,
'checked' => NULL,
'scope' => NULL,
),
),
);
}