⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mycontractsdashlet.php

📁 开源的CRM,功能全面,国内最优秀的源码
💻 PHP
字号:
<?php
if(empty($GLOBALS['sugarEntry'])) die('Not A Valid Entry Point');



require_once('include/Dashlets/DashletGeneric.php');
require_once('modules/Contracts/Contract.php');
require_once('MyContractsDashlet.data.php');

class MyContractsDashlet extends DashletGeneric {
    function MyContractsDashlet($id, $def = null) {
        global $current_user, $app_strings, $dashletData;

        parent::DashletGeneric($id, $def);

        if(empty($def['title'])) $this->title = translate('LBL_HOMEPAGE_TITLE', 'Contracts');

        $this->searchFields = $dashletData['MyContractsDashlet']['searchFields'];
        $this->columns = $dashletData['MyContractsDashlet']['columns'];

        $this->seedBean = new Contract();
    }
}

?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -