Skip to content

Instantly share code, notes, and snippets.

@augustyip
Created April 9, 2014 08:38
Show Gist options
  • Save augustyip/10242319 to your computer and use it in GitHub Desktop.
Save augustyip/10242319 to your computer and use it in GitHub Desktop.
Drupal generates form by fields' setings
<?php
foreach ($fields as $field_name) {
$field = field_info_field($field_name);
$instance = field_info_instance('node', $field_name, $field['bundles']['node'][0]);
$form_field = field_default_form('node', null, $field, $instance, LANGUAGE_NONE, array(), $form, $form_state);
$form += (array) $form_field;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment