You are here

function date_popup_date_format in Date 7

Same name and namespace in other branches
  1. 7.3 date_popup/date_popup.module \date_popup_date_format()
  2. 7.2 date_popup/date_popup.module \date_popup_date_format()
3 calls to date_popup_date_format()
date_popup_element_value_callback in date_popup/date_popup.module
Element value callback for date_popup element.
date_popup_input_date in date_popup/date_popup.module
Helper function for extracting a date value out of user input.
date_popup_process_date in date_popup/date_popup.module
Process the date portion of the element.

File

date_popup/date_popup.module, line 181
A module to enable jquery calendar and time entry popups. Requires the Date API.

Code

function date_popup_date_format($element) {
  return date_limit_format($element['#date_format'], date_popup_date_granularity($element));
}