-
Notifications
You must be signed in to change notification settings - Fork 1
/
Assign_Units_to_User_add.php
101 lines (73 loc) · 2.46 KB
/
Assign_Units_to_User_add.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
@ini_set("display_errors","1");
@ini_set("display_startup_errors","1");
require_once("include/dbcommon.php");
require_once("classes/searchclause.php");
require_once("include/Assign_Units_to_User_variables.php");
require_once('include/xtempl.php');
require_once('classes/addpage.php');
require_once('include/lookuplinks.php');
add_nocache_headers();
InitLookupLinks();
if( !AddPage::processAddPageSecurity( $strTableName ) )
return;
AddPage::handleBrokenRequest();
$pageMode = AddPage::readAddModeFromRequest();
$xt = new Xtempl();
$id = postvalue_number("id");
$id = intval($id) == 0 ? 1 : $id;
//an array of AddPage constructor's params
$params = array();
$params["id"] = $id;
$params["xt"] = &$xt;
$params["mode"] = $pageMode;
$params["pageType"] = PAGE_ADD;
$params["tName"] = $strTableName;
$params["pageName"] = postvalue("page");
$params["action"] = postvalue("a");
$params["needSearchClauseObj"] = false;
$params["afterAdd_id"] = postvalue("afteradd");
$params["masterTable"] = postvalue("mastertable");
if( $params["masterTable"] )
{
$i = 1;
$params["masterKeysReq"] = array();
while( isset( $_REQUEST["masterkey".$i] ) )
{
$params["masterKeysReq"][ $i ] = $_REQUEST["masterkey".$i];
$i++;
}
}
;
$params["captchaName"] = "captcha_1209xre";
$params["captchaValue"] = postvalue("value_captcha_1209xre_" . $id);
$params["dashElementName"] = postvalue("dashelement");
$params["fromDashboard"] = postvalue("fromDashboard");
$params["dashTName"] = $params["fromDashboard"] ? $params["fromDashboard"] : postvalue("dashTName");
if( $pageMode == ADD_INLINE )
{
// Inline add in a 'List page with search' lookup
$params["forListPageLookup"] = postvalue('forLookup');
$params["screenWidth"] = postvalue("screenWidth");
$params["screenHeight"] = postvalue("screenHeight");
$params["orientation"] = postvalue("orientation");
$params["masterPageType"] = postvalue("masterpagetype");
}
if( $pageMode == ADD_ONTHEFLY || $pageMode == ADD_INLINE && postvalue('forLookup') )
{
//table where lookup is set
$params["lookupTable"] = postvalue("table");
//field with lookup is set
$params["lookupField"] = postvalue("field");
//the ptype od the page where lookup is set
$params["lookupPageType"] = postvalue("pageType");
if( postvalue('parentsExist') )
{
//the parent controls values data
$params["parentCtrlsData"] = my_json_decode( postvalue("parentCtrlsData") );
}
}
$pageObject = new AddPage($params);
$pageObject->init();
$pageObject->process();
?>