~adamzammit/quexf/swinburnequexf

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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<?php

/*	Copyright Deakin University 2007,2008
 *	Written by Adam Zammit - adam.zammit@deakin.edu.au
 *	For the Deakin Computer Assisted Research Facility: http://www.deakin.edu.au/dcarf/
 *	
 *	This file is part of queXF
 *	
 *	queXF 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.
 *	
 *	queXF is distributed in the hope that it will be useful,
 *	but WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *	GNU General Public License for more details.
 *	
 *	You should have received a copy of the GNU General Public License
 *	along with queXF; if not, write to the Free Software
 *	Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */


include_once("config.inc.php");
include_once("db.inc.php");
include_once("functions/functions.xhtml.php");


/* Create a box group in the DB
 */
function updateboxgroup($bgid,$width,$varname,$btid)
{
	global $db;
	$db->StartTrans();

	$sql = "UPDATE boxgroupstype
		SET btid = '$btid', width = '$width', varname = '$varname'
		WHERE bgid = '$bgid'";

	$db->Execute($sql);

	$db->CompleteTrans();
}

/**
 * When boxes are evenly spaced, boxes are created inbetween
 * Delete the inbetween boxes
 */
function deleteinbetween($bgid)
{
	global $db;
	$db->StartTrans();

	$sql = "SELECT bid 
		FROM boxes 
		WHERE bgid = '$bgid'";

	$rows = $db->GetAll($sql);

	$rc = 1;
	foreach($rows as $row)
	{
		if (($rc % 2) == 0 && next($rows)) // if even and there is at least one more box
		{
			$sql = "DELETE
				FROM boxes
				WHERE bid = '{$row['bid']}'";
	
			$db->Execute($sql);

		}
		$rc++;
	}

	$db->CompleteTrans();

	return $bgid;

}


/**
 * Delete a box from a boxgroup
 */
function deletebox($bid)
{
	global $db;

	$sql = "DELETE
		FROM boxes
		WHERE bid = '$bid'";
	
	$db->Execute($sql);


	return $bid;

}



/* Delete a box group in the DB
 */
function deleteboxgroup($bgid)
{

	global $db;
	$db->StartTrans();

	$sql = "SELECT bid 
		FROM boxes 
		WHERE bgid = '$bgid'";

	$rows = $db->GetAll($sql);

	foreach($rows as $row)
	{
		$sql = "DELETE
			FROM boxes
			WHERE bid = '{$row['bid']}'";

		$db->Execute($sql);
	}

	$sql = "DELETE
		FROM boxgroupstype
		WHERE bgid = '$bgid'";

	$db->Execute($sql);

	$db->CompleteTrans();

	return $bgid;
}

if (isset($_GET['deletebgid']))
{
	deleteboxgroup(intval($_GET['deletebgid']));
	exit();
}

if (isset($_GET['deletebid']))
{
	deletebox(intval($_GET['deletebid']));
	exit();
}


if (isset($_GET['deleteinbetween']))
{
	deleteinbetween(intval($_GET['deleteinbetween']));
}


if (isset($_GET['bgid']) && isset($_GET['btid']))
{
	updateboxgroup(intval($_GET['bgid']),1,'',$intval($_GET['btid']));
}


if (isset($_POST['submit']))
{
	$bgid = $_POST['bgid'];
	$width = $_POST['width'];
	$varname = $_POST['varname'];
	$btid = $_POST['btid'];
	updateboxgroup($bgid,$width,$varname,$btid);
}



if (isset($_GET['bgid']) || isset($_GET['bid']))
{
	xhtml_head(T_("Modify box"));

	global $db;

	if (isset($_GET['bid'])){
		$bid = intval($_GET['bid']);
		$sql = "SELECT bgid 
			FROM boxes
			WHERE bid = '$bid'";
		$row = $db->GetRow($sql);
		$bgid = $row['bgid'];
	}else
		$bgid = intval($_GET['bgid']);

	
	$sql = "SELECT btid,varname,width
		FROM boxgroupstype
		WHERE bgid = '$bgid'";

	$row = $db->GetRow($sql);
	$btid = $row['btid'];
	$varname = $row['varname'];
	$width = $row['width'];

	//display the cropped boxes
	print "<img src=\"showpage.php?bgid=$bgid\"/>";

	?><form method="post" action="<?php echo $_SERVER['PHP_SELF'] . "?bgid=$bgid";?>"><?php

	//display group selection
	$sql = "SELECT description,btid as value, CASE WHEN btid = '$btid' THEN 'selected=\'selected\'' ELSE '' END AS selected
		FROM boxgrouptypes";

	$rs = $db->GetAll($sql);

	print T_("Group type:");
	translate_array($rs,array("description"));
	display_chooser($rs,"btid","btid",false,false,false,false,false);

	//display variable name
	?><br/><?php echo T_("Variable name:"); ?> <input type="text" size="12" value="<?php echo $varname; ?>" name="varname"><br/><?php

	//display width
	?><?php echo T_("Width:"); ?> <input type="text" size="12" value="<?php echo $width; ?>" name="width"><br/><?php

	?><input  TYPE="hidden" VALUE="<?php echo $bgid; ?>" NAME="bgid"><br/><input type="submit" value="<?php echo T_("Submit"); ?>" name="submit"/></form><?php

	?><p><a href="<?php echo $_SERVER['PHP_SELF'] . "?deletebgid=$bgid";?>"><?php echo T_("Delete this group"); ?></a></p>
		<p><a href="<?php echo $_SERVER['PHP_SELF'] . "?deleteinbetween=$bgid&amp;bgid=$bgid";?>"><?php echo T_("Delete in between boxes"); ?></a></p>
	<?php

	xhtml_foot();
}




?>