retrieve($_REQUEST['record']); require_once('include/MVC/View/SugarView.php'); if(file_exists('modules/EcmAccountCategories/views/view.detail.php')) { require_once('modules/EcmAccountCategories/views/view.detail.php'); $detail = new EcmAccountCategory(); } else{ require_once('include/MVC/View/views/view.detail.php'); $detail = new ViewDetail(); } global $app_list_strings; $detail->bean = $focus; $detail->module = 'EcmAccountCategories'; $detail->ss = new Sugar_Smarty(); //show assigned file if ($focus->assigned_file!="" && $focus->assigned_file) { $tmp = explode(".", $focus->assigned_file); if (end($tmp) == 'jpeg' || end($tmp) == 'jpg' || end($tmp) == 'png' || end($tmp) == 'bmp') $af = ''; else $af = ''.$focus->assigned_file.''; } $detail->ss->assign("ASSIGNED_FILE", $af); $detail->preDisplay(); echo $detail->display();