如何删除listview SugarCrm 7中的创建按钮

时间:2017-01-16 14:58:39

标签: sugarcrm

如何在SugarCRM 7中删除ListView中的创建按钮。

enter image description here

2 个答案:

答案 0 :(得分: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 :(得分:0)

在您的view.list.php中添加:

public function getModuleTitle($show_help = true)
{
    parent::getModuleTitle(false);
}