summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-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);
/**