From 039453164e790bbebfb577732eb76c72caefb726 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 7 Dec 2006 16:53:56 +0000 Subject: - Patch #101546 by webchick: added PHPdoc comments. --- modules/profile/profile.module | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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); /** -- cgit v1.2.3