Drupal 模板包含在 WHMCS 中吗?

发布于 2024-09-10 14:25:37 字数 445 浏览 3 评论 0原文

我有一个 Drupal 站点和 WHMCS (www.whmcs.com) 站点。我正忙着整合两者。我想知道是否有一种方法可以调用一个返回 drupal 模板(已处理)的函数,以便我只能为 $content 变量提供我自己的变量。实际上,这将允许我将 WHMCS 模板与 Drupal 模板集成,以便在 Drupal 模板中所做的任何更改都会反映在我的 WHMCS 安装中。

WHMCS 使用 Smarty 模板引擎。换句话说,您可以:

包含如下代码:

{php} print 'hello'; {/php}

使用 header.tpl 和 footer.tpl 页面 (这意味着理想的情况是一个 drupal 函数返回 print $content 之前的所有内容,另一个函数返回 print $content 之后的所有内容)。

有人有一些指示或建议吗?或者我什至不应该考虑走这条路?

I've got a Drupal site, and WHMCS (www.whmcs.com) site. I am busy integrating the two. I was wondering if there would be a way to call a function that would return the drupal template (processed) so that I can only provide the $content variable with my own variable. Effectively, this will allow me to integrate my WHMCS template with my Drupal template so that any changes made in the Drupal template, reflects on my WHMCS installation.

WHMCS uses the Smarty Template Engine. In other words, you can:

Include code like this:

{php} print 'hello'; {/php}

Work with the header.tpl and footer.tpl pages
( which mean the ideal would be a drupal function that returns everything BEFORE print $content, and another function that returns everything AFTER print $content).

Anyone got some pointers or suggestions? Or should I not even think of going this route?

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

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

发布评论

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

评论(1

帝王念 2024-09-17 14:25:37

Drupal 可以使用 phptemplate 之外的其他模板引擎。如果 Smarty 是已与 Drupal 一起使用的模板系统之一,那么为什么不使用它呢?看起来这会让你更容易保持事情的一致性。

您可以在 do 下载 Drupal smarty 模板引擎

Drupal can use other template engines than phptemplate. Smarty if one the the template systems that has been used with Drupal, so why don't you use that instead. Seems like it will make things easier for your to keep things consistent.

You can download the Drupal smarty template engine at d.o.

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