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