-
Notifications
You must be signed in to change notification settings - Fork 0
/
outcomes_dml.php
482 lines (405 loc) · 22.7 KB
/
outcomes_dml.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
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<?php
// Data functions for table outcomes
// This script and data application were generated by AppGini 5.23
// Download AppGini for free from http://bigprof.com/appgini/download/
function outcomes_insert(){
global $Translation;
if($_GET['insert_x']!=''){$_POST=$_GET;}
// mm: can member insert record?
$arrPerm=getTablePermissions('outcomes');
if(!$arrPerm[1]){
return false;
}
$data['outcome_area'] = makeSafe($_POST['outcome_area']);
if($data['outcome_area'] == empty_lookup_value){ $data['outcome_area'] = ''; }
$data['description'] = br2nl(makeSafe($_POST['description']));
$data['strata'] = makeSafe($_POST['strata']);
if($data['strata'] == empty_lookup_value){ $data['strata'] = ''; }
// hook: outcomes_before_insert
if(function_exists('outcomes_before_insert')){
$args=array();
if(!outcomes_before_insert($data, getMemberInfo(), $args)){ return false; }
}
$o=array('silentErrors' => true);
sql('insert into `outcomes` set `outcome_area`=' . (($data['outcome_area'] !== '' && $data['outcome_area'] !== NULL) ? "'{$data['outcome_area']}'" : 'NULL') . ', `description`=' . (($data['description'] !== '' && $data['description'] !== NULL) ? "'{$data['description']}'" : 'NULL') . ', `strata`=' . (($data['strata'] !== '' && $data['strata'] !== NULL) ? "'{$data['strata']}'" : 'NULL'), $o);
if($o['error']!=''){
echo $o['error'];
echo "<a href=\"outcomes_view.php?addNew_x=1\">{$Translation['< back']}</a>";
exit;
}
$recID=mysql_insert_id();
// hook: outcomes_after_insert
if(function_exists('outcomes_after_insert')){
$res = sql("select * from `outcomes` where `outcome_id`='" . makeSafe($recID) . "' limit 1", $eo);
if($row = mysql_fetch_assoc($res)){
$data = array_map('makeSafe', $row);
}
$data['selectedID'] = makeSafe($recID);
$args=array();
if(!outcomes_after_insert($data, getMemberInfo(), $args)){ return (get_magic_quotes_gpc() ? stripslashes($recID) : $recID); }
}
// mm: save ownership data
sql("insert into membership_userrecords set tableName='outcomes', pkValue='$recID', memberID='".getLoggedMemberID()."', dateAdded='".time()."', dateUpdated='".time()."', groupID='".getLoggedGroupID()."'", $eo);
return (get_magic_quotes_gpc() ? stripslashes($recID) : $recID);
}
function outcomes_delete($selected_id, $AllowDeleteOfParents=false, $skipChecks=false){
// insure referential integrity ...
global $Translation;
$selected_id=makeSafe($selected_id);
// mm: can member delete record?
$arrPerm=getTablePermissions('outcomes');
$ownerGroupID=sqlValue("select groupID from membership_userrecords where tableName='outcomes' and pkValue='$selected_id'");
$ownerMemberID=sqlValue("select lcase(memberID) from membership_userrecords where tableName='outcomes' and pkValue='$selected_id'");
if(($arrPerm[4]==1 && $ownerMemberID==getLoggedMemberID()) || ($arrPerm[4]==2 && $ownerGroupID==getLoggedGroupID()) || $arrPerm[4]==3){ // allow delete?
// delete allowed, so continue ...
}else{
return $Translation['You don\'t have enough permissions to delete this record'];
}
// hook: outcomes_before_delete
if(function_exists('outcomes_before_delete')){
$args=array();
if(!outcomes_before_delete($selected_id, $skipChecks, getMemberInfo(), $args))
return $Translation['Couldn\'t delete this record'];
}
// child table: entries
$res = sql("select `outcome_id` from `outcomes` where `outcome_id`='$selected_id'", $eo);
$outcome_id = mysql_fetch_row($res);
$rires = sql("select count(1) from `entries` where `outcome`='".addslashes($outcome_id[0])."'", $eo);
$rirow = mysql_fetch_row($rires);
if($rirow[0] && !$AllowDeleteOfParents && !$skipChecks){
$RetMsg = $Translation["couldn't delete"];
$RetMsg = str_replace("<RelatedRecords>", $rirow[0], $RetMsg);
$RetMsg = str_replace("<TableName>", "entries", $RetMsg);
return $RetMsg;
}elseif($rirow[0] && $AllowDeleteOfParents && !$skipChecks){
$RetMsg = $Translation["confirm delete"];
$RetMsg = str_replace("<RelatedRecords>", $rirow[0], $RetMsg);
$RetMsg = str_replace("<TableName>", "entries", $RetMsg);
$RetMsg = str_replace("<Delete>", "<input tabindex=\"2\" type=\"button\" class=\"button\" value=\"".$Translation['yes']."\" onClick=\"window.location='outcomes_view.php?SelectedID=".urlencode($selected_id)."&delete_x=1&confirmed=1';\">", $RetMsg);
$RetMsg = str_replace("<Cancel>", "<input tabindex=\"2\" type=\"button\" class=\"button\" value=\"".$Translation['no']."\" onClick=\"window.location='outcomes_view.php?SelectedID=".urlencode($selected_id)."';\">", $RetMsg);
return $RetMsg;
}
// child table: indicators
$res = sql("select `outcome_id` from `outcomes` where `outcome_id`='$selected_id'", $eo);
$outcome_id = mysql_fetch_row($res);
$rires = sql("select count(1) from `indicators` where `outcome`='".addslashes($outcome_id[0])."'", $eo);
$rirow = mysql_fetch_row($rires);
if($rirow[0] && !$AllowDeleteOfParents && !$skipChecks){
$RetMsg = $Translation["couldn't delete"];
$RetMsg = str_replace("<RelatedRecords>", $rirow[0], $RetMsg);
$RetMsg = str_replace("<TableName>", "indicators", $RetMsg);
return $RetMsg;
}elseif($rirow[0] && $AllowDeleteOfParents && !$skipChecks){
$RetMsg = $Translation["confirm delete"];
$RetMsg = str_replace("<RelatedRecords>", $rirow[0], $RetMsg);
$RetMsg = str_replace("<TableName>", "indicators", $RetMsg);
$RetMsg = str_replace("<Delete>", "<input tabindex=\"2\" type=\"button\" class=\"button\" value=\"".$Translation['yes']."\" onClick=\"window.location='outcomes_view.php?SelectedID=".urlencode($selected_id)."&delete_x=1&confirmed=1';\">", $RetMsg);
$RetMsg = str_replace("<Cancel>", "<input tabindex=\"2\" type=\"button\" class=\"button\" value=\"".$Translation['no']."\" onClick=\"window.location='outcomes_view.php?SelectedID=".urlencode($selected_id)."';\">", $RetMsg);
return $RetMsg;
}
sql("delete from `outcomes` where `outcome_id`='$selected_id'", $eo);
// hook: outcomes_after_delete
if(function_exists('outcomes_after_delete')){
$args=array();
outcomes_after_delete($selected_id, getMemberInfo(), $args);
}
// mm: delete ownership data
sql("delete from membership_userrecords where tableName='outcomes' and pkValue='$selected_id'", $eo);
}
function outcomes_update($selected_id){
global $Translation;
if($_GET['update_x']!=''){$_POST=$_GET;}
// mm: can member edit record?
$arrPerm=getTablePermissions('outcomes');
$ownerGroupID=sqlValue("select groupID from membership_userrecords where tableName='outcomes' and pkValue='".makeSafe($selected_id)."'");
$ownerMemberID=sqlValue("select lcase(memberID) from membership_userrecords where tableName='outcomes' and pkValue='".makeSafe($selected_id)."'");
if(($arrPerm[3]==1 && $ownerMemberID==getLoggedMemberID()) || ($arrPerm[3]==2 && $ownerGroupID==getLoggedGroupID()) || $arrPerm[3]==3){ // allow update?
// update allowed, so continue ...
}else{
return false;
}
$data['outcome_area'] = makeSafe($_POST['outcome_area']);
if($data['outcome_area'] == empty_lookup_value){ $data['outcome_area'] = ''; }
$data['description'] = br2nl(makeSafe($_POST['description']));
$data['strata'] = makeSafe($_POST['strata']);
if($data['strata'] == empty_lookup_value){ $data['strata'] = ''; }
$data['selectedID']=makeSafe($selected_id);
// hook: outcomes_before_update
if(function_exists('outcomes_before_update')){
$args=array();
if(!outcomes_before_update($data, getMemberInfo(), $args)){ return false; }
}
$o=array('silentErrors' => true);
sql('update `outcomes` set `outcome_area`=' . (($data['outcome_area'] !== '' && $data['outcome_area'] !== NULL) ? "'{$data['outcome_area']}'" : 'NULL') . ', `description`=' . (($data['description'] !== '' && $data['description'] !== NULL) ? "'{$data['description']}'" : 'NULL') . ', `strata`=' . (($data['strata'] !== '' && $data['strata'] !== NULL) ? "'{$data['strata']}'" : 'NULL') . " where `outcome_id`='".makeSafe($selected_id)."'", $o);
if($o['error']!=''){
echo $o['error'];
echo '<a href="outcomes_view.php?SelectedID='.urlencode($selected_id)."\">{$Translation['< back']}</a>";
exit;
}
// hook: outcomes_after_update
if(function_exists('outcomes_after_update')){
$res = sql("SELECT * FROM `outcomes` WHERE `outcome_id`='{$data['selectedID']}' LIMIT 1", $eo);
if($row = mysql_fetch_assoc($res)){
$data = array_map('makeSafe', $row);
}
$data['selectedID'] = $data['outcome_id'];
$args = array();
if(!outcomes_after_update($data, getMemberInfo(), $args)){ return; }
}
// mm: update ownership data
sql("update membership_userrecords set dateUpdated='".time()."' where tableName='outcomes' and pkValue='".makeSafe($selected_id)."'", $eo);
}
function outcomes_form($selected_id = '', $AllowUpdate = 1, $AllowInsert = 1, $AllowDelete = 1, $ShowCancel = 0){
// function to return an editable form for a table records
// and fill it with data of record whose ID is $selected_id. If $selected_id
// is empty, an empty form is shown, with only an 'Add New'
// button displayed.
global $Translation;
// mm: get table permissions
$arrPerm=getTablePermissions('outcomes');
if(!$arrPerm[1] && $selected_id==''){ return ''; }
// print preview?
$dvprint = false;
if($selected_id && $_REQUEST['dvprint_x'] != ''){
$dvprint = true;
}
$filterer_outcome_area = thisOr(undo_magic_quotes($_REQUEST['filterer_outcome_area']), '');
// populate filterers, starting from children to grand-parents
// unique random identifier
$rnd1 = ($dvprint ? rand(1000000, 9999999) : '');
// combobox: outcome_area
$combo_outcome_area = new DataCombo;
// combobox: strata
$combo_strata = new Combo;
$combo_strata->ListType = 0;
$combo_strata->MultipleSeparator = ', ';
$combo_strata->ListBoxHeight = 10;
$combo_strata->RadiosPerLine = 1;
if(is_file(dirname(__FILE__).'/hooks/outcomes.strata.csv')){
$strata_data = addslashes(implode('', @file(dirname(__FILE__).'/hooks/outcomes.strata.csv')));
$combo_strata->ListItem = explode('||', entitiesToUTF8(convertLegacyOptions($strata_data)));
$combo_strata->ListData = $combo_strata->ListItem;
}else{
$combo_strata->ListItem = explode('||', entitiesToUTF8(convertLegacyOptions("Individuals;;Community, Sector & Society")));
$combo_strata->ListData = $combo_strata->ListItem;
}
$combo_strata->SelectName = 'strata';
if($selected_id){
// mm: check member permissions
if(!$arrPerm[2]){
return "";
}
// mm: who is the owner?
$ownerGroupID=sqlValue("select groupID from membership_userrecords where tableName='outcomes' and pkValue='".makeSafe($selected_id)."'");
$ownerMemberID=sqlValue("select lcase(memberID) from membership_userrecords where tableName='outcomes' and pkValue='".makeSafe($selected_id)."'");
if($arrPerm[2]==1 && getLoggedMemberID()!=$ownerMemberID){
return "";
}
if($arrPerm[2]==2 && getLoggedGroupID()!=$ownerGroupID){
return "";
}
// can edit?
if(($arrPerm[3]==1 && $ownerMemberID==getLoggedMemberID()) || ($arrPerm[3]==2 && $ownerGroupID==getLoggedGroupID()) || $arrPerm[3]==3){
$AllowUpdate=1;
}else{
$AllowUpdate=0;
}
$res = sql("select * from `outcomes` where `outcome_id`='".makeSafe($selected_id)."'", $eo);
$row = mysql_fetch_array($res);
$urow = $row; /* unsanitized data */
$hc = new CI_Input();
$row = $hc->xss_clean($row); /* sanitize data */
$combo_outcome_area->SelectedData = $row['outcome_area'];
$combo_strata->SelectedData = $row['strata'];
}else{
$combo_outcome_area->SelectedData = $filterer_outcome_area;
$combo_strata->SelectedText = ( $_REQUEST['FilterField'][1]=='4' && $_REQUEST['FilterOperator'][1]=='<=>' ? (get_magic_quotes_gpc() ? stripslashes($_REQUEST['FilterValue'][1]) : $_REQUEST['FilterValue'][1]) : "");
}
$combo_outcome_area->HTML = $combo_outcome_area->MatchText = '<span id="outcome_area-container' . $rnd1 . '"></span><input type="hidden" name="outcome_area" id="outcome_area' . $rnd1 . '">';
$combo_strata->Render();
ob_start();
?>
<script>
// initial lookup values
var current_outcome_area__RAND__ = { text: "", value: "<?php echo addslashes($selected_id ? $urow['outcome_area'] : $filterer_outcome_area); ?>"};
jQuery(function() {
outcome_area_reload__RAND__();
});
function outcome_area_reload__RAND__(){
<?php if(($AllowUpdate || $AllowInsert) && !$dvprint){ ?>
jQuery("#outcome_area-container__RAND__").select2({
/* initial default value */
initSelection: function(e, c){
jQuery.ajax({
url: 'ajax_combo.php',
dataType: 'json',
data: { id: current_outcome_area__RAND__.value, t: 'outcomes', f: 'outcome_area' }
}).done(function(resp){
c({
id: resp.results[0].id,
text: resp.results[0].text
});
jQuery('[name="outcome_area"]').val(resp.results[0].id);
if(typeof(outcome_area_update_autofills__RAND__) == 'function') outcome_area_update_autofills__RAND__();
});
},
width: '100%',
formatNoMatches: function(term){ return '<?php echo addslashes($Translation['No matches found!']); ?>'; },
minimumResultsForSearch: 10,
loadMorePadding: 200,
ajax: {
url: 'ajax_combo.php',
dataType: 'json',
cache: true,
data: function(term, page){ return { s: term, p: page, t: 'outcomes', f: 'outcome_area' }; },
results: function(resp, page){ return resp; }
}
}).on('change', function(e){
current_outcome_area__RAND__.value = e.added.id;
current_outcome_area__RAND__.text = e.added.text;
jQuery('[name="outcome_area"]').val(e.added.id);
if(typeof(outcome_area_update_autofills__RAND__) == 'function') outcome_area_update_autofills__RAND__();
});
<?php }else{ ?>
jQuery.ajax({
url: 'ajax_combo.php',
dataType: 'json',
data: { id: current_outcome_area__RAND__.value, t: 'outcomes', f: 'outcome_area' }
}).done(function(resp){
jQuery('#outcome_area-container__RAND__').html('<span id="outcome_area-match-text">' + resp.results[0].text + '</span>');
if(typeof(outcome_area_update_autofills__RAND__) == 'function') outcome_area_update_autofills__RAND__();
});
<?php } ?>
}
</script>
<?php
$lookups = str_replace('__RAND__', $rnd1, ob_get_contents());
ob_end_clean();
// code for template based detail view forms
// open the detail view template
if($dvprint){
$templateCode = @file_get_contents('./templates/outcomes_templateDVP.html');
}else{
$templateCode = @file_get_contents('./templates/outcomes_templateDV.html');
}
// process form title
$templateCode=str_replace('<%%DETAIL_VIEW_TITLE%%>', 'Outcome details', $templateCode);
$templateCode=str_replace('<%%RND1%%>', $rnd1, $templateCode);
// process buttons
if($arrPerm[1]){ // allow insert?
if(!$selected_id) $templateCode=str_replace('<%%INSERT_BUTTON%%>', '<button tabindex="2" type="submit" class="btn btn-success" id="insert" name="insert_x" value="1" onclick="return outcomes_validateData();"><i class="glyphicon glyphicon-plus-sign"></i> ' . $Translation['Save New'] . '</button>', $templateCode);
$templateCode=str_replace('<%%INSERT_BUTTON%%>', '<button tabindex="2" type="submit" class="btn btn-default" id="insert" name="insert_x" value="1" onclick="return outcomes_validateData();"><i class="glyphicon glyphicon-plus-sign"></i> ' . $Translation['Save As Copy'] . '</button>', $templateCode);
}else{
$templateCode=str_replace('<%%INSERT_BUTTON%%>', '', $templateCode);
}
// 'Back' button action
if($_REQUEST['Embedded']){
$backAction = 'window.parent.jQuery(\'.modal\').modal(\'hide\'); return false;';
}else{
$backAction = '$$(\'form\')[0].writeAttribute(\'novalidate\', \'novalidate\'); document.myform.reset(); return true;';
}
if($selected_id){
if(!$_REQUEST['Embedded']) $templateCode=str_replace('<%%DVPRINT_BUTTON%%>', '<button tabindex="2" type="submit" class="btn btn-default" id="dvprint" name="dvprint_x" value="1" onclick="$$(\'form\')[0].writeAttribute(\'novalidate\', \'novalidate\'); document.myform.reset(); return true;"><i class="glyphicon glyphicon-print"></i> ' . $Translation['Print Preview'] . '</button>', $templateCode);
if($AllowUpdate){
$templateCode=str_replace('<%%UPDATE_BUTTON%%>', '<button tabindex="2" type="submit" class="btn btn-success btn-lg" id="update" name="update_x" value="1" onclick="return outcomes_validateData();"><i class="glyphicon glyphicon-ok"></i> ' . $Translation['Save Changes'] . '</button>', $templateCode);
}else{
$templateCode=str_replace('<%%UPDATE_BUTTON%%>', '', $templateCode);
}
if(($arrPerm[4]==1 && $ownerMemberID==getLoggedMemberID()) || ($arrPerm[4]==2 && $ownerGroupID==getLoggedGroupID()) || $arrPerm[4]==3){ // allow delete?
$templateCode=str_replace('<%%DELETE_BUTTON%%>', '<button tabindex="2" type="submit" class="btn btn-danger" id="delete" name="delete_x" value="1" onclick="return confirm(\'' . $Translation['are you sure?'] . '\');"><i class="glyphicon glyphicon-trash"></i> ' . $Translation['Delete'] . '</button>', $templateCode);
}else{
$templateCode=str_replace('<%%DELETE_BUTTON%%>', '', $templateCode);
}
$templateCode=str_replace('<%%DESELECT_BUTTON%%>', '<button tabindex="2" type="submit" class="btn btn-default" id="deselect" name="deselect_x" value="1" onclick="' . $backAction . '"><i class="glyphicon glyphicon-chevron-left"></i> ' . $Translation['Back'] . '</button>', $templateCode);
}else{
$templateCode=str_replace('<%%UPDATE_BUTTON%%>', '', $templateCode);
$templateCode=str_replace('<%%DELETE_BUTTON%%>', '', $templateCode);
$templateCode=str_replace('<%%DESELECT_BUTTON%%>', ($ShowCancel ? '<button tabindex="2" type="submit" class="btn btn-default" id="deselect" name="deselect_x" value="1" onclick="' . $backAction . '"><i class="glyphicon glyphicon-chevron-left"></i> ' . $Translation['Back'] . '</button>' : ''), $templateCode);
}
// set records to read only if user can't insert new records and can't edit current record
if(($selected_id && !$AllowUpdate && !$arrPerm[1]) || (!$selected_id && !$arrPerm[1])){
$jsReadOnly .= "\tjQuery('#outcome_area').prop('disabled', true).css({ color: '#555', backgroundColor: '#fff' });\n";
$jsReadOnly .= "\tjQuery('#outcome_area_caption').prop('disabled', true).css({ color: '#555', backgroundColor: 'white' });\n";
$jsReadOnly .= "\tjQuery('#description').replaceWith('<p class=\"form-control-static\" id=\"description\">' + (jQuery('#description').val() || '') + '</p>');\n";
$jsReadOnly .= "\tjQuery('#strata').replaceWith('<p class=\"form-control-static\" id=\"strata\">' + (jQuery('#strata').val() || '') + '</p>'); jQuery('#strata-multi-selection-help').hide();\n";
$noUploads = true;
}
// process combos
$templateCode=str_replace('<%%COMBO(outcome_area)%%>', $combo_outcome_area->HTML, $templateCode);
$templateCode=str_replace('<%%COMBOTEXT(outcome_area)%%>', $combo_outcome_area->MatchText, $templateCode);
$templateCode=str_replace('<%%URLCOMBOTEXT(outcome_area)%%>', urlencode($combo_outcome_area->MatchText), $templateCode);
$templateCode=str_replace('<%%COMBO(strata)%%>', $combo_strata->HTML, $templateCode);
$templateCode=str_replace('<%%COMBOTEXT(strata)%%>', $combo_strata->SelectedData, $templateCode);
// process foreign key links
if($selected_id){
$templateCode=str_replace('<%%PLINK(outcome_area)%%>', ($combo_outcome_area->SelectedData ? "<span id=\"outcome_areas_plink1\" class=\"hidden\"><a class=\"btn btn-default\" href=\"outcome_areas_view.php?SelectedID=" . urlencode($combo_outcome_area->SelectedData) . "\"><i class=\"glyphicon glyphicon-search\"></i></a></span>" : ''), $templateCode);
}
// process images
$templateCode=str_replace('<%%UPLOADFILE(outcome_id)%%>', '', $templateCode);
$templateCode=str_replace('<%%UPLOADFILE(outcome_area)%%>', '', $templateCode);
$templateCode=str_replace('<%%UPLOADFILE(description)%%>', '', $templateCode);
$templateCode=str_replace('<%%UPLOADFILE(strata)%%>', '', $templateCode);
// process values
if($selected_id){
$templateCode=str_replace('<%%VALUE(outcome_id)%%>', htmlspecialchars($row['outcome_id'], ENT_QUOTES), $templateCode);
$templateCode=str_replace('<%%URLVALUE(outcome_id)%%>', urlencode($urow['outcome_id']), $templateCode);
$templateCode=str_replace('<%%VALUE(outcome_area)%%>', htmlspecialchars($row['outcome_area'], ENT_QUOTES), $templateCode);
$templateCode=str_replace('<%%URLVALUE(outcome_area)%%>', urlencode($urow['outcome_area']), $templateCode);
if($dvprint){
$templateCode = str_replace('<%%VALUE(description)%%>', nl2br(htmlspecialchars($row['description'], ENT_QUOTES)), $templateCode);
}else{
$templateCode = str_replace('<%%VALUE(description)%%>', htmlspecialchars($row['description'], ENT_QUOTES), $templateCode);
}
$templateCode=str_replace('<%%URLVALUE(description)%%>', urlencode($urow['description']), $templateCode);
$templateCode=str_replace('<%%VALUE(strata)%%>', htmlspecialchars($row['strata'], ENT_QUOTES), $templateCode);
$templateCode=str_replace('<%%URLVALUE(strata)%%>', urlencode($urow['strata']), $templateCode);
}else{
$templateCode=str_replace('<%%VALUE(outcome_id)%%>', '', $templateCode);
$templateCode=str_replace('<%%URLVALUE(outcome_id)%%>', urlencode(''), $templateCode);
$templateCode=str_replace('<%%VALUE(outcome_area)%%>', '', $templateCode);
$templateCode=str_replace('<%%URLVALUE(outcome_area)%%>', urlencode(''), $templateCode);
$templateCode=str_replace('<%%VALUE(description)%%>', '', $templateCode);
$templateCode=str_replace('<%%URLVALUE(description)%%>', urlencode(''), $templateCode);
$templateCode=str_replace('<%%VALUE(strata)%%>', '', $templateCode);
$templateCode=str_replace('<%%URLVALUE(strata)%%>', urlencode(''), $templateCode);
}
// process translations
foreach($Translation as $symbol=>$trans){
$templateCode=str_replace("<%%TRANSLATION($symbol)%%>", $trans, $templateCode);
}
// clear scrap
$templateCode=str_replace('<%%', '<!-- ', $templateCode);
$templateCode=str_replace('%%>', ' -->', $templateCode);
// hide links to inaccessible tables
if($_POST['dvprint_x']==''){
$templateCode.="\n\n<script>jQuery(function(){\n";
$arrTables=getTableList();
foreach($arrTables as $name => $caption){
$templateCode .= "\tjQuery('#{$name}_link').removeClass('hidden');\n";
$templateCode .= "\tjQuery('#xs_{$name}_link').removeClass('hidden');\n";
$templateCode .= "\tjQuery('[id^=\"{$name}_plink\"]').removeClass('hidden');\n";
}
$templateCode .= $jsReadOnly;
if(!$selected_id){
}
$templateCode.="\n});</script>\n";
}
// ajaxed auto-fill fields
$templateCode.="<script>";
$templateCode.="document.observe('dom:loaded', function() {";
$templateCode.="});";
$templateCode.="</script>";
$templateCode .= $lookups;
// handle enforced parent values for read-only lookup fields
// don't include blank images in lightbox gallery
$templateCode=preg_replace('/blank.gif" rel="lightbox\[.*?\]"/', 'blank.gif"', $templateCode);
// don't display empty email links
$templateCode=preg_replace('/<a .*?href="mailto:".*?<\/a>/', '', $templateCode);
// hook: outcomes_dv
if(function_exists('outcomes_dv')){
$args=array();
outcomes_dv(($selected_id ? $selected_id : FALSE), getMemberInfo(), $templateCode, $args);
}
return $templateCode;
}
?>