function _scheduler_use_date_popup in Scheduler 6
Same name and namespace in other branches
- 7 scheduler.module \_scheduler_use_date_popup()
Do we use the date_popup for date/time selection?
2 calls to _scheduler_use_date_popup()
- scheduler_form_alter in ./
scheduler.module - Implementation of hook_form_alter().
- _scheduler_strtotime in ./
scheduler.module - Converts an english time string ('Y-m-d H:i:s') from the users timezone into an unix timestamp
File
- ./
scheduler.module, line 187
Code
function _scheduler_use_date_popup() {
return module_exists('date_popup') && variable_get('scheduler_field_type', 'date_popup') == 'date_popup';
}