function google_appliance_library in Google Search Appliance 7
Implements hook_library().
File
- ./
google_appliance.module, line 98 - Google Appliance module enables searching via a dedicated Google Search Appliance hardware device. See README.txt and the help page at admin/help/google_appliance.
Code
function google_appliance_library() {
$libraries['jquery.gsa-clicks'] = array(
'title' => 'Google Search Appliance Click Tracking',
'website' => 'https://github.com/asmallwebfirm/gsa-clicks',
'version' => '1.0.0',
'js' => array(
drupal_get_path('module', 'google_appliance') . '/js/jquery.gsa-clicks.min.js' => array(),
),
'dependencies' => array(
array(
'system',
'jquery',
),
),
);
return $libraries;
}