PhpBB 论坛的编程语法
我想了解更多关于 phpBB 语法的信息,例如下面的代码:
<div id="site-description">
<a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
<h1>{SITENAME}</h1>
<p>{SITE_DESCRIPTION}</p>
<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
</div>
我有 2 个问题 -
1.) 程序如何定义 {xxx} 中的数据?
2.) 文件位于何处,或者定义 {xxx} 内数据的文件名是什么,
感谢您的帮助。
I would like to know more about the syntax for phpBB, for example the code below :
<div id="site-description">
<a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
<h1>{SITENAME}</h1>
<p>{SITE_DESCRIPTION}</p>
<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
</div>
I have 2 questions -
1.) How do the program define the data inside {xxx}?
2.) Where is the files located or what is the file name to define the data inside {xxx}
Thanks for helping.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
{L_*} 是语言语法,它位于 languages 文件夹中。当标签以 L_ 开头时,它会将其识别为语言变量,否则将其识别为从源指定的变量。
模板标签{}在includes/template.php中定义。
如果您有一个名为page.php的页面,并且其中定义了phpbb,您可以创建自己的标签并在自己的模板上使用它。includes/functions中有全局标签。 php 和每个文件的私有(就像在 viewtopic.php 中一样,有 postrow.template 前缀)。
有关制作和使用此类模板标签的信息,请参阅 http://wiki.phpbb.com/Template.assign_vars 。
{L_*} is language syntax and it located in the languages folder.When the tag starts with L_ it recognise it as a language variable, else its recognised as a variable specified from the source.
The template tags {} are defined in includes/template.php
If you have a page named page.php and with defined phpbb in it, you can create own tag and use it on own template.There are global tags in includes/functions.php and private for each file (like in viewtopic.php there is postrow. template prefix).
See http://wiki.phpbb.com/Template.assign_vars for making and using such template tags.