Files
YuCheng Hu 46172b5755 添加到 trunk
+YUCHENG HU+



git-svn-id: https://svn.code.sf.net/p/hawebs/svn@127 a2543c7e-f6e9-4f8a-8bff-1ffc34733512
2010-06-12 00:54:13 +00:00

35 lines
1.4 KiB
PHP

<?php
/*+**********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
************************************************************************************/
global $current_user, $currentModule;
require_once("modules/$currentModule/$currentModule.php");
$focus = new $currentModule();
setObjectValuesFromRequest($focus);
$mode = $_REQUEST['mode'];
$record=$_REQUEST['record'];
if($mode) $focus->mode = $mode;
if($record)$focus->id = $record;
$focus->save($currentModule);
$return_id = $focus->id;
if($_REQUEST['parenttab'] != '') $parenttab = $_REQUEST['parenttab'];
if($_REQUEST['return_module'] != '') $return_module = $_REQUEST['return_module'];
else $return_module = $currentModule;
if($_REQUEST['return_action'] != '') $return_action = $_REQUEST['return_action'];
else $return_action = "DetailView";
if($_REQUEST['return_id'] != '') $return_id = $_REQUEST['return_id'];
header("Location: index.php?action=$return_action&module=$return_module&record=$return_id&parenttab=$parenttab&start=".$_REQUEST['pagenumber'].$search);
?>