Skip to content

Instantly share code, notes, and snippets.

@martsie
Created January 25, 2017 09:09
Show Gist options
  • Save martsie/f65db57693acdad8f9111697841f68ec to your computer and use it in GitHub Desktop.
Save martsie/f65db57693acdad8f9111697841f68ec to your computer and use it in GitHub Desktop.
Basic Drupal 7 User Data usage
<?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