summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-12-07 16:53:56 +0000
committerDries Buytaert <dries@buytaert.net>2006-12-07 16:53:56 +0000
commit039453164e790bbebfb577732eb76c72caefb726 (patch)
tree4272194f8870fb330e54ed7e760c544226ced8dd
parentae0407ab8bd68bccb4f829b9b60a09e3ae5f7bd4 (diff)
downloadbrdo-039453164e790bbebfb577732eb76c72caefb726.tar.gz
brdo-039453164e790bbebfb577732eb76c72caefb726.tar.bz2
- Patch #101546 by webchick: added PHPdoc comments.
-rw-r--r--modules/profile/profile.module14
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);
/**