3
我的問題很愚蠢,但無論如何。根據自定義字段的信息,我創建了一個用於下載文件的腳本。所以,現在我需要檢查該腳本,如果試圖下載文件的用戶是經過認證的sugarcrm用戶。你有什麼想法?如何檢查sugarcrm自定義腳本中的用戶身份驗證
我的問題很愚蠢,但無論如何。根據自定義字段的信息,我創建了一個用於下載文件的腳本。所以,現在我需要檢查該腳本,如果試圖下載文件的用戶是經過認證的sugarcrm用戶。你有什麼想法?如何檢查sugarcrm自定義腳本中的用戶身份驗證
將條目添加到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。
謝謝,但我不知道如何使用它:)我去http://localhost/index.php?entryPoint = my_entry_point&id = 123 - 傳遞id參數但沒有任何反應.. – forik 2012-04-12 05:30:02
您需要替換localhost和你的服務器主機名一起,並如上所述更改'entry_point_registry.php'文件。你檢查過SugarCRM日誌文件嗎? – 2012-04-12 17:13:12
謝謝!往往我的注意力不集中在我身上:)我在關鍵的$ entry_point_registry ['my_entry_point']中犯了一個錯誤。 – forik 2012-04-13 05:58:05