You are here

function _linkit_dashboard in Linkit 7.2

Creates the dashboard.

1 string reference to '_linkit_dashboard'
linkit_menu in ./linkit.module
Implements hook_menu().

File

./linkit.module, line 250
Main file for linkit module.

Code

function _linkit_dashboard($editor) {
  $form = drupal_get_form('linkit_dashboard_form');
  print drupal_render($form);
  drupal_exit();
}