diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-12-07 16:53:56 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-12-07 16:53:56 +0000 |
commit | 039453164e790bbebfb577732eb76c72caefb726 (patch) | |
tree | 4272194f8870fb330e54ed7e760c544226ced8dd /modules/profile/profile.module | |
parent | ae0407ab8bd68bccb4f829b9b60a09e3ae5f7bd4 (diff) | |
download | brdo-039453164e790bbebfb577732eb76c72caefb726.tar.gz brdo-039453164e790bbebfb577732eb76c72caefb726.tar.bz2 |
- Patch #101546 by webchick: added PHPdoc comments.
Diffstat (limited to 'modules/profile/profile.module')
-rw-r--r-- | modules/profile/profile.module | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module index f6e29b2a7..1437dfc89 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -7,11 +7,23 @@ */ /** - * Flags to define the visibility of a profile field. + * Private field, content only available to privileged 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); /** |