-
Notifications
You must be signed in to change notification settings - Fork 2
/
GroupPropsFormRowOps.php
105 lines (90 loc) · 3.72 KB
/
GroupPropsFormRowOps.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
102
103
104
105
<?php
/*******************************************************************************
*
* filename : GroupPropsFormRowOps.php
* last change : 2003-02-02
* website : http://www.infocentral.org
* copyright : Copyright 2003 Chris Gebhardt (http://www.openserve.org)
*
* function : Row operations for the group-specific properties form
*
* InfoCentral is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
******************************************************************************/
require "Include/Config.php";
require "Include/Functions.php";
// Security: user must be allowed to edit records to use this page.
if (!$_SESSION['bManageGroups'])
{
Redirect("Menu.php");
exit;
}
// Get the Group, Property, and Action from the querystring
$iGroupID = FilterInput($_GET["GroupID"],'int');
$iPropID = FilterInput($_GET["PropID"],'int');
$sField = FilterInput($_GET["Field"]);
$sAction = $_GET["Action"];
// Get the group information
$sSQL = "SELECT * FROM group_grp WHERE grp_ID = " . $iGroupID;
$rsGroupInfo = RunQuery($sSQL);
extract(mysql_fetch_array($rsGroupInfo));
// Abort if user tries to load with group having no special properties.
if ($grp_hasSpecialProps == 'false')
{
Redirect("GroupView.php?GroupID=" . $iGroupID);
}
switch ($sAction)
{
// Move a field up: Swap the prop_ID (ordering) of the selected row and the one above it
case up:
$sSQL = "UPDATE groupprop_master SET prop_ID = '" . $iPropID . "' WHERE grp_ID = '" . $iGroupID . "' AND prop_ID = '" . ($iPropID - 1) . "'";
RunQuery($sSQL);
$sSQL = "UPDATE groupprop_master SET prop_ID = '" . ($iPropID - 1) . "' WHERE grp_ID = '" . $iGroupID . "' AND prop_Field = '" . $sField . "'";
RunQuery($sSQL);
break;
// Move a field down: Swap the prop_ID (ordering) of the selected row and the one below it
case down:
$sSQL = "UPDATE groupprop_master SET prop_ID = '" . $iPropID . "' WHERE grp_ID = '" . $iGroupID . "' AND prop_ID = '" . ($iPropID + 1) . "'";
RunQuery($sSQL);
$sSQL = "UPDATE groupprop_master SET prop_ID = '" . ($iPropID + 1) . "' WHERE grp_ID = '" . $iGroupID . "' AND prop_Field = '" . $sField . "'";
RunQuery($sSQL);
break;
// Delete a field from the form
case delete:
// Check if this field is a custom list type. If so, the list needs to be deleted from list_lst.
$sSQL = "SELECT type_ID,prop_Special FROM groupprop_master WHERE grp_ID = '" . $iGroupID . "' AND prop_Field = '" . $sField . "'";
$rsTemp = RunQuery($sSQL);
$aTemp = mysql_fetch_array($rsTemp);
if ($aTemp[0] == 12)
{
$sSQL = "DELETE FROM list_lst WHERE lst_ID = $aTemp[1]";
RunQuery($sSQL);
}
$sSQL = "ALTER TABLE `groupprop_" . $iGroupID . "` DROP `" . $sField . "` ;";
RunQuery($sSQL);
$sSQL = "DELETE FROM groupprop_master WHERE grp_ID = '" . $iGroupID . "' AND prop_ID = '" . $iPropID . "'";
RunQuery($sSQL);
$sSQL = "SELECT * FROM groupprop_master WHERE grp_ID = " . $iGroupID;
$rsPropList = RunQuery($sSQL);
$numRows = mysql_num_rows($rsPropList);
// Shift the remaining rows up by one, unless we've just deleted the only row
if ($numRows != 0)
{
for ($reorderRow = $iPropID+1; $reorderRow <= $numRows+1; $reorderRow++)
{
$sSQL = "UPDATE groupprop_master SET prop_ID = '" . ($reorderRow - 1) . "' WHERE grp_ID = '" . $iGroupID . "' AND prop_ID = '" . $reorderRow . "'";
RunQuery($sSQL);
}
}
break;
// If no valid action was specified, abort and return to the GroupView
default:
Redirect("GroupView.php?GroupID=" . $iGroupID);
break;
}
// Reload the Form Editor page
Redirect("GroupPropsFormEditor.php?GroupID=" . $iGroupID);
exit;
?>