$变量对比。 $变量

发布于 2024-11-08 16:45:31 字数 236 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浪荡不羁 2024-11-15 16:45:31

没有差异。参数变量的名称由函数编写者决定。如果您愿意,您可以将其命名为 $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 :)

抹茶夏天i‖ 2024-11-15 16:45:31

为参数指定的名称没有任何区别,但通常使用的名称是文档中报告的名称。

正如 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文