我的问题很愚蠢,但无论如何。我根据自定义字段中的信息创建了一个用于下载文件的脚本。因此,如果尝试下载文件的用户是经过身份验证的 Sugarcrm 用户,现在我需要检查该脚本。你有什么想法?
问问题
2418 次
1 回答
1
向 SugarCRM“入口点”文件添加一个条目。
编辑/custom/include/MVC/Controller/entry_point_registry.php
并添加以下内容:
$entry_point_registry['my_entry_point'] = array('file' => 'custom/mypath/myscript.php', 'auth' => true);
去http://localhost/index.php?entryPoint=my_entry_point
。
最后一条路径'auth' => true
意味着用户需要登录到sugarCRM。
于 2012-04-11T20:09:48.617 回答