You are here

function calendar_systems_load_js_date_picker_library in Calendar Systems 7

Same name and namespace in other branches
  1. 8 calendar_systems.module \calendar_systems_load_js_date_picker_library()
  2. 7.2 calendar_systems.module \calendar_systems_load_js_date_picker_library()

Load requires libraries for javascript date picker support

2 calls to calendar_systems_load_js_date_picker_library()
calendar_systems_add_js_date_picker in ./calendar_systems.module
Add javascript date picker for a field or set of fields
calendar_systems_attach_js_date_picker in ./calendar_systems.module

File

./calendar_systems.module, line 581
Contains Calendar Systems hook implementations and helpers.

Code

function calendar_systems_load_js_date_picker_library() {
  if (module_exists('jquery_calendar')) {

    //Use the default settings configurable by date pickers' provider drupal module
    jquery_calendar_add('picker, picker.ext, persian, islamic, thai');
  }
}