You are here

function linkit_theme in Linkit 7

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