function formassembly_edit in FormAssembly 7
Menu callback; presents the fa_form edit form.
Parameters
$callback:
$fa_form:
Return value
array|mixed
1 string reference to 'formassembly_edit'
- formassembly_menu in ./
formassembly.module  - Implements hook_menu().
 
File
- ./
formassembly.module, line 503  - Contains hooks implementations and callbacks to non-admin pages.
 
Code
function formassembly_edit($callback, $fa_form) {
  drupal_set_title(t('<em>Edit configuration: </em> \'@title\'', array(
    '@title' => $fa_form->name,
  )), PASS_THROUGH);
  return drupal_get_form($callback, $fa_form);
}