にフィールドを追加する必要がありますbasic template
。include/SugarObjects/templates/basic/vardefs.php
アップグレードの安全な方法で別のフィールドを追加する方法を教えてください。
VardefManager's function addTemplate
Sugar の一般的な標準とは異なり、カスタム パスは必要ありません。
include/SugarObjects/VardefManager.php
107行目付近SugarCE6.5.5
:
if(empty($templates[$template])){
$path = 'include/SugarObjects/templates/' . $template . '/vardefs.php';
if(file_exists($path)){
require($path);
$templates[$template] = $vardefs;
}else{
$path = 'include/SugarObjects/implements/' . $template . '/vardefs.php';
if(file_exists($path)){
require($path);
$templates[$template] = $vardefs;
}
}
}
本当に素晴らしい回答を待っています。