30 lines
743 B
PHP
Executable File
30 lines
743 B
PHP
Executable File
<?php
|
|
|
|
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
|
|
|
global $sugar_version, $sugar_config, $current_user, $app_strings, $mod_strings;
|
|
|
|
require_once('modules/EcmCalls/EcmCall.php');
|
|
require_once('modules/EcmCalls/Forms.php');
|
|
require_once ('include/time.php');
|
|
require_once('include/json_config.php');
|
|
|
|
$json_config = new json_config();
|
|
|
|
$focus = new EcmCall();
|
|
|
|
if(isset($_REQUEST['record'])) {
|
|
$focus->retrieve($_REQUEST['record']);
|
|
}
|
|
else {}
|
|
|
|
require_once('include/MVC/View/SugarView.php');
|
|
require_once('modules/EcmCalls/views/ListView/view.list.my.php');
|
|
$list = new ViewListMy();
|
|
$list->bean = $focus;
|
|
|
|
|
|
$list->preDisplay();
|
|
$list->display();
|
|
|
|
?>
|