function field_test_entity_add

7.x field_test.entity.inc field_test_entity_add($fttype)

Menu callback: displays the 'Add new test_entity' form.

1 string reference to 'field_test_entity_add'
field_test_menu in drupal-7.x/modules/field/tests/field_test.module
Implements hook_menu().

File

drupal-7.x/modules/field/tests/field_test.entity.inc, line 326
Defines an entity type.

Code

function field_test_entity_add($fttype) {
  $fttype = str_replace('-', '_', $fttype);
  $entity = (object) array('fttype' => $fttype);
  drupal_set_title(t('Create test_entity @bundle', array('@bundle' => $fttype)), PASS_THROUGH);
  return drupal_get_form('field_test_entity_form', $entity, TRUE);
}