如何在vtiger CRM的联系人模块中创建自定义字段

问题描述 投票:0回答:2

我使用互联网完成了此代码,但无法正常工作。我将此文件保存在根目录中。我需要在联系人模块中创建必填字段和下拉字段。

<?php

$Vtiger_Utils_Log = true;
ini_set('error_reporting', E_ALL);
ini_set('display_errors', '1');
include_once('../../config.inc.php');
set_include_path($root_directory); //for include root path
include_once('vtlib/vtiger/menu.php');
include_once('vtlib/Vtiger/Module.php');
include_once('vtlib/Vtiger/Block.php');



$moduleInstance = Vtiger_Module::getInstance('Contacts');//Module Name
$blockInstance = Vtiger_Block::getInstance('LBL_CONTACT_INFORMATION', $moduleInstance);//Block Name


$fieldInstance = new Vtiger_Field();
$fieldInstance->name = 'whatsapp';
$fieldInstance->label = 'LBL_WHATSAPP';
$fieldInstance->table = 'vtiger_contactdetails';
$fieldInstance->column = 'whatsapp';
$fieldInstance->columntype = 'varchar(11)';
$fieldInstance->uitype = 1;
$fieldInstance->typeofdata = 'V~O';
$blockInstance->addField($fieldInstance);
$fieldInstance->setRelatedModules(array('Accounts'));

?>
php crm vtiger vtigercrm dynamic-picklist-vtiger
2个回答
0
投票

您的代码似乎很好,我建议您在创建字段之前检查模块并阻止存在。您确定数据库连接正常吗? logs文件夹没有显示错误?

这就是我要添加字段的方式。

<?php

$Vtiger_Utils_Log = true;
ini_set('error_reporting', E_ALL);
ini_set('display_errors', '1');
include_once('../../config.inc.php');
set_include_path($root_directory); //for include root path
include_once('vtlib/vtiger/menu.php');
include_once('vtlib/Vtiger/Module.php');
include_once('vtlib/Vtiger/Block.php');



$moduleInstance = Vtiger_Module::getInstance('Contacts');//Module Name
if($moduleInstance){
    $blockInstance = Vtiger_Block::getInstance('LBL_CONTACT_INFORMATION', $moduleInstance);//Block Name

    if($blockInstance){
        $fieldInstance = Vtiger_Field::getInstance('whatsapp', $moduleInstance);
        if(!$fieldInstance){
            $fieldInstance = new Vtiger_Field();
            $fieldInstance->name = 'whatsapp';
            $fieldInstance->label = 'LBL_WHATSAPP';
            $fieldInstance->table = 'vtiger_contactdetails';
            $fieldInstance->column = 'whatsapp';
            $fieldInstance->columntype = 'varchar(11)';
            $fieldInstance->uitype = 1;
            $fieldInstance->typeofdata = 'V~O';
            $blockInstance->addField($fieldInstance);
            $fieldInstance->setRelatedModules(array('Accounts'));
        }
        else{
            echo "field already present";
        }
    }
    else{
        echo "no block";
    }
}
else{
    echo "no module";
}

?>

0
投票

如果您需要VTiger开源平台的在线帮助,建议您访问Telegram论坛。 https://t.me/vtiger7crm

© www.soinside.com 2019 - 2024. All rights reserved.