drupal.info 中 Id 的用途是什么
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
$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.
这不是必要的,但正如 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