0
A
回答
0
你可以爲它編寫的API:IN custom/clients/base/api
但這會隱藏每一個創建按鈕該模塊的位置。
<?php
/**
* @author Harshal
*/
/*
* Your installation or use of this SugarCRM file is subject to the applicable
* terms available at
* http://support.sugarcrm.com/06_Customer_Center/10_Master_Subscription_Agreements/.
* If you do not agree to all of the applicable terms or do not have the
* authority to bind the entity as an authorized representative, then do not
* install or use this SugarCRM file.
*
* Copyright (C) SugarCRM Inc. All rights reserved.
*/
if (!defined('sugarEntry') || !sugarEntry)
die('Not A Valid Entry Point');
require_once("clients/base/api/CurrentUserApi.php");
class CustomCurrentUserApi extends CurrentUserApi {
public function registerApiRest() {
return parent::registerApiRest();
}
public function retrieveCurrentUser($api, $args) {
$result = parent::retrieveCurrentUser($api, $args);
$result['current_user']['acl']['MODULENAME']['create'] =
return $result;
}
}
相關問題
- 1. SugarCRM如何隱藏列表視圖中的編輯按鈕
- 2. 如何使用列表視圖中的按鈕刪除列表視圖項目
- 3. 如何從iOS 7的視圖中刪除所有按鈕?
- 4. 如何刪除按鈕點擊動態創建的視圖
- 5. 如何在Android Studio中創建循環中的按鈕刪除視圖
- 6. jqgrid如何使用每行刪除按鈕創建刪除列?
- 7. 如何刪除pygbutton創建的按鈕
- 8. 標題視圖中的離子刪除按鈕在列表視圖中切換刪除按鈕
- 9. 如何使用刪除按鈕刪除jQuery中動態創建的按鈕
- 10. 通過按刪除按鈕從列表視圖中刪除項目android
- 11. 如何使用刪除按鈕從列表視圖刪除項目android
- 12. 如何使用arrayadapter中的按鈕刪除列表視圖中的項目
- 13. 如何從按鈕創建一個下拉列表視圖?
- 14. 如何在android中的圖像按鈕在列表視圖中創建圓?
- 15. 在此itemrenderer中使用刪除按鈕創建下拉列表
- 16. 刪除列表視圖項目從列表視圖項目按鈕
- 17. 刪除表單按鈕1後應創建表單按鈕1
- 18. 在android中添加刪除按鈕到列表視圖
- 19. 從列表視圖中刪除項目,按鈕點擊
- 20. 在列表視圖中運行時創建圖像按鈕
- 21. 如何使用自定義視圖中的按鈕從列表視圖中刪除自定義視圖
- 22. android如何點擊列表視圖項中的按鈕來刪除該項
- 23. 如何在表視圖的單元格中創建按鈕?
- 24. 擦除表格視圖單元格中的刪除按鈕
- 25. 如何在刪除表格視圖時刪除確認按鈕的陰影?
- 26. 如何創建包含同一活動中的按鈕和列表的視圖?
- 27. 如何在jsp的onclick複選框中創建刪除按鈕?
- 28. 刪除下拉列表中的按鈕
- 29. 如何在用戶點擊按鈕時動態創建和刪除視圖
- 30. 我想創建按鈕單擊可擴展列表視圖
到目前爲止你做了什麼?發佈代碼樣本等 – Peter4499