What is the difference between

function mythemes_preprocess_node(&$variables) { ... }

and

function mythemes_preprocess_node(&$vars) { ... }

in drupal 7. and what is the difference between preprocess and process functions. thanks.

link|improve this question

40% accept rate
1  
You might want to post another question for that extra question you threw in at the end there. – John Flatness May 19 '11 at 19:20
feedback

2 Answers

up vote 1 down vote accepted

There are no differences. The name of the argument variable is up to the function writer. You can call it $foobar, if you like :)

link|improve this answer
thanks. do you know what is the difference between preprocess and process functions. – Questioner May 19 '11 at 19:44
feedback

The name given to the parameters doesn't make any difference, but the name that is usually used is the one reported in the documentation.

As reported in the documentation for theme(), the preprocess functions are invoked before the process functions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.