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
|
<?php $page_settings = array( 'formid' => 'Chat', // for permission 'section' => 'Master', // parent/page title 'subsection' => 'Chat Room', // page title 'domain' => 'chat', // table/model name 'access' => 'GNr', // for permission ); require_once "check_login.php";
$sql = "select profile_id,user_id from `profile_user` as tb where user_id = ? and deleted = ? LIMIT 1"; $parameters = array($_SESSION['cmsloginid'], 0); $row_profile = bind_pdo($sql, $parameters, "selectone");
$type = "";
$where_clause = ""; $parameters = array(0);
if ($_SESSION["cmsrole"] == "super_admin" || $_SESSION["cmsrole"] == "admin") { if ((int)$_GET["type"] == 1) { $type = "TUTOR"; } else if ((int)$_GET["type"] == 2) { $type = "STUDENT"; }
} else {
if ($_SESSION["is_tutor"] == 1) { $where_clause = " and ((chat.from_id = ? and chat.from_role = ?) or (chat.to_id = ? and chat.to_role = ?)) "; $parameters[] = $_SESSION['member_login']; $parameters[] = "TUTOR"; $parameters[] = $_SESSION['member_login']; $parameters[] = "TUTOR";
} else if ($_SESSION["is_student"] == 1) { $where_clause = " and ((chat.from_id = ? and chat.from_role = ?) or (chat.to_id = ? and chat.to_role = ?)) "; $parameters[] = $_SESSION['student_login']; $parameters[] = "STUDENT"; $parameters[] = $_SESSION['student_login']; $parameters[] = "STUDENT";
} }
/*$sql = "select chat.*, chat.sent_date, chat.approved, chat.first_chat, tutor_main.nickname, tutor_main.id as tutormain_id, student_main.contactname, student_main.id as studentmain_id, tutor_main.cmsloginid as tutor_cmsloginid, student_main.cmsloginid as student_cmsloginid, chat.studentpostjob_id, tutor_main.profilephoto_path from chat INNER JOIN tutor_main ON ( ((tutor_main.id = chat.from_id and chat.from_role = 'TUTOR') or (tutor_main.id = chat.to_id and chat.to_role = 'TUTOR')) ) INNER JOIN student_main ON ( ((student_main.id = chat.from_id and chat.from_role = 'STUDENT') or (student_main.id = chat.to_id and chat.to_role = 'STUDENT')) ) where chat.id > ? {$where_clause} group by chat.first_chat_id order by chat.sent_date DESC";*/
$sql = "select * from chat where chat.id > ? {$where_clause} group by chat.first_chat_id order by chat.sent_date DESC";
/*echo dump_sql($sql, $parameters); exit;*/ //debug_log(123, dump_sql($sql, $parameters)); $chats = bind_pdo($sql, $parameters, "selectall"); /*$parameters2 = array(); foreach ($parameters as $key => $parameter) { if ($key > 0) { $parameters2[] = $parameter; } }*/
foreach ($chats as $key => $row) {
if ($row["from_role"] == "STUDENT") { $sql = "select * from student_main where id = ? order by student_no DESC"; $parameters = array($row["from_id"]); $student_info = bind_pdo($sql, $parameters, "selectone"); } else if ($row["from_role"] == "TUTOR") { //$tutor_info = get_tutor($row["from_id"]);
$sql = "select * from tutor_main where id = ? order by tutor_no DESC"; $parameters = array($row["from_id"]); $tutor_info = bind_pdo($sql, $parameters, "selectone"); }
if ($row["to_role"] == "STUDENT") { $sql = "select * from student_main where id = ? order by student_no DESC"; $parameters = array($row["to_id"]); $student_info = bind_pdo($sql, $parameters, "selectone"); } else if ($row["to_role"] == "TUTOR") { //$tutor_info = get_tutor($row["to_id"]);
$sql = "select * from tutor_main where id = ? order by tutor_no DESC"; $parameters = array($row["to_id"]); $tutor_info = bind_pdo($sql, $parameters, "selectone"); }
$chats[$key]["nickname"] = $tutor_info["nickname"]; $chats[$key]["tutor_no"] = $tutor_info["tutor_no"]; $chats[$key]["tutormain_id"] = $tutor_info["id"]; $chats[$key]["tutor_delete"] = $tutor_info["deleted"]; $chats[$key]["contactname"] = $student_info["contactname"]; $chats[$key]["student_no"] = $student_info["student_no"]; $chats[$key]["studentmain_id"] = $student_info["id"]; $chats[$key]["student_delete"] = $student_info["deleted"]; $chats[$key]["profilephoto_path"] = $tutor_info["profilephoto_path"];
/*$sql = "select chat.*, tutor_main.nickname, tutor_main.id as tutormain_id, student_main.contactname, student_main.id as studentmain_id, tutor_main.profilephoto_path from chat INNER JOIN tutor_main ON ( (tutor_main.id = chat.from_id and chat.from_role = 'TUTOR') or (tutor_main.id = chat.to_id and chat.to_role = 'TUTOR') ) INNER JOIN student_main ON ( (student_main.id = chat.from_id and chat.from_role = 'STUDENT') or (student_main.id = chat.to_id and chat.to_role = 'STUDENT') ) where chat.id > 0 {$where_clause} order by chat.sent_date ASC";*/
$sql2 = "select chat.* from chat where chat.first_chat_id = ? order by chat.sent_date ASC"; $parameters2 = array($row["first_chat_id"]); $chats_detail = bind_pdo($sql2, $parameters2, "selectall");
$not_read = 0; $valid_chat = 0; foreach ($chats_detail as $row2) {
if ((($_SESSION["is_student"] == 1 && $row2["to_id"] == $_SESSION["student_login"]) || ($_SESSION["is_tutor"] == 1 && $row2["to_id"] == $_SESSION["member_login"])) && $row2["approved"] != 1) { //unset($chats[$key]); continue; }
$valid_chat++;
if ((($_SESSION["is_student"] == 1 && $row2["to_id"] == $_SESSION["student_login"]) || ($_SESSION["is_tutor"] == 1 && $row2["to_id"] == $_SESSION["member_login"])) && ($row2["approved"] == 1) && $row2["studentpostjob_id"] == $row["studentpostjob_id"] && empty($row2["read_date"])) { $not_read++; }
if ((($_SESSION["is_student"] == 1 && $row2["from_id"] == $_SESSION["student_login"]) || ($_SESSION["is_tutor"] == 1 && $row2["from_id"] == $_SESSION["member_login"])) && ($row2["deleted"] == 1) && $row2["studentpostjob_id"] == $row["studentpostjob_id"] && empty($row2["read_date"])) { $not_read++; }
//if ($row2["studentpostjob_id"] == $row["studentpostjob_id"]) { $last_sent_date = $row2["sent_date"]; //} }
$chats[$key]["not_read"] = $not_read; //$chats[$key]["last_sent_date"] = $chats_detail[(count($chats_detail) - 1)]["sent_date"]; //$date = new DateTime($last_sent_date); //$chats[$key]["last_sent_date"] = $date->format("Y-m-d"); $chats[$key]["last_sent_date"] = $last_sent_date; if ($valid_chat > 0) { $chats[$key]["detail"] = $chats_detail; } else { unset($chats[$key]); }
}
$sql = "select * from master_type_code where typeid = ? and deleted = ?"; $parameters = array('TEACH_AREACODE', 0); $rows_area = bind_pdo($sql, $parameters, "selectall");
?> <!DOCTYPE html> <html> <head> <?php require_once "_html_head.php"; ?> </head> <body class="hold-transition skin-blue sidebar-mini"> <div class="wrapper">
<?php require_once "_header.php"; ?>
<?php require_once "_menu.php"; ?>
<!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header">
<h1> <?= _lang($page_settings['subsection']) ?> <small><?= _lang("Index") ?></small> </h1>
<ol class="breadcrumb"> <li><?= _lang("Home") ?></li> <li class="active"> <a href="<?= $page_settings['domain'] ?>_index.php"><i class="fa"></i> <?= _lang($page_settings['subsection']) ?> </a></li> </ol>
</section>
<!-- Main content --> <section class="content"> <!-- Your Page Content Here -->
<!-- main table --> <div class="row" style="min-height:700px;"> <div class="col-xs-12"> <div class="box">
<div class="box-body">
<button type='button' class='btn btn-primary' id="chat_content_container_back_btn" style="margin-bottom: 10px; display: none;"> < <?= _lang("Back") ?></button>
<div class="row"> <div class="col-md-3 col-md-12"> <div class="input-group" style="margin-bottom: 10px; width: 100%;"> <input type="text" class="form-control" name="search_word" id="search_word" placeholder="<?= _lang("Search") ?>"> <span class="input-group-btn"> <button class="btn btn-primary" type="button" onclick="search_chat()"><?= _lang("Search") ?></button> </span> </div><!-- /input-group -->
</div> </div>
<div class="row"> <div class="col-md-3 col-md-12"> <button type="button" class="btn btn-primary" id="chat_job_list" style=""><?= _lang("Job List") ?></button> <?php if ($_SESSION["is_tutor"] == 1) { ?> <button type="button" class="btn btn-primary" id="chat_user_list" style="background-color: grey"><?= _lang("Student List") ?></button> <?php } ?>
<?php if ($_SESSION["is_student"] == 1) { ?> <button type="button" class="btn btn-primary" id="chat_user_list" style="background-color: grey"><?= _lang("Tutor List") ?></button> <?php } ?> </div> </div>
<div class="col-md-3 chat_job_list_container chat_list" style="max-height: 500px; overflow-x: hidden; overflow-y: scroll; margin-bottom: 10px;padding: 0; display: block;" id="chat_list"> <?php foreach ($chats as $chat) { $job_info = get_studentpostjob2($chat["studentpostjob_id"]);
//update chat limit $sql3 = "update chat set chat.chat_limit = ? where (select count(*) from `order` where `order`.status = ? and `order`.deleted = ? and `order`.tutormain_id = ? and `order`.studentmain_id = ? ) > ? and chat.first_chat_id = ? and chat.chat_limit <= ?"; $parameters3 = array(99999, "paid", 0, $chat["tutormain_id"], $chat["studentmain_id"], 0, $chat["first_chat_id"], 1000);
bind_pdo($sql3, $parameters3);
?> <?php if ($_SESSION["is_tutor"] == 1 || $type == "TUTOR") { ?>
<div class="col-xs-12 chat_item" id="first_chat_id_<?= $chat["first_chat_id"] ?>" style="border: 1px solid #000; width: 100%; padding: 10px; cursor:pointer;position: relative;" onclick="chat_content(<?= $chat["studentpostjob_id"] ?>, <?= $chat["tutormain_id"] ?>, 'TUTOR', 0, <?= $chat["first_chat_id"] ?>)">
<?php if ((int)$chat["not_read"] > 0) { ?> <div class="chat_notification" style="position:absolute; top:0; right: 0;"> <span class="badge chat_not_read"><?= (int)$chat["not_read"] ?></span> </div> <?php } ?>
<div class="col-xs-3 padding0"> <img src="dist/img/user2-160x160.jpg" class="width100p"> </div>
<div class="col-xs-9" style="padding-right: 0;padding-left: 3px;"> <?php echo "<span class='job_info'>"; echo _lang("Job No.") . ": " . $job_info["postjob_no"] . "<br>";
echo _lang("Student") . ": " . ($chat["contactname"]) . " (".$chat["student_no"].")</span><br>"; if ($_SESSION["cmsrole"] == "super_admin" || $_SESSION["cmsrole"] == "admin") { echo _lang("Tutor") . ": " . ($chat["nickname"]) ." (".$chat["tutor_no"].")"."</span><br>"; } //echo _lang("Last Login") . ": <br>" . get_last_login_date($chat["student_cmsloginid"]) . "<br><br>"; //echo _lang("Not Read") . ": " . $chat["not_read"] . "<br>";
echo _lang("Last Chat Date") . ": " . $chat["last_sent_date"]; if ($job_info["deleted"] == 1) { echo "<div style='font-size: 12px; color:red;'>" . _lang("This job has deleted.") . "</div>"; } if ($chat["tutor_delete"] == 1 && ($_SESSION["is_student"] == 1 || ($_SESSION["cmsrole"] == "super_admin" || $_SESSION["cmsrole"] == "admin" ))) { echo "<div style='font-size: 12px; color:red;'>" . _lang("This tutor account is inactive.") . "</div>"; } if ($chat["student_delete"] == 1 && ($_SESSION["is_tutor"] == 1 || ($_SESSION["cmsrole"] == "super_admin" || $_SESSION["cmsrole"] == "admin" ))) { echo "<div style='font-size: 12px; color:red;'>" . _lang("This student account is inactive.") . "</div>"; } ?> </div>
</div>
<?php } ?>
<?php if ($_SESSION["is_student"] == 1 || $type == "STUDENT") { ?>
<?php //for ($i = 1; $i <= 10; $i++) { ?> <div class="col-xs-12 chat_item" id="first_chat_id_<?= $chat["first_chat_id"] ?>" style="border: 2px solid #000; width: 100%; padding: 10px; cursor:pointer; position: relative;" onclick="chat_content(<?= $chat["studentpostjob_id"] ?>, <?= $chat["studentmain_id"] ?>, 'STUDENT', <?= $chat["tutormain_id"] ?>, <?= $chat["first_chat_id"] ?>)"> <?php if ((int)$chat["not_read"] > 0) { ?> <div class="chat_notification" style="position:absolute; top:0; right: 0;"> <span class="badge chat_not_read"><?= (int)$chat["not_read"] ?></span> </div> <?php } ?>
<div class="col-xs-3 padding0"> <img src="../file/teacher/<?= $chat["profilephoto_path"] ?>" class="width100p"> </div>
<div class="col-xs-9" style="padding-right: 0;padding-left: 3px;"> <?php echo "<span class='job_info'>"; echo _lang("Job No.") . ": " . $job_info["postjob_no"] . "<br>"; echo _lang("Tutor") . ": " . ($chat["nickname"]) . " (".$chat["tutor_no"].")</span><br>"; if ($_SESSION["cmsrole"] == "super_admin" || $_SESSION["cmsrole"] == "admin") { echo _lang("Student") . ": " . ($chat["contactname"]) ." (".$chat["student_no"].")"."</span><br>"; } //echo _lang("Last Login") . ": " . get_last_login_date($chat["student_cmsloginid"]) ; //echo _lang("Not Read") . ": " . $chat["not_read"] . "<br>"; echo _lang("Last Chat Date") . ": " . $chat["last_sent_date"];
if ($job_info["deleted"] == 1) { echo "<div style='font-size: 12px; color:red;'>" . _lang("This job has deleted.") . "</div>"; } if ($chat["tutor_delete"] == 1 && ($_SESSION["is_student"] == 1 || ($_SESSION["cmsrole"] == "super_admin" || $_SESSION["cmsrole"] == "admin" ))) { echo "<div style='font-size: 12px; color:red;'>" . _lang("This tutor account is inactive.") . "</div>"; } if ($chat["student_delete"] == 1 && ($_SESSION["is_tutor"] == 1 || ($_SESSION["cmsrole"] == "super_admin" || $_SESSION["cmsrole"] == "admin" ))) { echo "<div style='font-size: 12px; color:red;'>" . _lang("This student account is inactive.") . "</div>"; } ?> </div>
</div> <?php //} ?> <?php } ?> <?php } ?> </div>
<div class="col-md-3 chat_user_list_container chat_list" style="max-height: 500px; overflow-x: hidden; overflow-y: scroll; margin-bottom: 10px;padding: 0; display: none;" id="chat_list"> <?php $chat_user_list_array = array(); foreach ($chats as $chat) { $job_info = get_studentpostjob2($chat["studentpostjob_id"]);
?> <?php if (($_SESSION["is_tutor"] == 1 || $type == "TUTOR") && !in_array($chat["studentmain_id"], $chat_user_list_array)) { $chat_user_list_array[] = $chat["studentmain_id"]; ?>
<div class="col-xs-12 chat_item" id="first_chat_id_<?= $chat["first_chat_id"] ?>" style="border: 1px solid #000; width: 100%; padding: 10px; cursor:pointer;position: relative;" onclick="chat_content(<?= $chat["studentpostjob_id"] ?>, <?= $chat["tutormain_id"] ?>, '<?= "TUTOR" ?>', 0)">
<?php if ((int)$chat["not_read"] > 0) { ?> <div class="chat_notification" style="position:absolute; top:0; right: 0;"> <span class="badge chat_not_read"><?= (int)$chat["not_read"] ?></span> </div> <?php } ?>
<div class="col-xs-3 padding0"> <img src="dist/img/user2-160x160.jpg" class="width100p"> </div>
<div class="col-xs-9" style="padding-right: 0;padding-left: 3px;"> <?php echo "<span class='job_info'>"; echo _lang("Job No.") . ": " . $job_info["postjob_no"] . "<br>"; echo _lang("Name") . ": " . ($chat["contactname"]) . "</span><br>"; //echo _lang("Last Login") . ": <br>" . get_last_login_date($chat["student_cmsloginid"]) . "<br><br>"; //echo _lang("Not Read") . ": " . $chat["not_read"] . "<br>"; echo _lang("Last Chat Date") . ": " . $chat["last_sent_date"];
if ($job_info["deleted"] == 1) { echo "<div style='font-size: 12px; color:red;'>" . _lang("This job has deleted.") . "</div>"; } if ($chat["tutor_delete"] == 1 && ($_SESSION["is_student"] == 1 || ($_SESSION["cmsrole"] == "super_admin" || $_SESSION["cmsrole"] == "admin" ))) { echo "<div style='font-size: 12px; color:red;'>" . _lang("This tutor account is inactive.") . "</div>"; } if ($chat["student_delete"] == 1 && ($_SESSION["is_tutor"] == 1 || ($_SESSION["cmsrole"] == "super_admin" || $_SESSION["cmsrole"] == "admin" ))) { echo "<div style='font-size: 12px; color:red;'>" . _lang("This student account is inactive.") . "</div>"; } ?> </div>
</div>
<?php } ?>
<?php if (($_SESSION["is_student"] == 1 || $type == "STUDENT") && !in_array($chat["tutormain_id"], $chat_user_list_array)) { $chat_user_list_array[] = $chat["tutormain_id"]; ?>
<?php //for ($i = 1; $i <= 10; $i++) { ?> <div class="col-xs-12 chat_item" id="first_chat_id_<?= $chat["first_chat_id"] ?>" style="border: 2px solid #000; width: 100%; padding: 10px; cursor:pointer; position: relative;" onclick="chat_content(<?= $chat["studentpostjob_id"] ?>, <?= $chat["studentmain_id"] ?>, '<?= "STUDENT" ?>', <?= $chat["tutormain_id"] ?>)"> <?php if ((int)$chat["not_read"] > 0) { ?> <div class="chat_notification" style="position:absolute; top:0; right: 0;"> <span class="badge chat_not_read"><?= (int)$chat["not_read"] ?></span> </div> <?php } ?>
<div class="col-xs-3 padding0"> <img src="../file/teacher/<?= $chat["profilephoto_path"] ?>" class="width100p"> </div>
<div class="col-xs-9" style="padding-right: 0;padding-left: 3px;"> <?php echo "<span class='job_info'>"; echo _lang("Job No.") . ": " . $job_info["postjob_no"] . "<br>"; echo _lang("Name") . ": " . ($chat["nickname"]) . "</span><br>"; //echo _lang("Last Login") . ": " . get_last_login_date($chat["student_cmsloginid"]) ; //echo _lang("Not Read") . ": " . $chat["not_read"] . "<br>"; echo _lang("Last Chat Date") . ": " . $chat["last_sent_date"]; if ($job_info["deleted"] == 1) { echo "<div style='font-size: 12px; color:red;'>" . _lang("This job has deleted.") . "</div>"; } if ($chat["tutor_delete"] == 1 && ($_SESSION["is_student"] == 1 || ($_SESSION["cmsrole"] == "super_admin" || $_SESSION["cmsrole"] == "admin" ))) { echo "<div style='font-size: 12px; color:red;'>" . _lang("This tutor account is inactive.") . "</div>"; } if ($chat["student_delete"] == 1 && ($_SESSION["is_tutor"] == 1 || ($_SESSION["cmsrole"] == "super_admin" || $_SESSION["cmsrole"] == "admin" ))) { echo "<div style='font-size: 12px; color:red;'>" . _lang("This student account is inactive.") . "</div>"; } ?> </div>
</div> <?php //} ?> <?php } ?> <?php } ?> </div>
<div class="col-md-9" id="chat_content_container" style="border: 1px solid #000; padding: 15px;"> <div id="chat_job_info"></div> <br>
<div id="chat_content"> <?= _lang("Please select job.") ?> </div>
<div style='font-size: 12px; color:red; display: none;' id="job_deleted"><?= _lang("This job has deleted.") ?></div> <?php if ($_SESSION["cmsrole"] == "user") { ?> <div id="new_chat" style="display: none;"> <br> <textarea style="width:100%;" rows="5" name="content" id="content" placeholder="<?= _lang("Please note the tips below.") ?>"></textarea>
<div class="tr"> <!----> <div id="formalcourse" class="box-body" style="display:none;"> <form action=""> <input type="hidden" name="order_type" value="formal"/> <div class="table_data"> <table width="100%" border="0" cellpadding="0" cellspacing="2"> <tr> <td width="120" align="right" valign="top" class="required_field"> 學習樂器 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group" id="instrumentBox" style="padding-bottom:3px;"></div> </td> </tr> <tr> <td width="120" align="right" valign="top" class="required_field"> 上課地區 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group"> <div id="learnAreaBox"></div> <div style="color:#F00; display:none;" class="error" id="learnAreaError"> 請選擇上課地區 </div> </div> </td> </tr> <tr> <td width="120" align="right" valign="top" class="required_field"> 上課地方 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group"> <div id="teachvenusBox"></div> <div style="color:#F00; display:none;" class="error" id="venusError"> 請選擇上課地方 </div> </div> </td> </tr> <tr> <td width="120" align="right" valign="top" class="required_field"> 學習級數 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group"> <div id="levelBox"> </div> <div style="color:#F00; display:none;" class="error" id="levelError"> 請選擇學習級數 </div> </div> </td> </tr> <tr> <td width="120" align="right" valign="top" class="required_field"> 上課總堂數 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group"> <div> <select class="form-control" name="course_count"> <? for ($i = 2; $i <= 12; $i++) { ?> <option value="<?= $i ?>"><?= $i ?> 堂 </option> <? } ?> </select> </div> </div> </td> </tr> <tr> <td width="120" align="right" valign="top" class="required_field"> 學習時間長度 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group"> <div id="learnTimeBox"> <input type="text" class="form-control" name="datetime" size="50" maxlength="255" value=""> </div> <div style="color:#F00; display:none;" class="error" id="learnTimeError"> 請輸入學習時間長度 </div> </div> </td> </tr> <? if ($row_profile['profile_id'] == 3) { ?> <tr> <td width="120" align="right" valign="top" class="required_field"> 每堂收費 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group"> <div> <input type="text" class="form-control" name="fee" size="3" maxlength="3" value=""> </div> <div style="color:#F00; display:none;" class="error" id="feeError"> 請輸入每堂收費 </div> <div style="color:#F00; display:none;" class="error" id="feeError2"> 請輸入每堂收費不能少於<span></span> </div> <div style="color:#F00; display:none;" class="error" id="feeError3"> 請輸入每堂收費不能多於<span></span> </div> <div style="color:#F00; display:none;" class="error" id="feeError4"> 請先選擇地區/地方/級數/時間長度 </div> </div> </td> </tr> <? } ?> <tr> <td width="120" align="right" valign="top"></td> <td width="5" valign="top" class=""></td> <td class=""> <div class="col-sm-12 form-group"> <button type="button" class="btn btn-primary" id="LiFormalCourseSubmit"><?= _lang('Submit') ?></button> <button type="button" class="btn btn-primary" id="LiFormalCourseCancel"><?= _lang('Cancel') ?></button> </div> </td> </tr> </table> </div> </form> </div> <div id="trycourse" class="box-body" style="display:none;"> <form action=""> <input type="hidden" name="order_type" value="try"/> <div class="table_data"> <table width="100%" border="0" cellpadding="0" cellspacing="2"> <tr> <td width="120" align="right" valign="top" class="required_field"> 學習樂器 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group" id="instrumentBox" style="padding-bottom:3px;"></div> </td> </tr> <tr> <td width="120" align="right" valign="top" class="required_field"> 上課地區 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group"> <div id="learnAreaBox"></div> <div style="color:#F00; display:none;" class="error" id="learnAreaError"> 請選擇上課地區 </div> </div> </td> </tr> <tr> <td width="120" align="right" valign="top" class="required_field"> 上課地方 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group"> <div id="teachvenusBox"></div> <div style="color:#F00; display:none;" class="error" id="venusError"> 請選擇上課地方 </div> </div> </td> </tr> <tr> <td width="120" align="right" valign="top" class="required_field"> 學習級數 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group"> <div id="levelBox"> </div> <div style="color:#F00; display:none;" class="error" id="levelError"> 請選擇學習級數 </div> </div> </td> </tr> <tr> <td width="120" align="right" valign="top" class="required_field"> 上課日期 / 時間 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group"> <div>第一堂(日期 / 時間)</div> <div> <input type="text" class="form-control datetimepicker " name="datetime[]" size="50" maxlength="255" value=""> <div style="color:#F00; display:none;" class="error" id="datetime1Error"> 請輸入第一堂(日期 / 時間) </div> </div> <div style="padding-top:8px;">第二堂(日期 / 時間)</div> <div> <input type="text" class="form-control datetimepicker " name="datetime[]" size="50" maxlength="255" value=""> </div>
<div style="color:#F00; display:none;" class="error" id="datetime2Error"> 請輸入第二堂(日期 / 時間) </div> <div style="color:#F00; display:none;" class="error" id="datetime2Error2"> 不能選擇相同的日期 </div> </div> </td> </tr> <tr> <td width="120" align="right" valign="top" class="required_field"> 學習時間長度 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group"> <div id="learnTimeBox"></div> <div style="color:#F00; display:none;" class="error" id="learnTimeError"> 請輸入學習時間長度 </div> </div> </td> </tr> <tr> <td width="120" align="right" valign="top" class="required_field"> 上課費用 </td> <td width="5" valign="top" class="">: </td> <td class=""> <div class="col-sm-12 form-group" id="LiExtraFee"> 每堂上門附加費 $<span style="font-size:20px;">-</span> </div> <div class="col-sm-12 form-group" id="LiFee">每堂收費 $<span style="font-size:20px;">-</span></div> <div class="col-sm-12 form-group" id="LiTotalFee">總數 $<span style="font-size:20px;">-</span></div> </td> </tr> <tr> <td width="120" align="right" valign="top"></td> <td width="5" valign="top" class=""></td> <td class=""> <div class="col-sm-12 form-group"> <button type="button" class="btn btn-primary" id="LiTestCourseSubmit"><?= _lang('Submit') ?></button> <button type="button" class="btn btn-primary" id="LiTestCourseCancel"><?= _lang('Cancel') ?></button> </div> </td> </tr> </table> </div> </form> </div> <!---->
<div style="font-size: 12px; color: red;"><?= _lang("Mobile no, email address and any contact is not allowed during the conversation.") ?></div> <?php if ($_SESSION["is_tutor"] == 1) { ?> <a href="#formalcourse" class="ContactTutorBTN btn btn-primary" id="course_f_invite_submit" style="margin-top: 10px;"><?= _lang("Formal Course Invite") ?></a> <a href="#trycourse" class="ContactTutorBTN btn btn-primary" id="course_invite_submit" style="margin-top: 10px;"><?= _lang("Try Course Invite") ?></a> <button class="ContactTutorBTN btn btn-primary" type="button" id="contact_student_submit" onclick="contact_student_submit();" style="margin-top: 10px;"><?= _lang("Submit") ?></button> <?php } else if ($_SESSION["is_student"] == 1) { ?> <a href="#formalcourse" class="ContactTutorBTN btn btn-primary" id="course_f_invite_submit" style="margin-top: 10px;"><?= _lang("Formal Course Invite") ?></a> <a href="#trycourse" class="ContactTutorBTN btn btn-primary" id="course_invite_submit" style="margin-top: 10px;"><?= _lang("Try Course Invite") ?></a> <button class="ContactTutorBTN btn btn-primary" type="button" id="contact_tutor_submit" onclick="contact_tutor_submit();" style="margin-top: 10px;"><?= _lang("Submit") ?></button> <?php } ?> </div>
<?php if ($_SESSION["wlangcode"] == "en") { ?> <p style="color: #0012ff;font-size:12px; font-weight:100;">*Tips:<br> 1) Before confirmation and payment for trial lesson, the tutor and student will only have 5 conversation chances <br> 2) We suggest both parties to chat based on the following topics: <br> <span style="padding-left: 20px;"></span>a) Learning location b) Lesson time c) Music background d) Learning objective e) e) Arrangement of instrument and teaching material </p> <?php } else { ?> <p style="color: #0012ff;font-size:12px; font-weight:100;">*提示:<br> 1)於付款確定試堂前,導師與學生有5次來回對話機會 <br> 2)我們建議雙方於對話中就以下內容進行商討: <br> <span style="padding-left: 20px;"></span>a) 教學地點 b) 上課時間 c) 履歷及背景 d) 學習目的 e) 教材及樂器安排 </p> <?php } ?> </div> <?php } ?>
</div> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> <!-- /.col --> </div> <!-- /.row -->
<!-- End of Your Page Content Here -->
</section><!-- /.content --> </div><!-- /.content-wrapper -->
<?php require_once "_footer.php"; ?>
<?php require_once "_aside.php"; ?>
</div><!-- ./wrapper -->
<!-- REQUIRED JS SCRIPTS --> <?php require_once "_html_script.php"; ?> <script type="text/javascript" src="js/jquery-ui-1.11.4/jquery-ui.min.js"></script> <link rel="stylesheet" href="js/jquery-ui-1.11.4/jquery-ui.min.css"> <script type="text/javascript" src="js/jquery-ui-sliderAccess.js"></script> <script type="text/javascript" src="js/jquery-ui-timepicker-addon.js"></script> <link type="text/css" href="css/jquery-ui-timepicker-addon.css" rel="stylesheet"/> <link rel="stylesheet" href="../js/fancybox/jquery.fancybox.css?v=2.1.7" type="text/css" media="screen" /> <script type="text/javascript" src="../js/fancybox/jquery.fancybox.pack.js?v=2.1.7"></script> <script type="text/javascript"> $(function () { $("#course_f_invite_submit, #course_invite_submit").fancybox({ maxWidth : 500, maxHeight : 400, fitToView : false, width : '100%', height : '80%', autoSize : false, closeClick : false, openEffect : 'none', closeEffect : 'none' });
var opt = { // dayNames: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"], dayNamesMin: ["日", "一", "二", "三", "四", "五", "六"], monthNames: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], monthNamesShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], prevText: "上月", nextText: "次月", weekHeader: "週", timeOnlyTitle: "選擇時分秒", timeText: "時間", hourText: "時", minuteText: "分", secondText: "秒", millisecText: "毫秒", timezoneText: "時區", currentText: "現在時間", closeText: "確定", amNames: ["上午", "AM", "A"], pmNames: ["下午", "PM", "P"], // dateFormat: 'yy-mm-dd', stepMinute: 5, minDate: new Date(2016, 9, 1), timeFormat: 'HH:mm:ss', hourMin: 9, hourMax: 22, //minDate: 0 }; $(".datetimepicker").datetimepicker(opt); }); $('#LiTestCourseCancel,#LiFormalCourseCancel').click( function () { $('#trycourse,#formalcourse').hide(); } ); function accept_order(order_id) { jQuery.ajax({ url: '_ajax.php', type: 'POST', data: { ajax: "order", type: "accept", order_id: order_id }, dataType: 'html', //dataType (default: Intelligent Guess (xml, json, script, or html)) timeout: 10000, error: function (result) { alert('Error Occur. Please try again.'); }, success: function (json) { var json = JSON.parse(json); if (json.status == true) { location.href = json.url; } } }); } function reject_order(order_id) { jQuery.ajax({ url: '_ajax.php', type: 'POST', data: { ajax: "order", type: "reject", order_id: order_id }, dataType: 'html', //dataType (default: Intelligent Guess (xml, json, script, or html)) timeout: 10000, error: function (result) { alert('Error Occur. Please try again.'); }, success: function (json) { var json = JSON.parse(json); $("#first_chat_id_" + $("#this_first_chat_id").val()).click(); } }); } function cancel_order(order_id) { jQuery.ajax({ url: '_ajax.php', type: 'POST', data: { ajax: "order", type: "cancel", order_id: order_id }, dataType: 'html', //dataType (default: Intelligent Guess (xml, json, script, or html)) timeout: 10000, error: function (result) { alert('Error Occur. Please try again.'); }, success: function (json) { var json = JSON.parse(json); $("#first_chat_id_" + $("#this_first_chat_id").val()).click(); } }); } function chat_content(job_id, user_id, user_type, tutor_id, first_chat_id) { //hide notification num $("#first_chat_id_" + first_chat_id).find(".chat_notification").hide(); $(".messages-menu .chat_notification").hide();
$('#trycourse').hide(); <?php if ($_SESSION["is_tutor"] == 1) { ?> $("#contact_student_submit").attr("onclick", 'contact_student_submit(' + job_id + ')'); <?php } else if ($_SESSION["is_student"] == 1) { ?> $("#contact_tutor_submit").attr("onclick", 'contact_tutor_submit(' + job_id + ',' + tutor_id + ')'); <?php } ?>
$('html, body').animate({ scrollTop: $("#chat_content_container").offset().top }, 500);
var view_type = "job"; if ($(".chat_user_list_container").css("display") == "block") { view_type = "user"; }
//console.log(view_type);
$("#new_chat").hide(); $("#job_deleted").hide();
jQuery.ajax({ url: '_ajax.php', type: 'POST', data: { ajax: "chat_content", job_id: job_id, user_id: user_id, user_type: user_type, tutor_id: tutor_id, first_chat_id: first_chat_id, view_type: view_type, }, dataType: 'html', //dataType (default: Intelligent Guess (xml, json, script, or html)) timeout: 10000, error: function (result) { //alert('Error Occur. Please try again.'); console.log(result); }, success: function (json) { //console.log(json.result); var json = JSON.parse(json); //console.log(json.result); //$('#loading').slideUp(100); //console.log(result);
if (json.job_deleted == 0) { $("#new_chat").show(); } else { $("#job_deleted").show(); }
if (json.result) { //console.log(json); $('#trycourse input[name="address"],#trycourse input[name="datetime[]"]').val(''); $('#trycourse #instrumentBox,#formalcourse #instrumentBox').html(json.instrumentBox); $('#trycourse #learnAreaBox,#formalcourse #learnAreaBox').html(json.learnAreaBox); $('#trycourse #learnTimeBox,#formalcourse #learnTimeBox').html(json.learnTimeBox); $('#trycourse #teachvenusBox,#formalcourse #teachvenusBox').html(json.teachvenusBox); $('#trycourse #levelBox,#formalcourse #levelBox').html(json.levelBox); $("#chat_content").html(json.result); $('#LiExtraFee span').html('-'); $('#LiFee span').html('-'); $('#LiTotalFee span').html('-');
console.log(json.formal_status); console.log(json.test_status); if (json.formal_status == true) { $('#course_f_invite_submit').show(); //正堂開放 $('#trycourse,#course_invite_submit').hide(); //試堂及正堂box關閉 $('#course_invite_submit').hide(); //試堂關閉 } else { $('#course_f_invite_submit').hide(); //正堂開放 $('#trycourse,#course_invite_submit').hide(); //試堂及正堂box關閉 if(json.test_status == true){ $('#course_invite_submit').show(); //試堂開放 }else{ $('#course_invite_submit').hide(); //試堂關閉 } } // submit $('#LiTestCourseSubmit,#LiFormalCourseSubmit').off('click'); $('#LiTestCourseSubmit,#LiFormalCourseSubmit').on('click', function () { var error = false; var table = $(this).parent().parent().parent().parent().parent().parent().parent().parent(); if (table.attr('id') == 'formalcourse') { var type = 'formal'; } else if (table.attr('id') == 'trycourse') { var type = 'try'; } $('.error', table).hide(); if (!$('select[name="mas_residencecode"]', table).val()) { error = true; $('#learnAreaError', table).show(); } if (!$('select[name="course_venus"]', table).val()) { error = true; $('#venusError', table).show(); } if (!$('select[name="level"]', table).val()) { error = true; $('#levelError', table).show(); } if (type == 'try') { if (!$('input[name="datetime[]"]:eq(0)', table).val()) { error = true; $('#datetime1Error', table).show(); } if (!$('input[name="datetime[]"]:eq(1)', table).val()) { error = true; $('#datetime2Error', table).show(); } if ($('input[name="datetime[]"]:eq(1)', table).val() && $('input[name="datetime[]"]:eq(0)', table).val()) { if ($('input[name="datetime[]"]:eq(0)', table).val() == $('input[name="datetime[]"]:eq(1)', table).val()) { error = true; $('#datetime2Error2', table).show(); } } } if (!$('select[name="course_length"]', table).val()) { error = true; $('#learnTimeError', table).show(); } <? if($row_profile['profile_id'] == 3){?> if (type == 'formal') { if (!$('input[name="fee"]', table).val()) { error = true; $('#feeError', table).show(); } else { if (!($('input[name="fee"]', table).attr('min') && $('input[name="fee"]', table).attr('max'))) { error = true; $('#feeError4', table).show(); } else { if (Number($('input[name="fee"]', table).val()) < Number($('input[name="fee"]', table).attr('min'))) { error = true; $('#feeError2 span', table).html($('input[name="fee"]', table).attr('min')); $('#feeError2', table).show(); } else if (Number($('input[name="fee"]', table).val()) > Number($('input[name="fee"]', table).attr('max'))) { error = true; $('#feeError3 span', table).html($('input[name="fee"]', table).attr('max')); $('#feeError3', table).show(); } } } } <? }?> if (error == false) { jQuery.ajax({ url: '_ajax.php', type: 'POST', data: { ajax: "testcourse_submit", job_id: json.job_id, tutor_id: json.tutor_id, student_id: json.student_id, from_type: json.from_type, first_chat_id: json.first_chat_id, order_type: $('input[name="order_type"]', table).val(), mas_residencecode: $('select[name="mas_residencecode"]', table).val(), course_venus: $('select[name="course_venus"]', table).val(), level: $('select[name="level"]', table).val(), datetime1: $('input[name="datetime[]"]:eq(0)', table).val(), datetime2: $('input[name="datetime[]"]:eq(1)', table).val(), course_length: $('select[name="course_length"]', table).val(), fee: $('input[name="fee"]', table).val(), course_count: $('select[name="course_count"]', table).val() }, dataType: 'html', //dataType (default: Intelligent Guess (xml, json, script, or html)) timeout: 10000, error: function (result) { //alert('Error Occur. Please try again.'); console.log(result.responseText); $("#first_chat_id_" + $("#this_first_chat_id").val()).click(); }, success: function (json) { var json = JSON.parse(json); //console.log(json); if (json.status == false) { alert('等待處理中...'); $('#trycourse,#course_invite_submit,#formalcourse,#course_f_invite_submit').hide(); } else if (json.status == true) { $('#trycourse,#course_invite_submit,#formalcourse,#course_f_invite_submit').hide(); } $("#first_chat_id_" + $("#this_first_chat_id").val()).click(); $.fancybox.close(); } }); } } ); $('select[name="level"],select[name="course_venus"],select[name="course_venus"]').off('change'); $('select[name="level"],select[name="course_venus"],select[name="course_venus"]').on('change', function () { var table = $(this).parent().parent().parent().parent().parent().parent().parent().parent().parent(); if (table.attr('id') == 'formalcourse') { var type = 'formal'; var _formal_status = 'true'; } else if (table.attr('id') == 'trycourse') { var type = 'try'; var _formal_status = 'false'; } jQuery.ajax({ url: '_ajax.php', type: 'POST', data: { ajax: "test_course_length", job_id: json.job_id, tutor_id: json.tutor_id, grade: $(this).val(), formal_status: _formal_status }, dataType: 'html', //dataType (default: Intelligent Guess (xml, json, script, or html)) timeout: 10000, error: function (result) { //alert('Error Occur. Please try again.'); console.log(result); }, success: function (json) { var json = JSON.parse(json); $('#trycourse #learnTimeBox,#formalcourse #learnTimeBox').html(json.learnTimeBox); // $('select[name="mas_residencecode"],select[name="course_length"],select[name="course_venus"]').off('change'); $('select[name="mas_residencecode"],select[name="course_length"],select[name="course_venus"]').on('change', function () { jQuery.ajax({ url: '_ajax.php', type: 'POST', data: { ajax: "test_fee", type: type, job_id: json.job_id, tutor_id: json.tutor_id, level: $('select[name="level"]', table).val(), course_venus: $('select[name="course_venus"]', table).val(), mas_residencecode: $('select[name="mas_residencecode"]', table).val(), course_length: $('select[name="course_length"]', table).val() }, dataType: 'html', //dataType (default: Intelligent Guess (xml, json, script, or html)) timeout: 10000, error: function (result) { //alert('Error Occur. Please try again.'); console.log(result); }, success: function (json) { var json = JSON.parse(json); if (type == 'try') { if (json.fee) { $('#LiExtraFee span', table).html(json.extra_fee); $('#LiFee span', table).html(json.fee); $('#LiTotalFee span', table).html(json.total_fee); } } else if (type == 'formal') { if (json.fee_min && json.fee_max) { $('input[name="fee"]', table).attr('placeholder', ('$' + json.fee_min + ' ~ ' + '$' + json.fee_max)).attr('min', json.fee_min).attr('max', json.fee_max); } else { $('input[name="fee"]', table).attr('placeholder', '-'); } } } }); } ); // } }); } ); } //alert(result); var job_info = $("#first_chat_id_" + $("#this_first_chat_id").val()).find(".job_info").html(); $("#chat_job_info").html(job_info); } }); } function course_invite_submit() { /*$('#trycourse .error').hide(); $('#trycourse').show();*/ } function course_f_invite_submit() { /*$('#formalcourse .error').hide(); $('#formalcourse').show();*/ } <?php if($_SESSION["is_tutor"] == 1){ ?> function contact_student_submit(job_id) { var content = $("#content").val();
if (!job_id) { alert("<?= _lang("Please select job.") ?>"); return; }
if (!content) { alert("<?=_lang("Please enter message.");?>"); return; }
var this_count_chat = $(document).find("#this_count_chat").val(); var this_chat_limit = $(document).find("#this_chat_limit").val();
if (this_count_chat == (parseInt(this_chat_limit) - 1)) { if (confirm("於付款確定試堂前,導師與學生有"+this_chat_limit+"次來回對話機會。這是你最後可發送的訊息,確定要送出?")) { jQuery.ajax({ url: '../_ajax.php', type: 'POST', data: { ajax: "contact_student_submit", job_id: job_id, content: content, }, dataType: 'html', //dataType (default: Intelligent Guess (xml, json, script, or html)) timeout: 10000, error: function (result) { alert('Error Occur. Please try again.'); //console.log(result.responseText); }, success: function (result) { //$('#loading').slideUp(100); //console.log(result); $("#content").val(""); alert(result); $("#first_chat_id_" + $("#this_first_chat_id").val()).click(); } }); } } else { jQuery.ajax({ url: '../_ajax.php', type: 'POST', data: { ajax: "contact_student_submit", job_id: job_id, content: content, }, dataType: 'html', //dataType (default: Intelligent Guess (xml, json, script, or html)) timeout: 10000, error: function (result) { alert('Error Occur. Please try again.'); //console.log(result.responseText); }, success: function (result) { //$('#loading').slideUp(100); //console.log(result); $("#content").val(""); alert(result); $("#first_chat_id_" + $("#this_first_chat_id").val()).click(); } }); }
} <?php } ?>
<?php if($_SESSION["is_student"] == 1){ ?> function contact_tutor_submit(job_id, tutor_id) {
var content = $("#content").val();
if (!job_id) { alert("<?=_lang("Please select job.");?>"); return; }
if (!tutor_id) { alert("<?=_lang("Cannot find tutor id.");?>"); return; }
if (!content) { alert("<?=_lang("Please enter message.");?>"); return; }
var this_count_chat = $(document).find("#this_count_chat").val(); var this_chat_limit = $(document).find("#this_chat_limit").val();
if (this_count_chat == (parseInt(this_chat_limit) - 1)) { if (confirm("於付款確定試堂前,導師與學生有"+this_chat_limit+"次來回對話機會。這是你最後可發送的訊息,確定要送出?")) { jQuery.ajax({ url: '../_ajax.php', type: 'POST', data: { ajax: "contact_tutor_submit", job_id: job_id, tutor_id: tutor_id, content: content, }, dataType: 'html', //dataType (default: Intelligent Guess (xml, json, script, or html)) timeout: 10000, error: function (result) { alert('Error Occur. Please try again.'); //console.log(result.responseText); }, success: function (result) { //$('#loading').slideUp(100); //console.log(result); $("#content").val(""); alert(result); $("#first_chat_id_" + $("#this_first_chat_id").val()).click(); } }); } } else { jQuery.ajax({ url: '../_ajax.php', type: 'POST', data: { ajax: "contact_tutor_submit", job_id: job_id, tutor_id: tutor_id, content: content, }, dataType: 'html', //dataType (default: Intelligent Guess (xml, json, script, or html)) timeout: 10000, error: function (result) { alert('Error Occur. Please try again.'); //console.log(result.responseText); }, success: function (result) { //$('#loading').slideUp(100); //console.log(result); $("#content").val(""); alert(result); $("#first_chat_id_" + $("#this_first_chat_id").val()).click(); } }); }
} <?php } ?>
<?php if($_SESSION["cmsrole"] == "super_admin" || $_SESSION["cmsrole"] == "admin"){ ?> function update_chat_limit(job_id, from_id, to_id) { var chat_limit = $("#chat_limit").val();
jQuery.ajax({ url: '_ajax.php', type: 'POST', data: { ajax: "update_chat_limit", job_id: job_id, from_id: from_id, to_id: to_id, chat_limit: chat_limit, }, dataType: 'html', //dataType (default: Intelligent Guess (xml, json, script, or html)) timeout: 10000, error: function (result) { //alert('Error Occur. Please try again.'); //console.log(result.responseText); }, success: function (result) { //$('#loading').slideUp(100); //console.log(result); alert(result); $("#first_chat_id_" + $("#this_first_chat_id").val()).click(); } }); } <?php } ?>
function search_chat() { var search_word = $("#search_word").val();
if (search_word) { //hide all chat item $(".chat_item").hide(); $(".chat_item").each(function () { var chat_item_text = $(this).text();
if (chat_item_text.indexOf(search_word) != -1) { $(this).show(); } }); } else { $(".chat_item").show(); } }
function chat_for_mobile() { if ($(window).width() <= 768) { //hide chat left $(".chat_list").css("max-height", "100%"); $("#chat_content_container").hide(); } else { $(".chat_list").css("max-height", "800px"); $("#chat_content_container").show(); }
//view_type(); }
function chat_for_mobile2() { //console.log($(window).width());
if ($(window).width() <= 768) { $(".chat_item").on("click", function () { $(".chat_list").hide();
$("#chat_content_container").show(); $("#chat_content_container_back_btn").show();
});
$("#chat_content_container_back_btn").on("click", function () { $(".chat_list").show(); view_type(); $("#chat_content_container").hide(); $("#chat_content_container_back_btn").hide(); }); } else { $("#chat_content_container_back_btn").hide(); $(".chat_list").show(); $("#chat_content_container").show();
view_type(); }
//view_type(); }
function view_type() { if ($("#chat_job_list").hasClass("active")) { $(".chat_job_list_container").show(); $(".chat_user_list_container").hide(); } else if ($("#chat_user_list").hasClass("active")) { $(".chat_user_list_container").show(); $(".chat_job_list_container").hide(); } }
$(function () { chat_for_mobile(); chat_for_mobile2();
/*$(window).resize(function () { chat_for_mobile(); chat_for_mobile2(); });*/
<?php if(isset($_GET["first_chat_id"]) && (int)$_GET["first_chat_id"] > 0){ ?> $("#first_chat_id_<?=(int)$_GET["first_chat_id"]?>").click(); <?php } ?>
$("#chat_job_list").on("click", function () { $(this).css("background-color", "#367fa9"); $(this).addClass("active"); $("#chat_user_list").css("background-color", "grey").removeClass("active");
chat_for_mobile(); chat_for_mobile2();
view_type(); });
$("#chat_user_list").on("click", function () { $(this).css("background-color", "#367fa9"); $(this).addClass("active"); $("#chat_job_list").css("background-color", "grey").removeClass("active");
chat_for_mobile(); chat_for_mobile2(); view_type(); });
$("#chat_job_list").trigger("click"); }); </script> </body> </html>
|