Skip to content

Instantly share code, notes, and snippets.

@martsie
Created January 25, 2017 09:48
Show Gist options
  • Save martsie/d4d4ef2133daa31777ee9060dec3a9f8 to your computer and use it in GitHub Desktop.
Save martsie/d4d4ef2133daa31777ee9060dec3a9f8 to your computer and use it in GitHub Desktop.
Entity Metadata Wrapper implementation of User Data abstraction in Drupal 7
<?php
global $user;
$account = entity_metadata_wrapper('user', $user);
$account->employee_number->set(60000);
entity_save('user', $account);
$employee_number = $account->employee_number->value();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment