Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
03945316
Commit
03945316
authored
Dec 07, 2006
by
Dries Buytaert
Browse files
- Patch
#101546
by webchick: added PHPdoc comments.
parent
ae0407ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/profile/profile.module
View file @
03945316
...
...
@@ -7,11 +7,23 @@
*/
/**
*
Flags to define the visibility of a
pr
of
ile
field
.
*
Private field, content only available to
pr
iv
ile
ged users
.
*/
define
(
'PROFILE_PRIVATE'
,
1
);
/**
* Public field, content shown on profile page but not used on member list pages.
*/
define
(
'PROFILE_PUBLIC'
,
2
);
/**
* Public field, content shown on profile page and on member list pages.
*/
define
(
'PROFILE_PUBLIC_LISTINGS'
,
3
);
/**
* Hidden profile field, only accessible by administrators, modules and themes.
*/
define
(
'PROFILE_HIDDEN'
,
4
);
/**
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment