You are here

function sweaver_object_form in Sweaver 6

Same name and namespace in other branches
  1. 7 plugins/sweaver_plugin_editor/sweaver_plugin_editor.admin.inc \sweaver_object_form()

Object form.

1 string reference to 'sweaver_object_form'
sweaver_plugin_editor::sweaver_menu in plugins/sweaver_plugin_editor/sweaver_plugin_editor.inc
Menu registry.

File

plugins/sweaver_plugin_editor/sweaver_plugin_editor.admin.inc, line 337
Administrative functions for Sweaver.

Code

function sweaver_object_form($form_state, $object_type, $object = NULL) {
  $form = array();
  $function = 'sweaver_' . $object_type . '_form';
  return $function($form, $object);
}