Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3421017
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
drupal-3421017
Commits
61ebf7b5
Commit
61ebf7b5
authored
19 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#37401
by webchick: fixed dependency of date selection form element on profile module.
parent
6e95094c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
includes/form.inc
+11
-5
11 additions, 5 deletions
includes/form.inc
modules/profile.module
+1
-9
1 addition, 9 deletions
modules/profile.module
modules/profile/profile.module
+1
-9
1 addition, 9 deletions
modules/profile/profile.module
with
13 additions
and
23 deletions
includes/form.inc
+
11
−
5
View file @
61ebf7b5
...
@@ -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
r
adios 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
)
{
...
...
This diff is collapsed.
Click to expand it.
modules/profile.module
+
1
−
9
View file @
61ebf7b5
...
@@ -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'
)
{
...
...
This diff is collapsed.
Click to expand it.
modules/profile/profile.module
+
1
−
9
View file @
61ebf7b5
...
@@ -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'
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment