Created
January 25, 2017 09:09
-
-
Save martsie/f65db57693acdad8f9111697841f68ec to your computer and use it in GitHub Desktop.
Basic Drupal 7 User Data usage
This file contains hidden or 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
<?php | |
// Add some data to the current user. | |
global $user; | |
$user->data['foo'] = 'bar'; | |
user_save($user); | |
// Access some data from the current user. | |
global $user; | |
$user_data = $user->data['foo']; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment