Last active
December 28, 2015 18:59
-
-
Save tanmayk/7546694 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Privacy level: Public. | |
* Field can be viewed by all. | |
*/ | |
define('CORE_SECURITY_PRIVACY_PUBLIC', 0); | |
/** | |
* Privacy level: Friends only. | |
* Field can be viewed by only friends. | |
*/ | |
define('CORE_SECURITY_PRIVACY_FRIENDS', 1); | |
/** | |
* Privacy level: Private. | |
* Field can be viewed by only user. | |
*/ | |
define('CORE_SECURITY_PRIVACY_PRIVATE', 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment