vtiger中ListViewEntries.tpl中生成的变量$LISTENTITY在哪里?

发布于 2024-11-01 07:26:22 字数 98 浏览 4 评论 0原文

有谁知道变量 $LISTENTITY n ListViewEntries.tpl 是在哪里生成的? 我是 vtiger CRM 的新手,正处于学习阶段。

谢谢, 巴兰

Does anyone know where the variable $LISTENTITY n ListViewEntries.tpl is generated?
I am new to this vtiger CRM, and i am in learning phase.

Thanks,
Balan

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

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

发布评论

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

评论(1

捶死心动 2024-11-08 07:26:22

这可能已经很晚了,但是对于 $LISTENTITY,该变量是在模块 ListView.php 文件中声明的。例如,如果您正在查看“帐户”模块,则它将是“modules/Accounts/ListView.php”。代码声明是:

$smarty->assign("LISTENTITY", $listview_entries);

事实上,所有smarty变量的赋值都是类似的。希望这有帮助!

This might be pretty late, but for $LISTENTITY, the variable is declared in the modules ListView.php file. For example, if you are looking at the Accounts module, it would be modules/Accounts/ListView.php. The code declaration is:

$smarty->assign("LISTENTITY", $listview_entries);

In fact, all smarty variables are assigned similarly. Hope this helps!

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