Created
March 14, 2013 14:10
-
-
Save alexpott/5161620 to your computer and use it in GitHub Desktop.
Array to object conversion...
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
+function field_create_field(array $field) { | |
+ $field = entity_create('field_entity', $field); | |
+ $field->save(); | |
return $field; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment