Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. $collection = entity_metadata_wrapper('field_collection_item', 12345);
  2. // Obtener valor
  3. $v = $collection->field_ejemplo->value();
  4. // Nuevo valor
  5. $collection->field_ejemplo = 'Nuevo valor';
  6. // Guardar
  7. $collection->save();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement