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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
|
<?php
// $Id$
function code_approval()
{
/* get a list of unapproved chapters */
$query = db_select('textbook_companion_example', 'e');
$query->fields('c', array(
'id',
'number',
'name',
'preference_id'
));
$query->addField('c', 'id', 'c_id');
$query->addField('c', 'number', 'c_number');
$query->addField('c', 'name', 'c_name');
$query->addField('c', 'preference_id', 'c_preference_id');
$query->innerJoin('textbook_companion_chapter', 'c', 'c.id = e.chapter_id');
$query->condition('e.approval_status', 0);
$pending_chapter_q = $query->execute();
if (!$pending_chapter_q) {
drupal_set_message(t('There are no pending code approvals.'), 'status');
return '';
}
$rows = array();
while ($row = $pending_chapter_q->fetchObject()) {
/* get preference data */
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $row->c_preference_id);
$result = $query->execute();
$preference_data = $result->fetchObject();
/* get proposal data */
$query = db_select('textbook_companion_proposal');
$query->fields('textbook_companion_proposal');
$query->condition('id', $preference_data->proposal_id);
$result = $query->execute();
$proposal_data = $result->fetchObject();
/* setting table row information */
$rows[] = array(
$preference_data->book,
$row->c_number,
$row->c_name,
$proposal_data->full_name,
l('Edit', 'textbook-companion/code-approval/approve/' . $row->c_id)
);
}
/* check if there are any pending proposals */
if (!$rows) {
drupal_set_message(t('There are no pending proposals'), 'status');
return '';
}
$header = array(
'Title of the Book',
'Chapter Number',
'Title of the Chapter',
'Contributor Name',
'Actions'
);
$output = theme('table', array(
'header' => $header,
'rows' => $rows
));
return $output;
}
function code_approval_form($form, &$form_state)
{
/* get a list of unapproved chapters */
$chapter_id = arg(3);
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('id', $chapter_id);
$pending_chapter_q = $query->execute();
if ($pending_chapter_data = $pending_chapter_q->fetchObject()) {
/* get preference data */
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $pending_chapter_data->preference_id);
$result = $query->execute();
$preference_data = $result->fetchObject();
/* get proposal data */
$query = db_select('textbook_companion_proposal');
$query->fields('textbook_companion_proposal');
$query->condition('id', $preference_data->proposal_id);
$result = $query->execute();
$proposal_data = $result->fetchObject();
} else {
drupal_set_message(t('Invalid chapter selected.'), 'error');
drupal_goto('textbook-companion/code-approval');
return;
}
$form['#tree'] = TRUE;
$form['contributor'] = array(
'#type' => 'item',
'#markup' => $proposal_data->full_name,
'#title' => t('Contributor Name')
);
$form['book_details']['book'] = array(
'#type' => 'item',
'#markup' => $preference_data->book,
'#title' => t('Title of the Book')
);
$form['book_details']['number'] = array(
'#type' => 'item',
'#markup' => $pending_chapter_data->number,
'#title' => t('Chapter Number')
);
$form['book_details']['name'] = array(
'#type' => 'item',
'#markup' => $pending_chapter_data->name,
'#title' => t('Title of the Chapter')
);
$form['book_details']['back_to_list'] = array(
'#type' => 'item',
'#markup' => l('Back to Code Approval List', 'textbook-companion/code-approval')
);
/* get example data */
$query = db_select('textbook_companion_example');
$query->fields('textbook_companion_example');
$query->condition('chapter_id', $chapter_id);
$query->condition('approval_status', 0);
$example_q = $query->execute();
while ($example_data = $example_q->fetchObject()) {
$form['example_details'][$example_data->id] = array(
'#type' => 'fieldset',
'#collapsible' => FALSE,
'#collapsed' => TRUE
);
$form['example_details'][$example_data->id]['example_number'] = array(
'#type' => 'item',
'#markup' => $example_data->number,
'#title' => t('Example Number'),
);
$form['example_details'][$example_data->id]['example_caption'] = array(
'#type' => 'item',
'#markup' => $example_data->caption,
'#title' => t('Example Caption')
);
$form['example_details'][$example_data->id]['download'] = array(
'#type' => 'markup',
'#markup' => l('Download Example', 'textbook-companion/download/example/' . $example_data->id)
);
$form['example_details'][$example_data->id]['approved'] = array(
'#type' => 'radios',
'#options' => array(
'Approved',
'Dis-approved'
)
);
$form['example_details'][$example_data->id]['message'] = array(
'#type' => 'textfield',
'#title' => t('Reason for dis-approval')
);
$form['example_details'][$example_data->id]['example_id'] = array(
'#type' => 'hidden',
'#value' => $example_data->id
);
$form['example_details'][$example_data->id]['example_number_hidden'] = array(
'#type' => 'hidden',
'#value' => $example_data->number
);
}
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Submit')
);
return $form;
}
function code_approval_form_validate($form, &$form_state){
foreach ($form_state['values']['example_details'] as $ex_id => $ex_data) {
if ($ex_data['approved'] == "1"){
if($ex_data['message'] == NULL || $ex_data['message'] == '')
form_set_error($ex_id . '][message', t('Enter reason for disapproval for experiment no: ' . $ex_data['example_number_hidden']));
}
}
}
function code_approval_form_submit($form, &$form_state)
{
global $user;
foreach ($form_state['values']['example_details'] as $ex_id => $ex_data) {
$query = db_select('textbook_companion_example');
$query->fields('textbook_companion_example');
$query->condition('id', $ex_data['example_id']);
$query->range(0, 1);
$result = $query->execute();
$example_data = $result->fetchObject();
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('id', $example_data->chapter_id);
$query->range(0, 1);
$result = $query->execute();
$chapter_data = $result->fetchObject();
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $chapter_data->preference_id);
$query->range(0, 1);
$result = $query->execute();
$preference_data = $result->fetchObject();
$query = db_select('textbook_companion_proposal');
$query->fields('textbook_companion_proposal');
$query->condition('id', $preference_data->proposal_id);
$query->range(0, 1);
$result = $query->execute();
$proposal_data = $result->fetchObject();
$user_data = user_load($proposal_data->uid);
del_book_pdf($preference_data->id);
if ($ex_data['approved'] == "0") {
$query = db_update('textbook_companion_example');
$query->fields(array(
'approval_status' => 1,
'approver_uid' => $user->uid,
'approval_date' => time()
));
$query->condition('id', $ex_data['example_id']);
$num_updated = $query->execute();
/* sending email */
$email_to = $user_data->mail;
$from = variable_get('textbook_companion_from_email', '');
$bcc = variable_get('textbook_companion_emails', '');
$cc = variable_get('textbook_companion_cc_emails', '');
$param['example_approved']['example_id'] = $ex_data['example_id'];
$param['example_approved']['user_id'] = $user_data->uid;
$param['example_approved']['headers'] = array(
'From' => $from,
'MIME-Version' => '1.0',
'Content-Type' => 'text/plain; charset=UTF-8; format=flowed; delsp=yes',
'Content-Transfer-Encoding' => '8Bit',
'X-Mailer' => 'Drupal',
'Cc' => $cc,
'Bcc' => $bcc
);
if (!drupal_mail('textbook_companion', 'example_approved', $email_to, language_default(), $param, $from, TRUE))
drupal_set_message('Error sending email message.', 'error');
} else if ($ex_data['approved'] == "1") {
if (delete_example($ex_data['example_id'])) {
/* sending email */
$email_to = $user_data->mail;
$from = variable_get('textbook_companion_from_email', '');
$bcc = variable_get('textbook_companion_emails', '');
$cc = variable_get('textbook_companion_cc_emails', '');
$param['example_disapproved']['preference_id'] = $chapter_data->preference_id;
$param['example_disapproved']['chapter_id'] = $example_data->chapter_id;
$param['example_disapproved']['example_number'] = $example_data->number;
$param['example_disapproved']['example_caption'] = $example_data->caption;
$param['example_disapproved']['user_id'] = $user_data->uid;
$param['example_disapproved']['message'] = $ex_data['message'];
$param['example_disapproved']['headers'] = array(
'From' => $from,
'MIME-Version' => '1.0',
'Content-Type' => 'text/plain; charset=UTF-8; format=flowed; delsp=yes',
'Content-Transfer-Encoding' => '8Bit',
'X-Mailer' => 'Drupal',
'Cc' => $cc,
'Bcc' => $bcc
);
if (!drupal_mail('textbook_companion', 'example_disapproved', $email_to, language_default(), $param, $from, TRUE))
drupal_set_message('Error sending email message.', 'error');
} else {
drupal_set_message('Error disapproving and deleting example. Please contact administrator.', 'error');
}
}
}
drupal_set_message('Updated successfully.', 'status');
drupal_goto('textbook-companion/code-approval');
}
/********************************* BULK APPROVAL ******************************/
function bulk_approval_form($form, &$form_state)
{
$options_first = _bulk_list_of_books();
$options_two = _ajax_bulk_get_chapter_list();
$selected = isset($form_state['values']['book']) ? $form_state['values']['book'] : key($options_first);
$select_two = isset($form_state['values']['chapter']) ? $form_state['values']['chapter'] : key($options_two);
$form['book'] = array(
'#type' => 'select',
'#title' => t('Title of the Book'),
'#options' => _bulk_list_of_books(),
'#default_value' => $selected,
'#tree' => TRUE,
'#ajax' => array(
'callback' => 'ajax_bulk_chapter_list_callback'
),
'#validated' => TRUE
);
$form['download_book'] = array(
'#type' => 'item',
'#markup' => '<div id="ajax_selected_book"></div>'
);
$form['notes_book'] = array(
'#type' => 'item',
'#markup' => '<div id="ajax_selected_book_notes"></div>'
);
$form['book_actions'] = array(
'#type' => 'select',
'#title' => t('Please select action for selected book'),
'#options' => _bulk_list_book_actions(),
//'#default_value' => isset($form_state['values']['lab_actions']) ? $form_state['values']['lab_actions'] : 0,
'#prefix' => '<div id="ajax_selected_book_action" style="color:red;">',
'#suffix' => '</div>',
'#states' => array(
'invisible' => array(
':input[name="book"]' => array(
'value' => 0
)
)
),
'#validated' => TRUE
);
$form['chapter'] = array(
'#type' => 'select',
'#title' => t('Title of the Chapter'),
'#options' => _ajax_bulk_get_chapter_list($selected),
//'#default_value' => $chapter_default_value,
'#prefix' => '<div id="ajax_select_chapter_list">',
'#suffix' => '</div>',
'#validated' => TRUE,
'#tree' => TRUE,
'#ajax' => array(
'callback' => 'ajax_bulk_example_list_callback'
),
'#states' => array(
'invisible' => array(
':input[name="book"]' => array(
'value' => 0
)
)
)
);
$form['download_chapter'] = array(
'#type' => 'item',
'#markup' => '<div id="ajax_download_chapter"></div>'
);
$form['chapter_actions'] = array(
'#type' => 'select',
'#title' => t('Please select action for selected chapter'),
'#options' => _bulk_list_chapter_actions(),
//'#default_value' => isset($form_state['values']['lab_actions']) ? $form_state['values']['lab_actions'] : 0,
'#prefix' => '<div id="ajax_selected_chapter_action" style="color:red;">',
'#suffix' => '</div>',
'#states' => array(
'invisible' => array(
':input[name="book"]' => array(
'value' => 0
)
)
),
'#ajax' => array(
'callback' => 'ajax_bulk_chapter_actions_callback'
)
);
$form['example'] = array(
'#type' => 'select',
'#title' => t('Example No. (Caption)'),
'#options' => _ajax_bulk_get_examples(),
// '#default_value' => $example_default_value,
'#validated' => TRUE,
'#prefix' => '<div id="ajax_selected_example">',
'#suffix' => '</div>',
'#states' => array(
'invisible' => array(
':input[name="book"]' => array(
'value' => 0
)
)
),
'#ajax' => array(
'callback' => 'ajax_bulk_example_files_callback'
)
);
$form['download_example'] = array(
'#type' => 'item',
'#markup' => '<div id="ajax_download_selected_example"></div>'
);
$form['edit_example'] = array(
'#type' => 'item',
'#markup' => '<div id="ajax_edit_selected_example"></div>'
);
$form['example_files'] = array(
'#type' => 'item',
'#markup' => '',
'#prefix' => '<div id="ajax_example_files_list">',
'#suffix' => '</div>'
);
$form['example_actions'] = array(
'#type' => 'select',
'#title' => t('Please select action for selected example'),
'#options' => _bulk_list_example_actions(),
//'#default_value' => isset($form_state['values']['lab_actions']) ? $form_state['values']['lab_actions'] : 0,
'#prefix' => '<div id="ajax_selected_example_action" style="color:red;">',
'#suffix' => '</div>',
'#states' => array(
'invisible' => array(
':input[name="book"]' => array(
'value' => 0
)
)
)
);
$form['message'] = array(
'#type' => 'textarea',
'#title' => t('If Dis-Approved please specify reason for Dis-Approval'),
'#states' => array(
'visible' => array(
array(
array(
':input[name="book_actions"]' => array(
'value' => 3
)
),
'or',
array(
':input[name="chapter_actions"]' => array(
'value' => 3
)
),
'or',
array(
':input[name="example_actions"]' => array(
'value' => 3
)
),
'or',
array(
':input[name="book_actions"]' => array(
'value' => 4
)
)
)
),
'required' => array(
array(
array(
':input[name="book_actions"]' => array(
'value' => 3
)
),
'or',
array(
':input[name="chapter_actions"]' => array(
'value' => 3
)
),
'or',
array(
':input[name="example_actions"]' => array(
'value' => 3
)
),
'or',
array(
':input[name="book_actions"]' => array(
'value' => 4
)
)
)
)
)
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Submit'),
'#states' => array(
'invisible' => array(
':input[name="book"]' => array(
'value' => 0
)
)
)
);
return $form;
}
function bulk_approval_form_submit($form, &$form_state)
{
global $user;
$root_path = textbook_companion_path();
if ($form_state['clicked_button']['#value'] == 'Submit') {
if ($form_state['values']['book'])
del_book_pdf($form_state['values']['book']);
if (user_access('bulk manage code')) {
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $form_state['values']['book']);
$result = $query->execute();
$pref_data = $result->fetchObject();
$prop_id = $pref_data->proposal_id;
$query = db_select('textbook_companion_proposal');
$query->fields('textbook_companion_proposal');
$query->condition('id', $prop_id);
$user_query = $query->execute();
$user_info = $user_query->fetchObject();
$user_data = user_load($user_info->uid);
if (($form_state['values']['book_actions'] == 1) && ($form_state['values']['chapter_actions'] == 0) && ($form_state['values']['example_actions'] == 0)) {
/* approving entire book */
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $form_state['values']['book']);
$query->condition('approval_status', 1);
$result = $query->execute();
$preference_data = $result->fetchObject();
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('preference_id', $form_state['values']['book']);
$chapter_q = $query->execute();
while ($chapter_data = $chapter_q->fetchObject()) {
$query = db_update('textbook_companion_example');
$query->fields(array(
'approval_status' => 1,
'approver_uid' => $user->uid
));
$query->condition('chapter_id', $chapter_data->id);
$query->condition('approval_status', 0);
$num_updated = $query->execute();
}
$query = db_update('textbook_companion_preference');
$query->fields(array(
'submited_all_examples_code' => 2
));
$query->condition('id', $form_state['values']['book']);
$num_updated = $query->execute();
drupal_set_message(t('Approved Entire Book.'), 'status');
/* email */
$email_subject = t('[!site_name][Textbook Companion] Your uploaded Textbook Companion examples have been approved', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
Your all the uploaded examples for the book have been approved.
Title of the book : ' . $preference_data->book . '
Author name : ' . $preference_data->author . '
ISBN No. : ' . $preference_data->isbn . '
Publisher and Place : ' . $preference_data->publisher . '
Edition : ' . $preference_data->edition . '
Year of publication : ' . $preference_data->year . '
Best Wishes,
!site_name Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
} elseif (($form_state['values']['book_actions'] == 2) && ($form_state['values']['chapter_actions'] == 0) && ($form_state['values']['example_actions'] == 0)) {
/* pending entire book */
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $form_state['values']['book']);
$query->condition('approval_status', 1);
$result = $query->execute();
$preference_data = $result->fetchObject();
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('preference_id', $form_state['values']['book']);
$chapter_q = $query->execute();
while ($chapter_data = $chapter_q->fetchObject()) {
$query = db_update('textbook_companion_example');
$query->fields(array(
'approval_status' => 0
));
$query->condition('chapter_id', $chapter_data->id);
$num_updated = $query->execute();
}
drupal_set_message(t('Pending Review Entire Book.'), 'status');
/* email */
$email_subject = t('[!site_name] Your uploaded Textbook Companion examples have been marked as pending', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
Your all the uploaded examples for the book have been marked as pending to be reviewed.
You will be able to see the examples after they have been approved by one of our reviewers.
Title of the book : ' . $preference_data->book . '
Author name : ' . $preference_data->author . '
ISBN No. : ' . $preference_data->isbn . '
Publisher and Place : ' . $preference_data->publisher . '
Edition : ' . $preference_data->edition . '
Year of publication : ' . $preference_data->year . '
Best Wishes,
!site_name Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
} elseif (($form_state['values']['book_actions'] == 3) && ($form_state['values']['chapter_actions'] == 0) && ($form_state['values']['example_actions'] == 0)) {
if (strlen(trim($form_state['values']['message'])) <= 30) {
form_set_error('message', t(''));
drupal_set_message("Please mention the reason for disapproval. Minimum 30 character required", 'error');
return;
}
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $form_state['values']['book']);
$query->condition('approval_status', 1);
$result = $query->execute();
$preference_data = $result->fetchObject();
if (!user_access('bulk delete code')) {
drupal_set_message(t('You do not have permission to Bulk Dis-Approved and Deleted Entire Book.'), 'error');
return;
}
if (delete_book($form_state['values']['book'])) {
drupal_set_message(t('Dis-Approved and Deleted Entire Book.'), 'status');
} else {
drupal_set_message(t('Error Dis-Approving and Deleting Entire Book.'), 'error');
}
/* email */
/*$email_subject = t('Your uploaded examples have been marked as dis-approved');
$email_body =array( t('Your all the uploaded examples for the whole book have been marked as dis-approved.
Reason for dis-approval:
' . $form_state['values']['message']));*/
$email_subject = t('[!site_name] Your uploaded Textbook Companion examples have been marked as
dis-approved', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
Your all the uploaded examples for the whole book have been marked as dis-approved.
Title of the book : ' . $preference_data->book . '
Author name : ' . $preference_data->author . '
ISBN No. : ' . $preference_data->isbn . '
Publisher and Place : ' . $preference_data->publisher . '
Edition : ' . $preference_data->edition . '
Year of publication : ' . $preference_data->year . '
Reason for dis-approval:' . $form_state['values']['message'] . '
Best Wishes,
!site_name Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
} elseif (($form_state['values']['book_actions'] == 4) && ($form_state['values']['chapter_actions'] == 0) && ($form_state['values']['example_actions'] == 0)) {
if (strlen(trim($form_state['values']['message'])) <= 30) {
form_set_error('message', t(''));
drupal_set_message("Please mention the reason for disapproval/deletion. Minimum 30 character required", 'error');
return;
}
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $form_state['values']['book']);
$query->condition('approval_status', 1);
$result = $query->execute();
$pref_data = $result->fetchObject();
if (!user_access('bulk delete code')) {
drupal_set_message(t('You do not have permission to Bulk Delete Entire Book Including Proposal.'), 'error');
return;
}
if (delete_book($form_state['values']['book'])) {
drupal_set_message(t('Dis-Approved and Deleted Entire Book examples.'), 'status');
$dir_path = $root_path . $form_state['values']['book'];
if (is_dir($dir_path)) {
$res = rmdir($dir_path);
if (!$res) {
drupal_set_message(t("Cannot delete Book directory : " . $dir_path . ". Please contact administrator."), 'error');
return;
}
} else {
drupal_set_message(t("Book directory not present : " . $dir_path . ". Skipping deleting book directory."), 'status');
}
/* deleting preference and proposal */
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $form_state['values']['book']);
$result = $query->execute();
$preference_data = $result->fetchObject();
$proposal_id = $preference_data->proposal_id;
$query = db_delete('textbook_companion_preference');
$query->condition('proposal_id', $proposal_id);
$num_deleted = $query->execute();
$query = db_delete('textbook_companion_proposal');
$query->condition('id', $proposal_id);
$num_deleted = $query->execute();
drupal_set_message(t('Deleted Book Proposal.'), 'status');
/* email */
$email_subject = t('[!site_name] Your uploaded Textbook Companion examples including the book proposal have been deleted', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
We regret to inform you that all the uploaded examples including the book with following details have been deleted permanently.
Title of the book : ' . $pref_data->book . '
Author name : ' . $pref_data->author . '
ISBN No. : ' . $pref_data->isbn . '
Publisher and Place : ' . $pref_data->publisher . '
Edition : ' . $pref_data->edition . '
Year of publication : ' . $pref_data->year . '
Reason for deletion:' . $form_state['values']['message'] . '
Best Wishes,
!site_name Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
} else {
drupal_set_message(t('Error Dis-Approving and Deleting Entire Book.'), 'error');
}
} elseif (($form_state['values']['book_actions'] == 0) && ($form_state['values']['chapter_actions'] == 1) && ($form_state['values']['example_actions'] == 0)) {
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $form_state['values']['book']);
$query->condition('approval_status', 1);
$result = $query->execute();
$pref_data = $result->fetchObject();
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('preference_id', $form_state['values']['book']);
$query->condition('id', $form_state['values']['chapter']);
$result = $query->execute();
$chap_data = $result->fetchObject();
$query = db_update('textbook_companion_example');
$query->fields(array(
'approval_status' => 1,
'approver_uid' => $user->uid
));
$query->condition('chapter_id', $form_state['values']['chapter']);
$query->condition('approval_status', 0);
$num_updated = $query->execute();
drupal_set_message(t('Approved Entire Chapter.'), 'status');
/* email */
$email_subject = t('[!site_name] Your uploaded Textbook Companion examples have been approved', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
Your all the uploaded examples for the chapter have been approved.
Title of the book : ' . $pref_data->book . '
Title of the chapter : ' . $chap_data->name . '
Best Wishes,
!site_name Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
} elseif (($form_state['values']['book_actions'] == 0) && ($form_state['values']['chapter_actions'] == 2) && ($form_state['values']['example_actions'] == 0)) {
/*db_query("UPDATE {textbook_companion_example} SET approval_status = 0 WHERE chapter_id = %d", $form_state['values']['chapter']);*/
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $form_state['values']['book']);
$query->condition('approval_status', 1);
$result = $query->execute();
$pref_data = $result->fetchObject();
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('preference_id', $form_state['values']['book']);
$query->condition('id', $form_state['values']['chapter']);
$result = $query->execute();
$chap_data = $result->fetchObject();
$query = db_update('textbook_companion_example');
$query->fields(array(
'approval_status' => 0
));
$query->condition('chapter_id', $form_state['values']['chapter']);
$num_updated = $query->execute();
drupal_set_message(t('Entire Chapter marked as Pending Review.'), 'status');
/* email */
$email_subject = t('[!site_name] Your uploaded Textbook Companion examples have been marked as pending', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
Your all the uploaded examples for the chapter have been marked as pending to be reviewed.
Title of the book : ' . $pref_data->book . '
Title of the chapter : ' . $chap_data->name . '
Best Wishes,
!site_name Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
} elseif (($form_state['values']['book_actions'] == 0) && ($form_state['values']['chapter_actions'] == 3) && ($form_state['values']['example_actions'] == 0)) {
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $form_state['values']['book']);
$query->condition('approval_status', 1);
$result = $query->execute();
$pref_data = $result->fetchObject();
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('preference_id', $form_state['values']['book']);
$query->condition('id', $form_state['values']['chapter']);
$result = $query->execute();
$chap_data = $result->fetchObject();
if (strlen(trim($form_state['values']['message'])) <= 30) {
form_set_error('message', t(''));
drupal_set_message("Please mention the reason for disapproval. Minimum 30 character required", 'error');
return;
}
if (!user_access('bulk delete code')) {
drupal_set_message(t('You do not have permission to Bulk Dis-Approved and Deleted Entire Chapter.'), 'error');
return;
}
if (delete_chapter($form_state['values']['chapter'])) {
drupal_set_message(t('Dis-Approved and Deleted Entire Chapter.'), 'status');
} else {
drupal_set_message(t('Error Dis-Approving and Deleting Entire Chapter.'), 'error');
}
/* email */
$email_subject = t('[!site_name] Your uploaded Textbook Companion example have been marked as dis-approved', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
Your uploaded example for the entire chapter have been marked as dis-approved.
Title of the book : ' . $pref_data->book . '
Title of the chapter : ' . $chap_data->name . '
Reason for dis-approval:' . $form_state['values']['message'] . '
Best Wishes,
!site_name Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
} elseif (($form_state['values']['book_actions'] == 0) && ($form_state['values']['chapter_actions'] == 0) && ($form_state['values']['example_actions'] == 1)) {
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $form_state['values']['book']);
$query->condition('approval_status', 1);
$result = $query->execute();
$pref_data = $result->fetchObject();
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('preference_id', $form_state['values']['book']);
$query->condition('id', $form_state['values']['chapter']);
$result = $query->execute();
$chap_data = $result->fetchObject();
$query = db_select('textbook_companion_example');
$query->fields('textbook_companion_example');
$query->condition('id', $form_state['values']['example']);
$result = $query->execute();
$examp_data = $result->fetchObject();
$query = db_update('textbook_companion_example');
$query->fields(array(
'approval_status' => 1,
'approver_uid' => $user->uid
));
$query->condition('id', $form_state['values']['example']);
$num_updated = $query->execute();
drupal_set_message(t('Example approved.'), 'status');
/* email */
$email_subject = t('[!site_name] Your uploaded Textbook Companion example have been approved', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
Your example for OpenModelica Textbook Companion with the following details is approved.
Title of the book : ' . $pref_data->book . '
Title of the chapter : ' . $chap_data->name . '
Example number : ' . $examp_data->number . '
Caption : ' . $examp_data->caption . '
Best Wishes,
!site_name Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
} elseif (($form_state['values']['book_actions'] == 0) && ($form_state['values']['chapter_actions'] == 0) && ($form_state['values']['example_actions'] == 2)) {
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $form_state['values']['book']);
$query->condition('approval_status', 1);
$result = $query->execute();
$pref_data = $result->fetchObject();
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('preference_id', $form_state['values']['book']);
$query->condition('id', $form_state['values']['chapter']);
$result = $query->execute();
$chap_data = $result->fetchObject();
$query = db_select('textbook_companion_example');
$query->fields('textbook_companion_example');
$query->condition('id', $form_state['values']['example']);
$result = $query->execute();
$examp_data = $result->fetchObject();
$query = db_update('textbook_companion_example');
$query->fields(array(
'approval_status' => 0
));
$query->condition('id', $form_state['values']['example']);
$num_updated = $query->execute();
drupal_set_message(t('Example marked as Pending Review.'), 'status');
/* email */
$email_subject = t('[!site_name] Your uploaded Textbook Companion example has been marked as pending', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
Your uploaded example for OpenModelica Textbook Companion with the following details has been marked as pending to be reviewed.
Title of the book : ' . $pref_data->book . '
Title of the chapter : ' . $chap_data->name . '
Example number : ' . $examp_data->number . '
Caption : ' . $examp_data->caption . '
Best Wishes,
!site_name Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
} elseif (($form_state['values']['book_actions'] == 0) && ($form_state['values']['chapter_actions'] == 0) && ($form_state['values']['example_actions'] == 3)) {
if (strlen(trim($form_state['values']['message'])) <= 30) {
form_set_error('message', t(''));
drupal_set_message("Please mention the reason for disapproval. Minimum 30 character required", 'error');
return;
}
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $form_state['values']['book']);
$query->condition('approval_status', 1);
$result = $query->execute();
$pref_data = $result->fetchObject();
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('preference_id', $form_state['values']['book']);
$query->condition('id', $form_state['values']['chapter']);
$result = $query->execute();
$chap_data = $result->fetchObject();
$query = db_select('textbook_companion_example');
$query->fields('textbook_companion_example');
$query->condition('id', $form_state['values']['example']);
$result = $query->execute();
$examp_data = $result->fetchObject();
if (delete_example($form_state['values']['example'])) {
drupal_set_message(t('Example Dis-Approved and Deleted.'), 'status');
} else {
drupal_set_message(t('Error Dis-Approving and Deleting Example.'), 'error');
}
/* email */
$email_subject = t('[!site_name] Your uploaded Textbook Companion example has been marked as
dis-approved', array(
'!site_name' => variable_get('site_name', '')
));
$email_body = array(
0 => t('
Dear !user_name,
Your example for OpenModelica Textbook Companion has been marked as dis-approved and deleted.
Title of the book : ' . $pref_data->book . '
Title of the chapter : ' . $chap_data->name . '
Example number : ' . $examp_data->number . '
Caption : ' . $examp_data->caption . '
Reason for dis-approval:' . $form_state['values']['message'] . '
Best Wishes,
!site_name Team,
FOSSEE,IIT Bombay', array(
'!site_name' => variable_get('site_name', ''),
'!user_name' => $user_data->name
))
);
} else {
drupal_set_message(t('Please select only one action at a time'), 'error');
return;
}
/****** sending email when everything done ******/
if ($email_subject) {
$email_to = $user_data->mail;
$from = variable_get('textbook_companion_from_email', '');
$bcc = variable_get('textbook_companion_emails', '');
$cc = variable_get('textbook_companion_cc_emails', '');
$param['standard']['subject'] = $email_subject;
$param['standard']['body'] = $email_body;
$param['standard']['headers'] = array(
'From' => $from,
'MIME-Version' => '1.0',
'Content-Type' => 'text/plain; charset=UTF-8; format=flowed; delsp=yes',
'Content-Transfer-Encoding' => '8Bit',
'X-Mailer' => 'Drupal',
'Cc' => $cc,
'Bcc' => $bcc
);
if (!drupal_mail('textbook_companion', 'standard', $email_to, language_default(), $param, $from, TRUE))
drupal_set_message('Error sending email message.', 'error');
}
} else {
drupal_set_message(t('You do not have permission to bulk manage code.'), 'error');
}
}
}
function _bulk_list_of_books()
{
$book_titles = array(
'0' => 'Please select...'
);
$query = db_select('textbook_companion_preference', 'pp');
$query->join('textbook_companion_proposal', 'p', 'pp.proposal_id=p.id');
$query->join('users', 'u', 'p.uid=u.uid');
$query->fields('u', array(
'name'
));
$query->fields('pp', array(
'id',
'book',
'author'
));
$or = db_or();
$or->condition('approval_status', 1);
$or->condition('approval_status', 3);
$query->condition($or);
$query->orderBy('book', 'ASC');
$book_titles_q = $query->execute();
while ($book_titles_data = $book_titles_q->fetchObject()) {
$book_titles[$book_titles_data->id] = $book_titles_data->book . ' (Written by ' . $book_titles_data->author . ')' . ' (Proposed by ' . $book_titles_data->name . ')';
}
return $book_titles;
}
function _ajax_bulk_get_chapter_list($preference_id = 0)
{
$book_chapters = array(
'0' => 'Please select...'
);
$query = db_select('textbook_companion_chapter');
$query->fields('textbook_companion_chapter');
$query->condition('preference_id', $preference_id);
$query->orderBy('number', 'ASC');
$book_chapters_q = $query->execute();
while ($book_chapters_data = $book_chapters_q->fetchObject()) {
$book_chapters[$book_chapters_data->id] = $book_chapters_data->number . '. ' . $book_chapters_data->name;
}
return $book_chapters;
}
function _ajax_bulk_get_examples($chapter_id = 0)
{
$book_examples = array(
'0' => 'Please select...'
);
$query = db_select('textbook_companion_example');
$query->fields('textbook_companion_example');
$query->condition('chapter_id', $chapter_id);
$book_examples_q = $query->execute();
while ($book_examples_data = $book_examples_q->fetchObject()) {
$book_examples[$book_examples_data->id] = $book_examples_data->number . ' (' . $book_examples_data->caption . ')';
}
return $book_examples;
}
function _bulk_list_book_actions()
{
$book_actions = array(
'0' => 'Please select...'
);
$book_actions[1] = 'Approve Entire Book';
$book_actions[2] = 'Pending Review Entire Book';
$book_actions[3] = 'Dis-Approve Entire Book (This will delete all the examples in the book)';
$book_actions[4] = 'Delete Entire Book Including Proposal';
return $book_actions;
}
function _bulk_list_chapter_actions()
{
$chapter_actions = array(
'0' => 'Please select...'
);
$chapter_actions[1] = 'Approve Entire Chapter';
$chapter_actions[2] = 'Pending Review Entire Chapter';
$chapter_actions[3] = 'Dis-Approve Entire Chapter (This will delete all the examples in the chapter)';
return $chapter_actions;
}
function _bulk_list_example_actions()
{
$example_actions = array(
'0' => 'Please select...'
);
$example_actions[1] = 'Approve Approve Example';
$example_actions[2] = 'Pending Review Example';
$example_actions[3] = 'Dis-approve Example (This will delete the example)';
return $example_actions;
}
/****************************** Ajax Callback function ********************/
function ajax_bulk_chapter_list_callback($form, $form_state)
{
$commands = array();
$book_default_value = $form_state['values']['book'];
if ($book_default_value > 0) {
$commands[] = ajax_command_html('#ajax_selected_book', l('Download', 'textbook-companion/full-download/book/' . $book_default_value) . ' ' . t('(Download all the approved and unapproved examples of the entire book)'));
$form['book_actions']['#options'] = _bulk_list_book_actions();
$commands[] = ajax_command_replace('#ajax_selected_book_action', drupal_render($form['book_actions']));
$form['chapter']['#options'] = _ajax_bulk_get_chapter_list($book_default_value);
$commands[] = ajax_command_replace('#ajax_select_chapter_list', drupal_render($form['chapter']));
$commands[] = ajax_command_html('#ajax_download_chapter', '');
$form['chapter_actions']['#options'] = _bulk_list_book_actions();
$commands[] = ajax_command_replace('#ajax_selected_chapter_action', drupal_render($form['chapter_actions']));
$commands[] = ajax_command_html('#ajax_selected_chapter_action', '');
$commands[] = ajax_command_html('#ajax_selected_example', '');
$form['example_actions']['#options'] = _bulk_list_example_actions();
$commands[] = ajax_command_replace('#ajax_selected_example_action', drupal_render($form['example_actions']));
$commands[] = ajax_command_html('#ajax_selected_example_action', '');
$commands[] = ajax_command_html('#ajax_download_selected_example', '');
$commands[] = ajax_command_html('#ajax_edit_selected_example', '');
$form['example_files']['#title'] = '';
$form['example_files']['#markup'] = '';
$commands[] = ajax_command_replace('#ajax_example_files_list', drupal_render($form['example_files']));
} else {
$commands[] = ajax_command_html('#ajax_selected_book', '');
$commands[] = ajax_command_html('#ajax_selected_book_pdf', '');
$commands[] = ajax_command_html('#ajax_selected_book_regenerate_pdf', '');
$commands[] = ajax_command_html('#ajax_selected_book_notes', '');
$form['chapter']['#options'] = _ajax_bulk_get_chapter_list();
$commands[] = ajax_command_replace('#ajax_select_chapter_list', drupal_render($form['chapter']));
$commands[] = ajax_command_html('#ajax_select_chapter_list', '');
$form['book_actions']['#options'] = _bulk_list_book_actions();
$commands[] = ajax_command_replace('#ajax_selected_book_action', drupal_render($form['book_actions']));
$commands[] = ajax_command_html('#ajax_selected_book_action', '');
$form['chapter_actions']['#options'] = _bulk_list_chapter_actions();
$commands[] = ajax_command_replace('#ajax_selected_chapter_action', drupal_render($form['chapter_actions']));
$commands[] = ajax_command_html('#ajax_selected_chapter_action', '');
$commands[] = ajax_command_html('#ajax_download_chapter', '');
$commands[] = ajax_command_html('#ajax_selected_example', '');
$form['example_actions']['#options'] = _bulk_list_example_actions();
$commands[] = ajax_command_replace('#ajax_selected_example_action', drupal_render($form['example_actions']));
$commands[] = ajax_command_html('#ajax_selected_example_action', '');
$commands[] = ajax_command_html('#ajax_download_selected_example', '');
$commands[] = ajax_command_html('#ajax_edit_selected_example', '');
$form['example_files']['#title'] = '';
$form['example_files']['#markup'] = '';
$commands[] = ajax_command_replace('#ajax_example_files_list', drupal_render($form['example_files']));
}
return array(
'#type' => 'ajax',
'#commands' => $commands
);
}
function ajax_bulk_example_list_callback($form, $form_state)
{
$commands = array();
$chapter_default_value = $form_state['values']['chapter'];
if ($chapter_default_value > 0) {
$commands[] = ajax_command_html('#ajax_download_chapter', l('Download', 'textbook-companion/full-download/chapter/' . $chapter_default_value) . ' ' . t('(Download all the approved and unapproved examples of the entire chapter)'));
$form['chapter_actions']['#options'] = _bulk_list_chapter_actions();
$commands[] = ajax_command_replace('#ajax_selected_chapter_action', drupal_render($form['chapter_actions']));
$form['example']['#options'] = _ajax_bulk_get_examples($chapter_default_value);
$commands[] = ajax_command_replace('#ajax_selected_example', drupal_render($form['example']));
$commands[] = ajax_command_html('#ajax_download_selected_example', '');
$commands[] = ajax_command_html('#ajax_edit_selected_example', '');
$form['example_actions']['#options'] = _bulk_list_example_actions();
$commands[] = ajax_command_replace('#ajax_selected_example_action', drupal_render($form['example_actions']));
$commands[] = ajax_command_html('#ajax_selected_example_action', '');
$form['example_files']['#title'] = '';
$form['example_files']['#markup'] = '';
$commands[] = ajax_command_replace('#ajax_example_files_list', drupal_render($form['example_files']));
} else {
$commands[] = ajax_command_html('#ajax_download_chapter', '');
$form['chapter_actions']['#options'] = _bulk_list_chapter_actions();
$commands[] = ajax_command_replace('#ajax_selected_chapter_action', drupal_render($form['chapter_actions']));
$commands[] = ajax_command_html('#ajax_selected_chapter_action', '');
$form['example']['#options'] = _ajax_bulk_get_examples();
$commands[] = ajax_command_replace('#ajax_selected_example', drupal_render($form['example']));
$commands[] = ajax_command_html('#ajax_selected_example', '');
$commands[] = ajax_command_html('#ajax_download_selected_example', '');
$commands[] = ajax_command_html('#ajax_edit_selected_example', '');
$form['example_files']['#title'] = '';
$form['example_files']['#markup'] = '';
$commands[] = ajax_command_replace('#ajax_example_files_list', drupal_render($form['example_files']));
$form['example_actions']['#options'] = _bulk_list_example_actions();
$commands[] = ajax_command_replace('#ajax_selected_example_action', drupal_render($form['example_actions']));
$commands[] = ajax_command_html('#ajax_selected_example_action', '');
}
return array(
'#type' => 'ajax',
'#commands' => $commands
);
}
function ajax_bulk_example_files_callback($form, $form_state)
{
$commands = array();
$example_list_default_value = $form_state['values']['example'];
//var_dump($example_list_default_value);
if ($example_list_default_value > 0) {
$query = db_select('textbook_companion_example_files');
$query->fields('textbook_companion_example_files');
$query->condition('example_id', $example_list_default_value);
$example_list_q = $query->execute();
if ($example_list_q) {
$example_files_rows = array();
while ($example_list_data = $example_list_q->fetchObject()) {
$example_file_type = '';
switch ($example_list_data->filetype) {
case 'S':
$example_file_type = 'Source or Main file';
break;
case 'R':
$example_file_type = 'Result file';
break;
case 'X':
$example_file_type = 'xcos file';
break;
default:
$example_file_type = 'Unknown';
break;
}
$example_files_rows[] = array(
l($example_list_data->filename, 'textbook-companion/download/file/' . $example_list_data->id),
$example_file_type
);
}
/* creating list of files table */
$example_files_header = array(
'Filename',
'Type'
);
$example_files = theme('table', array(
'header' => $example_files_header,
'rows' => $example_files_rows
));
$form['example_files']['#title'] = 'List of example files';
$form['example_files']['#markup'] = $example_files;
$commands[] = ajax_command_replace('#ajax_example_files_list', drupal_render($form['example_files']));
$commands[] = ajax_command_html('#ajax_download_selected_example', l('Download Example', 'textbook-companion/download/example/' . $example_list_default_value));
$commands[] = ajax_command_html('#ajax_edit_selected_example', l('Edit Example', 'code_approval/editcode/' . $example_list_default_value));
$form['example_actions']['#options'] = _bulk_list_example_actions();
$commands[] = ajax_command_replace('#ajax_selected_example_action', drupal_render($form['example_actions']));
}
} else {
$commands[] = ajax_command_html('#ajax_download_selected_example', '');
$commands[] = ajax_command_html('#ajax_edit_selected_example', '');
$form['example_files']['#title'] = '';
$form['example_files']['#markup'] = '';
$commands[] = ajax_command_replace('#ajax_example_files_list', drupal_render($form['example_files']));
$form['example_actions']['#options'] = _bulk_list_example_actions();
$commands[] = ajax_command_replace('#ajax_selected_example_action', drupal_render($form['example_actions']));
$commands[] = ajax_command_html('#ajax_selected_example_action', '');
}
return array(
'#type' => 'ajax',
'#commands' => $commands
);
}
function ajax_bulk_chapter_actions_callback()
{
return array(
'#type' => 'ajax',
'#commands' => $commands
);
}
function edit_code_submission()
{
/* get pending proposals to be approved */
$proposal_rows = array();
$query = db_select('textbook_companion_proposal');
$query->fields('textbook_companion_proposal');
$query->condition('proposal_status', 1);
$query->orderBy('id', 'DESC');
$proposal_q = $query->execute();
while ($proposal_data = $proposal_q->fetchObject()) {
/* get preference */
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('proposal_id', $proposal_data->id);
$query->condition('approval_status', 1);
$query->condition('submited_all_examples_code', 1);
$query->range(0, 1);
$preference_q = $query->execute();
$preference_data = $preference_q->fetchObject();
if (!$preference_data) {
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('proposal_id', $proposal_data->id);
$query->condition('pref_number', 1);
//$query->condition('approval_status', 0);
$query->range(0, 1);
$preference_q = $query->execute();
$preference_data = $preference_q->fetchObject();
}
$proposal_status = '';
switch ($preference_data->submited_all_examples_code) {
case 0:
$proposal_status = 'Code Submission Pending';
break;
case 1:
$proposal_status = 'Submitted code for all exmample for book';
break;
}
$proposal_rows[] = array(
"{$preference_data->book} <br>
<em>by {$preference_data->author}</em>",
l($proposal_data->full_name, 'user/' . $proposal_data->uid),
$proposal_status,
l('Edit', 'textbook-companion/code-approval/edit-code-submission/edit/' . $preference_data->id)
);
}
/* check if there are any pending proposals */
if (!$proposal_rows) {
drupal_set_message(t('There are no proposals.'), 'status');
return '';
}
$proposal_header = array(
'Title of the Book',
'Contributor Name',
'Status',
'Action'
);
$output = theme('table', array(
'header' => $proposal_header,
'rows' => $proposal_rows
));
return $output;
}
function get_edit_code_submission($id = NULL)
{
if ($id) {
return drupal_get_form('edit_code_submission_form', $id);
} else {
return 'Access denied';
}
}
function edit_code_submission_form($form, $form_state, $preference_id)
{
/* get current proposal */
$preference_id = arg(4);
$query = db_select('textbook_companion_preference');
$query->fields('textbook_companion_preference');
$query->condition('id', $preference_id);
$preference_data = $query->execute()->fetchObject();
if (!$preference_data) {
drupal_set_message(t('Invalid book selected. Please try again.'), 'error');
drupal_goto('textbook-companion/code-approval/edit-code-submission');
return;
}
$form = array();
$form['book'] = array(
'#type' => 'item',
'#title' => t('Title of the book'),
'#markup' => $preference_data->book
);
$form['author'] = array(
'#type' => 'item',
'#title' => t('Author Name'),
'#markup' => $preference_data->author
);
$form['isbn'] = array(
'#type' => 'item',
'#title' => t('ISBN No'),
'#markup' => $preference_data->isbn
);
$form['publisher'] = array(
'#type' => 'item',
'#title' => t('Publisher & Place'),
'#markup' => $preference_data->publisher
);
$form['edition'] = array(
'#type' => 'item',
'#title' => t('Edition'),
'#markup' => $preference_data->edition
);
$form['year'] = array(
'#type' => 'item',
'#title' => t('Year of pulication'),
'#markup' => $preference_data->year
);
$form['all_example_submitted'] = array(
'#type' => 'checkbox',
'#title' => t('Enable code submission interface for user'),
'#description' => 'Once you have submited this option user can upload more examples.',
'#required' => TRUE
);
$form['hidden_preference_id'] = array(
'#type' => 'hidden',
'#value' => $preference_id
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Submit')
);
$form['cancle'] = array(
'#type' => 'item',
'#markup' => l('Cancle', 'textbook-companion/code-approval/edit-code-submission')
);
return $form;
}
function edit_code_submission_form_validate($form, $form_state)
{
if ($form_state['values']['all_example_submitted'] != 1) {
form_set_error('all_example_submitted', t('Please check the field if you are intrested to submit the all uploaded examples for review!'));
}
return;
}
function edit_code_submission_form_submit($form, $form_state)
{
global $user;
if ($form_state['values']['all_example_submitted'] == 1) {
if (db_query('UPDATE textbook_companion_preference SET submited_all_examples_code = 0 WHERE id = :preference_id', array(
':preference_id' => $form_state['values']['hidden_preference_id']
))) {
$query = ("SELECT proposal_id FROM textbook_companion_preference WHERE id= :preference_id");
$args = array(
":preference_id" => $form_state['values']['hidden_preference_id']
);
$proposal_data = db_query($query, $args);
$proposal_data_result = $proposal_data->fetchObject();
$proposal_query = db_select('textbook_companion_proposal');
$proposal_query->fields('textbook_companion_proposal');
$proposal_query->condition('proposal_status', 1);
$proposal_query->condition('id', $proposal_data_result->proposal_id);
$proposal_data_query = $proposal_query->execute()->fetchObject();
/* sending email */
$book_user = user_load($proposal_data_query->uid);
$email_to = $book_user->mail;
$from = variable_get('textbook_companion_from_email', '');
$bcc = variable_get('textbook_companion_emails', '');
$cc = variable_get('textbook_companion_cc_emails', '');
$param['all_code_submitted_status_changed']['proposal_id'] = $proposal_data_result->proposal_id;
$param['all_code_submitted_status_changed']['user_id'] = $user->uid;
$param['all_code_submitted_status_changed']['headers'] = array(
'From' => $from,
'MIME-Version' => '1.0',
'Content-Type' => 'text/plain; charset=UTF-8; format=flowed; delsp=yes',
'Content-Transfer-Encoding' => '8Bit',
'X-Mailer' => 'Drupal',
'Cc' => $cc,
'Bcc' => $bcc
);
if (!drupal_mail('textbook_companion', 'all_code_submitted_status_changed', $email_to, language_default(), $param, $from, TRUE))
drupal_set_message('Error sending email message.', 'error');
drupal_set_message('Enabled code submission interface for user');
drupal_goto('textbook-companion/code-approval/edit-code-submission');
}
}
}
|