$变量对比。 $变量
drupal 7之间有什么区别
function mythemes_preprocess_node(&$variables) { ... }
drupal 7和
function mythemes_preprocess_node(&$vars) { ... }
? 预处理和处理函数之间有什么区别。 谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有差异。参数变量的名称由函数编写者决定。如果您愿意,您可以将其命名为 $foobar :)
There are no differences. The name of the argument variable is up to the function writer. You can call it $foobar, if you like :)
为参数指定的名称没有任何区别,但通常使用的名称是文档中报告的名称。
正如 theme(),预处理函数在处理函数之前调用。
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.