You are here

function panels_admin_edit_node_form in Panels 6.2

Same name and namespace in other branches
  1. 5.2 content_types/node_form.inc \panels_admin_edit_node_form()

Returns an edit form for the custom type.

1 string reference to 'panels_admin_edit_node_form'
panels_node_form_panels_content_types in content_types/node_form.inc
Callback function to supply a list of content types.

File

content_types/node_form.inc, line 285

Code

function panels_admin_edit_node_form($id, $parents, $conf = array()) {
  $form['id'] = array(
    '#type' => 'value',
    '#value' => $id,
  );
  return $form;
}