作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 vtiger 的新手。我正在尝试从 TroubleTicket 模块中的服务模块插入字段“服务名称”,但到目前为止我无法做到这一点。
一般来说,是否可以从另一个模块插入一个模块中的字段?如果是这样,应该如何完成?
最佳答案
您可以使用此代码,将其放在您的 vTiger 根目录下并从浏览器调用它。
<?php
$Vtiger_Utils_Log = true;
include_once('vtlib/Vtiger/Menu.php');
include_once('vtlib/Vtiger/Module.php');
$module = Vtiger_Module::getInstance('HelpDesk');
if($module) {
$blockInstance = Vtiger_Block::getInstance('LBL_TICKET_INFORMATION', $module);
if($blockInstance) {
$fieldInstance = Vtiger_Field::getInstance('Service1', $module);
if(!$fieldInstance) {
$fieldInstance = new Vtiger_Field();
$fieldInstance->name = 'Service1';
$fieldInstance->label = 'Service Name';
$fieldInstance->uitype = 10;
$fieldInstance->typeofdata = 'V~O';
$blockInstance->addField($fieldInstance);
$fieldInstance->setRelatedModules(Array('Services'));
}
}
}
?>
关于vTiger - 如何在另一个模块中使用模块字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13858958/
我是一名优秀的程序员,十分优秀!