field_test_entity_edit

Versions
7
field_test_entity_edit($entity)

Menu callback: displays the 'Edit exiisting test_entity' form.

Code

modules/field/tests/field_test.entity.inc, line 237

<?php
function field_test_entity_edit($entity) {
  drupal_set_title(t('test_entity @ftid revision @ftvid', array('@ftid' => $entity->ftid, '@ftvid' => $entity->ftvid)), PASS_THROUGH);
  return drupal_get_form('field_test_entity_form', $entity);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.