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.
|
What is the difference between
and
in drupal 7. and what is the difference between preprocess and process functions. thanks.
| |||||
feedback
|
|
There are no differences. The name of the argument variable is up to the function writer. You can call it $foobar, if you like :) | |||
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. | |||
|
feedback
|