You are here

function linkit_picker_alter_template_preprocess_linkit_dashboard in Linkit Picker 6

Same name and namespace in other branches
  1. 7 linkit_picker.module \linkit_picker_alter_template_preprocess_linkit_dashboard()
1 string reference to 'linkit_picker_alter_template_preprocess_linkit_dashboard'
linkit_picker_theme_registry_alter in ./linkit_picker.module
Implementation of hook_theme_registry_alter().

File

./linkit_picker.module, line 86
Main file for linkit_pikcer module.

Code

function linkit_picker_alter_template_preprocess_linkit_dashboard(&$variables) {
  drupal_add_js(drupal_get_path('module', 'linkit_picker') . '/linkit_picker.js');
  drupal_add_css(drupal_get_path('module', 'linkit_picker') . '/linkit_picker.css');
  $variables['styles'] = drupal_get_css();
  $variables['head'] = drupal_get_html_head();
  $variables['scripts'] = drupal_get_js();
}