function linkit_theme in Linkit 6
Same name and namespace in other branches
- 7.3 linkit.module \linkit_theme()
- 7 linkit.module \linkit_theme()
- 7.2 linkit.module \linkit_theme()
Implementation of hook_theme().
File
- ./
linkit.module, line 77 - Main file for linkit module.
Code
function linkit_theme($existing, $type, $theme, $path) {
return array(
'linkit_dashboard' => array(
'arguments' => array(
'content' => NULL,
),
'template' => 'linkit-dashboard',
),
);
}