You are here

function linkit_theme in Linkit 6

Same name and namespace in other branches
  1. 7.3 linkit.module \linkit_theme()
  2. 7 linkit.module \linkit_theme()
  3. 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',
    ),
  );
}