vtiger中ListViewEntries.tpl中生成的变量$LISTENTITY在哪里?
有谁知道变量 $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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能已经很晚了,但是对于 $LISTENTITY,该变量是在模块 ListView.php 文件中声明的。例如,如果您正在查看“帐户”模块,则它将是“modules/Accounts/ListView.php”。代码声明是:
事实上,所有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:
In fact, all smarty variables are assigned similarly. Hope this helps!