2012-04-11 52 views

回答

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。

+0

謝謝,但我不知道如何使用它:)我去http://localhost/index.php?entryPoint = my_entry_point&id = 123 - 傳遞id參數但沒有任何反應.. – forik 2012-04-12 05:30:02

+0

您需要替換localhost和你的服務器主機名一起,並如上所述更改'entry_point_registry.php'文件。你檢查過SugarCRM日誌文件嗎? – 2012-04-12 17:13:12

+0

謝謝!往往我的注意力不集中在我身上:)我在關鍵的$ entry_point_registry ['my_entry_point']中犯了一個錯誤。 – forik 2012-04-13 05:58:05