36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
|
|
<?
|
||
|
|
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/EcmPaymentStates/EcmPaymentState.php');
|
||
|
|
require_once('modules/EcmPaymentStates/Forms.php');
|
||
|
|
require_once ('include/time.php');
|
||
|
|
require_once('include/json_config.php');
|
||
|
|
|
||
|
|
$json_config = new json_config();
|
||
|
|
|
||
|
|
$focus = new EcmPaymentState();
|
||
|
|
|
||
|
|
if(isset($_REQUEST['record']))$focus->retrieve($_REQUEST['record']);
|
||
|
|
|
||
|
|
require_once('include/MVC/View/SugarView.php');
|
||
|
|
|
||
|
|
if(file_exists('modules/EcmPaymentStates/views/view.detail.php')) {
|
||
|
|
require_once('modules/EcmPaymentStates/views/view.detail.php');
|
||
|
|
$detail = new EcmPaymentState();
|
||
|
|
}
|
||
|
|
else{
|
||
|
|
require_once('include/MVC/View/views/view.detail.php');
|
||
|
|
$detail = new ViewDetail();
|
||
|
|
$detail->ss = new Sugar_Smarty();
|
||
|
|
$detail->module = 'EcmPaymentStates';
|
||
|
|
}
|
||
|
|
|
||
|
|
global $app_list_strings;
|
||
|
|
|
||
|
|
$detail->bean = $focus;
|
||
|
|
$detail->preDisplay();
|
||
|
|
|
||
|
|
echo $detail->display();
|
||
|
|
?>
|