我正在使用VTiger 6.4.0擴展模塊,用於在帳戶模塊中輸入公司名稱時獲取公司數據。VTiger擴展模塊創建帳戶模塊的自定義字段
該模塊幾乎完成,我從API中檢索數據並使用JQuery將它們輸入到輸入字段中。
但問題是,我有一些數據不是相對於帳戶信息中的現有字段,所以我試圖創建一些新的自定義字段。
只有我似乎無法弄清楚如何從我的擴展模塊中爲帳戶模塊創建自定義字段。
我搜索並觀看了一些在stackoverflow上的帖子。
我想出了以下代碼部分,但這似乎不起作用。
public function addKvkfield(){
$module = new Vtiger_Module();
$module->name = 'Accounts';
$module = $module->getInstance('Accounts');
$blockInstance = new Vtiger_Block();
$blockInstance->label = 'LBL_ACCOUNT_INFORMATION';
$blockInstance = $blockInstance->getInstance($blockInstance->label,$module);
$fieldInstance = new Vtiger_Field();
$fieldInstance->name = 'KvKNummer';
$fieldInstance->table = $module->basetable;
$fieldInstance->column = 'kvknummer';
$fieldInstance->columntype = 'VARCHAR(100)';
$fieldInstance->uitype = 2;
$fieldInstance->typeofdata = 'V~M';
$blockInstance->addField($fieldInstance);
}
的addKvkfield函數被調用的vtlib_handler module.postinstall(找不到任何信息,如果這是一個Extenstion模塊內這樣做的正確的方式)
vtlibhandler:
function vtlib_handler($modulename, $event_type) {
global $log;
if($event_type == 'module.postinstall') {
$this->addJSLinks();
$this->createConfigTable();
$this->addSettingsMenu();
$this->addKvkfield();
$this->updateLabels();
// TODO Handle post installation actions
} else if($event_type == 'module.disabled') {
// TODO Handle actions when this module is disabled.
} else if($event_type == 'module.enabled') {
// TODO Handle actions when this module is enabled.
} else if($event_type == 'module.preuninstall') {
// TODO Handle actions when this module is about to be deleted.
} else if($event_type == 'module.preupdate') {
// TODO Handle actions before this module is updated.
} else if($event_type == 'module.postupdate') {
$this->updateLabels();
// TODO Handle actions after this module is updated.
}
}
希望有人能給我一個正確的方向推。
感謝提前:)