init
This commit is contained in:
30
modules/EcmCalls/ListView2.php
Executable file
30
modules/EcmCalls/ListView2.php
Executable file
@@ -0,0 +1,30 @@
|
||||
<?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();
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user