drupal.info 中 Id 的用途是什么

发布于 2024-09-29 06:31:06 字数 129 浏览 2 评论 0原文

在 Drupal 中,;$Id$ 是什么?

我知道我们在 .info 文件中使用它,它告诉 Drupal 我们的模块信息。

我的问题是为什么需要 ;$Id$

In Drupal , what is ;$Id$?

I know we use this in the .info file, which tells Drupal our module information.

My question is why is ;$Id$ necessary?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

念三年u 2024-10-06 06:31:06

$Id$ 是并发版本系统 (CVS) 标识标记。如果我们想通过将模块签入 Drupal 的贡献模块存储库来与其他人共享我们的模块,则该值将自动被 CVS 替换。

$Id$ is the concurrent versions system (CVS) identification tag. If we want to share our module with others by checking it into Drupal’s contributed modules repository, this value will automatically be replaced by CVS.

各自安好 2024-10-06 06:31:06

这不是必要的,但正如 Loveleen 所说,如果您想将您的模块/主题提交到 Drupal CVS 存储库并与世界共享,您必须将 CVS Id 标记放在 php、javascript、css 和 .info 的第一行文件。

它必须写在注释内(文件的第一行),因此取决于文件:

对于 PHP 和 Javascript 文件: // $Id$

对于 CSS 文件: /* $Id$ */

在 .info 文件中,注释行以 ; 开头,因此您必须编写 ; $id$

编码标准标题评论块

It's not necessary, but as Loveleen says, if you want to commit your module/theme to Drupal CVS repository and share it with the world, you must put the CVS Id tag in the first line of your php, javascript, css and .info files.

It must be written inside of a comment (the first line of the file), so depending of the file:

For PHP and Javascript files: // $Id$

For CSS files: /* $Id$ */

In the .info file the comment lines start with ; so you must write ; $id$

More info in the Coding Standards and Header comment blocks

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