52 lines
1.6 KiB
PHP
Executable File
52 lines
1.6 KiB
PHP
Executable File
<?
|
|
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
|
|
|
global $sugar_version, $sugar_config, $current_user, $app_strings, $mod_strings, $current_user, $app_list_strings;
|
|
|
|
|
|
require_once('modules/EcmAccountCategories/EcmAccountCategory.php');
|
|
require_once('modules/EcmAccountCategories/Forms.php');
|
|
require_once ('include/time.php');
|
|
require_once('include/json_config.php');
|
|
|
|
$json_config = new json_config();
|
|
|
|
$focus = new EcmAccountCategory();
|
|
|
|
if(isset($_REQUEST['record']))$focus->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 = '<img src="modules/EcmAccountCategories/files/'.$focus->assigned_file.'"/>';
|
|
else
|
|
$af = '<a href="modules/EcmAccountCategories/files/'.$focus->assigned_file.'" target="new">'.$focus->assigned_file.'</a>';
|
|
}
|
|
|
|
$detail->ss->assign("ASSIGNED_FILE", $af);
|
|
|
|
$detail->preDisplay();
|
|
|
|
echo $detail->display(); |