I added a new user custom field on the Form, "Report manager", I can get the user id, but how to get user full name by using user id?

I need to add the code in view.detail.php & view.edit.php under Contact Module.

Thanks.

有帮助吗?

解决方案

I got the answer from http://technology.ohmygoh.com/how-to-get-full-name-of-user-by-using-user-id-in-sugarcrm/

$myUser = new User();
$myUser->retrieve("YOUR-USER-ID");
$myUser->full_name;

But how to assign the full name value and display in Detail/Edit View instead of showing the user ID?

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top