function _jq_maphilight_available in jQuery Map Hilight 5
Same name and namespace in other branches
- 6 jq_maphilight.module \_jq_maphilight_available()
- 7 jq_maphilight.module \_jq_maphilight_available()
check jquery_plugin directory for the jquery.maphilight.min.js file
2 calls to _jq_maphilight_available()
- jq_maphilight_admin_settings in ./
jq_maphilight.module - jq_maphilight admin/settings page; implements hook_form
- jq_maphilight_menu in ./
jq_maphilight.module - implement hook_menu
File
- ./
jq_maphilight.module, line 136 - Configurable javascript based image map hilighting using the jquery map hilight plugin.
Code
function _jq_maphilight_available() {
$available = drupal_get_path('module', 'jquery_plugin') . '/jquery.maphilight.min.js';
if (!is_file($available)) {
return FALSE;
}
return $available;
}