views:

37

answers:

1

hi,

what's the hook for the Save Button in Drupal ?

I've tried

  $form['submit']['#weight']  = -50;

But it doesn't work. I'm sure the template.php file works because for example:

  $form['author']['#weight']  = -50;

works.

Thanks

A: 

The node form is built by node_form().
All of the buttons at the bottom of the form are contained in $form['buttons'], so the information for the submit button is $form['buttons']['submit']

GApple
perfect, thanks
Patrick

related questions