You are here

function ctools_export_ui_edit_item_form in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 plugins/export_ui/ctools_export_ui.class.php \ctools_export_ui_edit_item_form()

Form callback to edit an exportable item.

This simply loads the object defined in the plugin and hands it off.

1 string reference to 'ctools_export_ui_edit_item_form'
ctools_export_ui::edit_execute_form_standard in plugins/export_ui/ctools_export_ui.class.php
Execute the standard form for editing.

File

plugins/export_ui/ctools_export_ui.class.php, line 1318

Code

function ctools_export_ui_edit_item_form(&$form_state) {
  $form = array();
  $form_state['object']
    ->edit_form($form, $form_state);
  return $form;
}