Skip to content
Snippets Groups Projects
Commit 61ebf7b5 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #37401 by webchick: fixed dependency of date selection form element on profile module.

parent 6e95094c
No related branches found
No related tags found
No related merge requests found
...@@ -493,13 +493,13 @@ function theme_radios($element) { ...@@ -493,13 +493,13 @@ function theme_radios($element) {
} }
/** /**
* Format a set of radio buttons. * Format a date selection element.
* *
* @param $element * @param $element
* An associative array containing the properties of the element. * An associative array containing the properties of the element.
* Properties used : title, value, options, description, required and attributes. * Properties used : title, value, options, description, required and attributes.
* @return * @return
* A themed HTML string representing the radio button set. * A themed HTML string representing the date selection boxes.
*/ */
function theme_date($element) { function theme_date($element) {
$output = '<div class="container-inline">' . $element['#children'] . '</div>'; $output = '<div class="container-inline">' . $element['#children'] . '</div>';
...@@ -507,7 +507,7 @@ function theme_date($element) { ...@@ -507,7 +507,7 @@ function theme_date($element) {
} }
/** /**
* Roll out a single checkbox element to a list of checkboxes, using the options array as index. * Roll out a single date element.
*/ */
function expand_date($element) { function expand_date($element) {
// Default to current date // Default to current date
...@@ -533,7 +533,7 @@ function expand_date($element) { ...@@ -533,7 +533,7 @@ function expand_date($element) {
$options = drupal_map_assoc(range(1, 31)); $options = drupal_map_assoc(range(1, 31));
break; break;
case 'month': case 'month':
$options = drupal_map_assoc(range(1, 12), '_profile_map_month'); $options = drupal_map_assoc(range(1, 12), 'map_month');
break; break;
case 'year': case 'year':
$options = drupal_map_assoc(range(1900, 2050)); $options = drupal_map_assoc(range(1900, 2050));
...@@ -545,9 +545,15 @@ function expand_date($element) { ...@@ -545,9 +545,15 @@ function expand_date($element) {
return $element; return $element;
} }
/**
* Helper function for usage with drupal_map_assoc to display month names.
*/
function map_month($month) {
return format_date(gmmktime(0, 0, 0, $month, 2, 1970), 'custom', 'M', 0);
}
/** /**
* Roll out a single adios element * Roll out a single radios element
* to a list of radios, using the options array as index. * to a list of radios, using the options array as index.
*/ */
function expand_radios($element) { function expand_radios($element) {
......
...@@ -286,7 +286,7 @@ function profile_view_field($user, $field) { ...@@ -286,7 +286,7 @@ function profile_view_field($user, $field) {
$replace = array('d' => sprintf('%02d', $value['day']), $replace = array('d' => sprintf('%02d', $value['day']),
'j' => $value['day'], 'j' => $value['day'],
'm' => sprintf('%02d', $value['month']), 'm' => sprintf('%02d', $value['month']),
'M' => _profile_map_month($value['month']), 'M' => map_month($value['month']),
'Y' => $value['year']); 'Y' => $value['year']);
return strtr($format, $replace); return strtr($format, $replace);
case 'list': case 'list':
...@@ -398,14 +398,6 @@ function _profile_update_user_fields(&$fields, $account) { ...@@ -398,14 +398,6 @@ function _profile_update_user_fields(&$fields, $account) {
} }
} }
/**
* Helper function for usage with drupal_map_assoc
*/
function _profile_map_month($month) {
return format_date(gmmktime(0, 0, 0, $month, 2, 1970), 'custom', 'M', 0);
}
function profile_validate_profile($edit, $category) { function profile_validate_profile($edit, $category) {
if ($_GET['q'] == 'user/register' || $_GET['q'] == 'admin/user/create') { if ($_GET['q'] == 'user/register' || $_GET['q'] == 'admin/user/create') {
......
...@@ -286,7 +286,7 @@ function profile_view_field($user, $field) { ...@@ -286,7 +286,7 @@ function profile_view_field($user, $field) {
$replace = array('d' => sprintf('%02d', $value['day']), $replace = array('d' => sprintf('%02d', $value['day']),
'j' => $value['day'], 'j' => $value['day'],
'm' => sprintf('%02d', $value['month']), 'm' => sprintf('%02d', $value['month']),
'M' => _profile_map_month($value['month']), 'M' => map_month($value['month']),
'Y' => $value['year']); 'Y' => $value['year']);
return strtr($format, $replace); return strtr($format, $replace);
case 'list': case 'list':
...@@ -398,14 +398,6 @@ function _profile_update_user_fields(&$fields, $account) { ...@@ -398,14 +398,6 @@ function _profile_update_user_fields(&$fields, $account) {
} }
} }
/**
* Helper function for usage with drupal_map_assoc
*/
function _profile_map_month($month) {
return format_date(gmmktime(0, 0, 0, $month, 2, 1970), 'custom', 'M', 0);
}
function profile_validate_profile($edit, $category) { function profile_validate_profile($edit, $category) {
if ($_GET['q'] == 'user/register' || $_GET['q'] == 'admin/user/create') { if ($_GET['q'] == 'user/register' || $_GET['q'] == 'admin/user/create') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment