PhpBB 论坛的编程语法

发布于 2024-11-14 07:51:21 字数 519 浏览 3 评论 0原文

我想了解更多关于 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 技术交流群。

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

发布评论

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

评论(1

浅语花开 2024-11-21 07:51:21

{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.

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