Znalazłem coś takiego w pliku RecordBrowserCommon_0.php // epesi/modules/Utils/RecordBrowser
// If CRM Module is not installed get user login only
$created_by = Base_UserCommon::get_user_label($info['created_by']);
$htmlinfo=array(
__('Record ID').':'=>$id,
__('Created by').':'=>$created_by,
__('Created on').':'=>Base_RegionalSettingsCommon::time2reg($info['created_on'])
);
if ($info['edited_on']!==null) {
$htmlinfo=$htmlinfo+array(
__('Edited by').':'=>$info['edited_by']!==null?Base_UserCommon::get_user_label($info['edited_by']):'',
__('Edited on').':'=>Base_RegionalSettingsCommon::time2reg($info['edited_on'])
);
}
Pytanie czy dobrze szukam? Potrzebuję dodać jedno, dwa pola, które są zwykłym polem text w zadaniu.
Pozdrawiam
Łukasz