Created
January 25, 2017 09:48
-
-
Save martsie/d4d4ef2133daa31777ee9060dec3a9f8 to your computer and use it in GitHub Desktop.
Entity Metadata Wrapper implementation of User Data abstraction in Drupal 7
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 | |
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