Advertisement
Guest User

Untitled

a guest
Jun 19th, 2012
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. function node_form($form, $form_state, $type) {
  2.   $form['#theme_wrapper'][] = 'node_form_layout';
  3.   $form['left'] = node_left_form($form, $form_state, $type);
  4.   $form['right'] = node_right_form($form, $form_state, $type);
  5.   $form['actions'] = node_actions_form($form, $form_state, $type);
  6.   return $form;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement