drupal
This is an old revision of the document!
Table of Contents
Drupal Tips
Some hints, tips and code samples for managing and extending Drupal.
Cron
Directory Structure
Externally Managing Users & Roles
Moving A Site
Updating Custom User fields
I added a custom field to the user and needed a way to programmatically put data into that field. I found the following code on Drupal:
$user_fields = user_load($user->uid); $user_fields->field_points['und'][0]['value'] = $points; user_save($user_fields);
This comes from the following Drupal oage:
drupal.1512326268.txt.gz · Last modified: 2017/12/03 13:37 by tomgle