-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview.php
More file actions
2106 lines (1981 loc) · 145 KB
/
view.php
File metadata and controls
2106 lines (1981 loc) · 145 KB
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
<!DOCTYPE html>
<html dir="ltr" lang="en" xml:lang="en">
<head>
//<![CDATA[
var M = {}; M.yui = {};
M.pageloadstarttime = new Date();
M.cfg = {"wwwroot":"https:\/\/moodle.nottingham.ac.uk","sesskey":"6o0f8KrYpd","themerev":"1581530212","slasharguments":1,"theme":"nottingham_science","iconsystemmodule":"core\/icon_system_fontawesome","jsrev":"1581530212","admin":"admin","svgicons":true,"usertimezone":"Asia\/Shanghai","contextid":6224842};var yui1ConfigFn = function(me) {if(/-skin|reset|fonts|grids|base/.test(me.name)){me.type='css';me.path=me.path.replace(/\.js/,'.css');me.path=me.path.replace(/\/yui2-skin/,'/assets/skins/sam/yui2-skin')}};
var yui2ConfigFn = function(me) {var parts=me.name.replace(/^moodle-/,'').split('-'),component=parts.shift(),module=parts[0],min='-min';if(/-(skin|core)$/.test(me.name)){parts.pop();me.type='css';min=''}
if(module){var filename=parts.join('-');me.path=component+'/'+module+'/'+filename+min+'.'+me.type}else{me.path=component+'/'+component+'.'+me.type}};
YUI_config = {"debug":false,"base":"https:\/\/moodle.nottingham.ac.uk\/lib\/yuilib\/3.17.2\/","comboBase":"https:\/\/moodle.nottingham.ac.uk\/theme\/yui_combo.php?","combine":true,"filter":null,"insertBefore":"firstthemesheet","groups":{"yui2":{"base":"https:\/\/moodle.nottingham.ac.uk\/lib\/yuilib\/2in3\/2.9.0\/build\/","comboBase":"https:\/\/moodle.nottingham.ac.uk\/theme\/yui_combo.php?","combine":true,"ext":false,"root":"2in3\/2.9.0\/build\/","patterns":{"yui2-":{"group":"yui2","configFn":yui1ConfigFn}}},"moodle":{"name":"moodle","base":"https:\/\/moodle.nottingham.ac.uk\/theme\/yui_combo.php?m\/1581530212\/","combine":true,"comboBase":"https:\/\/moodle.nottingham.ac.uk\/theme\/yui_combo.php?","ext":false,"root":"m\/1581530212\/","patterns":{"moodle-":{"group":"moodle","configFn":yui2ConfigFn}},"filter":null,"modules":{"moodle-core-languninstallconfirm":{"requires":["base","node","moodle-core-notification-confirm","moodle-core-notification-alert"]},"moodle-core-maintenancemodetimer":{"requires":["base","node"]},"moodle-core-actionmenu":{"requires":["base","event","node-event-simulate"]},"moodle-core-dock":{"requires":["base","node","event-custom","event-mouseenter","event-resize","escape","moodle-core-dock-loader","moodle-core-event"]},"moodle-core-dock-loader":{"requires":["escape"]},"moodle-core-handlebars":{"condition":{"trigger":"handlebars","when":"after"}},"moodle-core-blocks":{"requires":["base","node","io","dom","dd","dd-scroll","moodle-core-dragdrop","moodle-core-notification"]},"moodle-core-event":{"requires":["event-custom"]},"moodle-core-lockscroll":{"requires":["plugin","base-build"]},"moodle-core-popuphelp":{"requires":["moodle-core-tooltip"]},"moodle-core-checknet":{"requires":["base-base","moodle-core-notification-alert","io-base"]},"moodle-core-chooserdialogue":{"requires":["base","panel","moodle-core-notification"]},"moodle-core-dragdrop":{"requires":["base","node","io","dom","dd","event-key","event-focus","moodle-core-notification"]},"moodle-core-tooltip":{"requires":["base","node","io-base","moodle-core-notification-dialogue","json-parse","widget-position","widget-position-align","event-outside","cache-base"]},"moodle-core-formchangechecker":{"requires":["base","event-focus","moodle-core-event"]},"moodle-core-notification":{"requires":["moodle-core-notification-dialogue","moodle-core-notification-alert","moodle-core-notification-confirm","moodle-core-notification-exception","moodle-core-notification-ajaxexception"]},"moodle-core-notification-dialogue":{"requires":["base","node","panel","escape","event-key","dd-plugin","moodle-core-widget-focusafterclose","moodle-core-lockscroll"]},"moodle-core-notification-alert":{"requires":["moodle-core-notification-dialogue"]},"moodle-core-notification-confirm":{"requires":["moodle-core-notification-dialogue"]},"moodle-core-notification-exception":{"requires":["moodle-core-notification-dialogue"]},"moodle-core-notification-ajaxexception":{"requires":["moodle-core-notification-dialogue"]},"moodle-core_availability-form":{"requires":["base","node","event","event-delegate","panel","moodle-core-notification-dialogue","json"]},"moodle-backup-backupselectall":{"requires":["node","event","node-event-simulate","anim"]},"moodle-backup-confirmcancel":{"requires":["node","node-event-simulate","moodle-core-notification-confirm"]},"moodle-course-util":{"requires":["node"],"use":["moodle-course-util-base"],"submodules":{"moodle-course-util-base":{},"moodle-course-util-section":{"requires":["node","moodle-course-util-base"]},"moodle-course-util-cm":{"requires":["node","moodle-course-util-base"]}}},"moodle-course-modchooser":{"requires":["moodle-core-chooserdialogue","moodle-course-coursebase"]},"moodle-course-formatchooser":{"requires":["base","node","node-event-simulate"]},"moodle-course-categoryexpander":{"requires":["node","event-key"]},"moodle-course-dragdrop":{"requires":["base","node","io","dom","dd","dd-scroll","moodle-core-dragdrop","moodle-core-notification","moodle-course-coursebase","moodle-course-util"]},"moodle-course-management":{"requires":["base","node","io-base","moodle-core-notification-exception","json-parse","dd-constrain","dd-proxy","dd-drop","dd-delegate","node-event-delegate"]},"moodle-form-dateselector":{"requires":["base","node","overlay","calendar"]},"moodle-form-passwordunmask":{"requires":[]},"moodle-form-shortforms":{"requires":["node","base","selector-css3","moodle-core-event"]},"moodle-form-showadvanced":{"requires":["node","base","selector-css3"]},"moodle-question-searchform":{"requires":["base","node"]},"moodle-question-chooser":{"requires":["moodle-core-chooserdialogue"]},"moodle-question-preview":{"requires":["base","dom","event-delegate","event-key","core_question_engine"]},"moodle-question-qbankmanager":{"requires":["node","selector-css3"]},"moodle-availability_completion-form":{"requires":["base","node","event","moodle-core_availability-form"]},"moodle-availability_date-form":{"requires":["base","node","event","io","moodle-core_availability-form"]},"moodle-availability_grade-form":{"requires":["base","node","event","moodle-core_availability-form"]},"moodle-availability_group-form":{"requires":["base","node","event","moodle-core_availability-form"]},"moodle-availability_grouping-form":{"requires":["base","node","event","moodle-core_availability-form"]},"moodle-availability_profile-form":{"requires":["base","node","event","moodle-core_availability-form"]},"moodle-mod_aspirelists-inline_display":{"requires":["base","node","event","event-delegate"]},"moodle-mod_assign-history":{"requires":["node","transition"]},"moodle-mod_attendance-groupfilter":{"requires":["base","node"]},"moodle-mod_forum-subscriptiontoggle":{"requires":["base-base","io-base"]},"moodle-mod_quiz-quizbase":{"requires":["base","node"]},"moodle-mod_quiz-util":{"requires":["node","moodle-core-actionmenu"],"use":["moodle-mod_quiz-util-base"],"submodules":{"moodle-mod_quiz-util-base":{},"moodle-mod_quiz-util-slot":{"requires":["node","moodle-mod_quiz-util-base"]},"moodle-mod_quiz-util-page":{"requires":["node","moodle-mod_quiz-util-base"]}}},"moodle-mod_quiz-autosave":{"requires":["base","node","event","event-valuechange","node-event-delegate","io-form"]},"moodle-mod_quiz-questionchooser":{"requires":["moodle-core-chooserdialogue","moodle-mod_quiz-util","querystring-parse"]},"moodle-mod_quiz-toolboxes":{"requires":["base","node","event","event-key","io","moodle-mod_quiz-quizbase","moodle-mod_quiz-util-slot","moodle-core-notification-ajaxexception"]},"moodle-mod_quiz-modform":{"requires":["base","node","event"]},"moodle-mod_quiz-repaginate":{"requires":["base","event","node","io","moodle-core-notification-dialogue"]},"moodle-mod_quiz-dragdrop":{"requires":["base","node","io","dom","dd","dd-scroll","moodle-core-dragdrop","moodle-core-notification","moodle-mod_quiz-quizbase","moodle-mod_quiz-util-base","moodle-mod_quiz-util-page","moodle-mod_quiz-util-slot","moodle-course-util"]},"moodle-message_airnotifier-toolboxes":{"requires":["base","node","io"]},"moodle-filter_glossary-autolinker":{"requires":["base","node","io-base","json-parse","event-delegate","overlay","moodle-core-event","moodle-core-notification-alert","moodle-core-notification-exception","moodle-core-notification-ajaxexception"]},"moodle-filter_mathjaxloader-loader":{"requires":["moodle-core-event"]},"moodle-editor_atto-rangy":{"requires":[]},"moodle-editor_atto-editor":{"requires":["node","transition","io","overlay","escape","event","event-simulate","event-custom","node-event-html5","node-event-simulate","yui-throttle","moodle-core-notification-dialogue","moodle-core-notification-confirm","moodle-editor_atto-rangy","handlebars","timers","querystring-stringify"]},"moodle-editor_atto-plugin":{"requires":["node","base","escape","event","event-outside","handlebars","event-custom","timers","moodle-editor_atto-menu"]},"moodle-editor_atto-menu":{"requires":["moodle-core-notification-dialogue","node","event","event-custom"]},"moodle-editor_ousupsub-rangy":{"requires":[]},"moodle-editor_ousupsub-editor":{"requires":["base","node","event","event-custom","moodle-editor_ousupsub-rangy"]},"moodle-report_eventlist-eventfilter":{"requires":["base","event","node","node-event-delegate","datatable","autocomplete","autocomplete-filters"]},"moodle-report_loglive-fetchlogs":{"requires":["base","event","node","io","node-event-delegate"]},"moodle-gradereport_grader-gradereporttable":{"requires":["base","node","event","handlebars","overlay","event-hover"]},"moodle-gradereport_history-userselector":{"requires":["escape","event-delegate","event-key","handlebars","io-base","json-parse","moodle-core-notification-dialogue"]},"moodle-tool_capability-search":{"requires":["base","node"]},"moodle-tool_lp-dragdrop-reorder":{"requires":["moodle-core-dragdrop"]},"moodle-tool_monitor-dropdown":{"requires":["base","event","node"]},"moodle-assignfeedback_editpdf-editor":{"requires":["base","event","node","io","graphics","json","event-move","event-resize","transition","querystring-stringify-simple","moodle-core-notification-dialog","moodle-core-notification-alert","moodle-core-notification-warning","moodle-core-notification-exception","moodle-core-notification-ajaxexception"]},"moodle-atto_accessibilitychecker-button":{"requires":["color-base","moodle-editor_atto-plugin"]},"moodle-atto_accessibilityhelper-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_align-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_bold-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_charmap-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_clear-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_collapse-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_emoticon-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_equation-button":{"requires":["moodle-editor_atto-plugin","moodle-core-event","io","event-valuechange","tabview","array-extras"]},"moodle-atto_fullscreen-button":{"requires":["event-resize","moodle-editor_atto-plugin"]},"moodle-atto_html-button":{"requires":["promise","moodle-editor_atto-plugin","moodle-atto_html-beautify","moodle-atto_html-codemirror","event-valuechange"]},"moodle-atto_html-codemirror":{"requires":["moodle-atto_html-codemirror-skin"]},"moodle-atto_html-beautify":{},"moodle-atto_image-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_indent-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_italic-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_kalturamedia-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_link-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_managefiles-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_managefiles-usedfiles":{"requires":["node","escape"]},"moodle-atto_media-button":{"requires":["moodle-editor_atto-plugin","moodle-form-shortforms"]},"moodle-atto_noautolink-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_orderedlist-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_recordrtc-button":{"requires":["moodle-editor_atto-plugin","moodle-atto_recordrtc-recording"]},"moodle-atto_recordrtc-recording":{"requires":["moodle-atto_recordrtc-button"]},"moodle-atto_rtl-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_strike-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_subscript-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_superscript-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_table-button":{"requires":["moodle-editor_atto-plugin","moodle-editor_atto-menu","event","event-valuechange"]},"moodle-atto_title-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_underline-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_undo-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-atto_unorderedlist-button":{"requires":["moodle-editor_atto-plugin"]},"moodle-local_kaltura-ltipanel":{"requires":["base","node","panel","node-event-simulate"]},"moodle-local_kaltura-ltitinymcepanel":{"requires":["base","node","panel","node-event-simulate"]},"moodle-local_kaltura-ltiservice":{"requires":["base","node","node-event-simulate"]},"moodle-local_kaltura-lticontainer":{"requires":["base","node"]}}},"gallery":{"name":"gallery","base":"https:\/\/moodle.nottingham.ac.uk\/lib\/yuilib\/gallery\/","combine":true,"comboBase":"https:\/\/moodle.nottingham.ac.uk\/theme\/yui_combo.php?","ext":false,"root":"gallery\/1581530212\/","patterns":{"gallery-":{"group":"gallery"}}}},"modules":{"core_filepicker":{"name":"core_filepicker","fullpath":"https:\/\/moodle.nottingham.ac.uk\/lib\/javascript.php\/1581530212\/repository\/filepicker.js","requires":["base","node","node-event-simulate","json","async-queue","io-base","io-upload-iframe","io-form","yui2-treeview","panel","cookie","datatable","datatable-sort","resize-plugin","dd-plugin","escape","moodle-core_filepicker","moodle-core-notification-dialogue"]},"core_comment":{"name":"core_comment","fullpath":"https:\/\/moodle.nottingham.ac.uk\/lib\/javascript.php\/1581530212\/comment\/comment.js","requires":["base","io-base","node","json","yui2-animation","overlay","escape"]},"mathjax":{"name":"mathjax","fullpath":"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/mathjax\/2.7.2\/MathJax.js?delayStartupUntil=configured"}}};
M.yui.loader = {modules: {}};
//]]>
</script>
<style type="text/css">
<!--
.style1 {
color: #FFFFFF
}
#browser_check {
display: none;
}
-->
</style>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(["setDomains", ["*.moodle.nottingham.ac.uk"]]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//catalyst-analytics.eu/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', '25']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//catalyst-analytics.eu/piwik.php?idsite=25" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body id="page-mod-resource-view" class="format-topics path-mod path-mod-resource chrome dir-ltr lang-en yui-skin-sam yui3-skin-sam moodle-nottingham-ac-uk pagelayout-incourse course-61579 context-6224842 cmid-4108555 category-799 category-215 category-209 ">
<div id="page-wrapper">
<div>
<a class="sr-only sr-only-focusable" href="#maincontent">Skip to main content</a>
</div><script type="text/javascript" src="https://moodle.nottingham.ac.uk/theme/yui_combo.php?rollup/3.17.2/yui-moodlesimple-min.js"></script><script type="text/javascript" src="https://moodle.nottingham.ac.uk/lib/javascript.php/1581530212/lib/javascript-static.js"></script>
<script type="text/javascript">
//<![CDATA[
document.body.className += ' jsenabled';
//]]>
</script>
<div id="browser_check">
<table width="100%" border="0" cellspacing="0" cellpadding="3" height="250">
<tr>
<td bgcolor="#ff0000">
<div align="center"><strong><span class="style1">Your current browser is incompatible with this new version of Moodle. <a href="http://workspace.nottingham.ac.uk/x/05hwC" target="_blank">More Information</a></span></strong>
</div></td>
</tr>
</table>
</div>
<nav class="pos-f-t fixed-top navbar navbar-light bg-white navbar-expand moodle-has-zindex" aria-label="Site navigation">
<div class="container-fluid navbar-nottingham">
<a href="https://moodle.nottingham.ac.uk" class="navbar-brand">
<span class="site-name">moodle.Nottingham</span>
</a>
<ul class="nav-right">
<!-- search_box -->
<li>
<span class="hidden-md-down">
</span>
</li>
<!-- navbar_plugin_output -->
<li>
<div class="pull-right popover-region collapsed">
<a id="message-drawer-toggle-5e7574c1ba9655e7574c1b8ee22" class="nav-link d-inline-block popover-region-toggle position-relative" href="#"
role="button">
<i class="icon fa fa-comment fa-fw " title="Toggle messaging drawer" aria-label="Toggle messaging drawer"></i>
<div class="count-container " data-region="count-container"
aria-label="There are 1 unread conversations">1</div>
</a>
</div><div class="popover-region collapsed popover-region-notifications"
id="nav-notification-popover-container" data-userid="211905"
data-region="popover-region">
<div class="popover-region-toggle nav-link"
data-region="popover-region-toggle"
role="button"
aria-controls="popover-region-container-5e7574c1bc6bf5e7574c1b8ee23"
aria-haspopup="true"
aria-label="Show notification window with no new notifications"
tabindex="0">
<i class="icon fa fa-bell fa-fw " title="Toggle notifications menu" aria-label="Toggle notifications menu"></i>
<div class="count-container " data-region="count-container"
aria-label="There are 2 unread notifications">2</div>
</div>
<div
id="popover-region-container-5e7574c1bc6bf5e7574c1b8ee23"
class="popover-region-container"
data-region="popover-region-container"
aria-expanded="false"
aria-hidden="true"
aria-label="Notification window"
role="region">
<div class="popover-region-header-container">
<h3 class="popover-region-header-text" data-region="popover-region-header-text">Notifications</h3>
<div class="popover-region-header-actions" data-region="popover-region-header-actions"> <a class="mark-all-read-button"
href="#"
title="Mark all as read"
data-action="mark-all-read"
role="button">
<span class="normal-icon"><i class="icon fa fa-check fa-fw " title="Mark all as read" aria-label="Mark all as read"></i></span>
<span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</a>
<a href="https://moodle.nottingham.ac.uk/message/notificationpreferences.php?userid=211905"
title="Notification preferences">
<i class="icon fa fa-cog fa-fw " title="Notification preferences" aria-label="Notification preferences"></i>
</a>
</div>
</div>
<div class="popover-region-content-container" data-region="popover-region-content-container">
<div class="popover-region-content" data-region="popover-region-content">
<div class="all-notifications"
data-region="all-notifications"
role="log"
aria-busy="false"
aria-atomic="false"
aria-relevant="additions"></div>
<div class="empty-message" tabindex="0" data-region="empty-message">You have no notifications</div>
</div>
<span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</div>
<a class="see-all-link"
href="https://moodle.nottingham.ac.uk/message/output/popup/notifications.php">
<div class="popover-region-footer-container">
<div class="popover-region-seeall-text">See all</div>
</div>
</a>
</div>
</div>
</li>
<!-- user_menu -->
<li>
<div class="usermenu"><div class="action-menu moodle-actionmenu nowrap-items d-inline" id="action-menu-1" data-enhance="moodle-core-actionmenu">
<div class="menubar d-flex " id="action-menu-1-menubar" role="menubar">
<div class="action-menu-trigger">
<div class="dropdown">
<a href="#" tabindex="0" class=" dropdown-toggle icon-no-margin" id="dropdown-1" aria-label="User menu" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false" aria-controls="action-menu-1-menu">
<span class="userbutton"><span class="usertext mr-1">Angran ZHOU</span><span class="avatars"><span class="avatar current"><img src="https://moodle.nottingham.ac.uk/theme/image.php/nottingham_science/core/1581530212/u/f2" class="userpicture defaultuserpic" width="35" height="35" role="presentation" aria-hidden="true" /></span></span></span>
<b class="caret"></b>
</a>
<div class="dropdown-menu dropdown-menu-right menu align-tr-br" id="action-menu-1-menu" data-rel="menu-content" aria-labelledby="action-menu-toggle-1" role="menu" data-align="tr-br" id="dropdown-menu-1">
<a href="https://moodle.nottingham.ac.uk/my/" class="dropdown-item menu-action" role="menuitem" data-title="mymoodle,admin" aria-labelledby="actionmenuaction-1">
<i class="icon fa fa-tachometer fa-fw " aria-hidden="true" ></i>
<span class="menu-action-text" id="actionmenuaction-1">
Dashboard
</span>
</a>
<div class="dropdown-divider" role="presentation"><span class="filler"> </span></div>
<a href="https://moodle.nottingham.ac.uk/user/profile.php?id=211905" class="dropdown-item menu-action" role="menuitem" data-title="profile,moodle" aria-labelledby="actionmenuaction-2">
<i class="icon fa fa-user fa-fw " aria-hidden="true" ></i>
<span class="menu-action-text" id="actionmenuaction-2">
Profile
</span>
</a>
<a href="https://moodle.nottingham.ac.uk/grade/report/overview/index.php" class="dropdown-item menu-action" role="menuitem" data-title="grades,grades" aria-labelledby="actionmenuaction-3">
<i class="icon fa fa-table fa-fw " aria-hidden="true" ></i>
<span class="menu-action-text" id="actionmenuaction-3">
Grades
</span>
</a>
<a href="https://moodle.nottingham.ac.uk/message/index.php" class="dropdown-item menu-action" role="menuitem" data-title="messages,message" aria-labelledby="actionmenuaction-4">
<i class="icon fa fa-comment fa-fw " aria-hidden="true" ></i>
<span class="menu-action-text" id="actionmenuaction-4">
Messages
</span>
</a>
<a href="https://moodle.nottingham.ac.uk/user/preferences.php" class="dropdown-item menu-action" role="menuitem" data-title="preferences,moodle" aria-labelledby="actionmenuaction-5">
<i class="icon fa fa-wrench fa-fw " aria-hidden="true" ></i>
<span class="menu-action-text" id="actionmenuaction-5">
Preferences
</span>
</a>
<div class="dropdown-divider" role="presentation"><span class="filler"> </span></div>
<a href="https://moodle.nottingham.ac.uk/login/logout.php?sesskey=6o0f8KrYpd" class="dropdown-item menu-action" role="menuitem" data-title="logout,moodle" aria-labelledby="actionmenuaction-6">
<i class="icon fa fa-sign-out fa-fw " aria-hidden="true" ></i>
<span class="menu-action-text" id="actionmenuaction-6">
Log out
</span>
</a>
</div>
</div>
</div>
</div>
</div></div>
</li>
<li>
<div data-region="drawer-toggle">
<button aria-expanded="false" aria-controls="nav-drawer" type="button" class="btn pull-xs-right ml-1 btn-secondary" data-action="toggle-drawer" data-side="right" data-preference="drawer-open-nav"><i class="icon fa fa-bars fa-fw " aria-hidden="true" ></i><span class="sr-only">Side panel</span></button>
</div>
</li>
</ul>
</div>
</nav>
<div id="page" class="container-fluid">
<header id="page-header" class="row"><div class="col-xs-12 p-t-1"><div class="card"><div class="card-body"><div class="pull-right context-header-settings-menu"></div><div class="pull-left"><div class="page-context-header"><div class="page-header-headings"><h1>Databases and Interfaces (COMP1041 UNNC) (SPC1 19-20)</h1></div></div></div><div class="clearfix w-100 pull-left" id="page-navbar"><div class="breadcrumb-nav pull-left"><nav role="navigation" aria-label="Navigation bar">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="https://moodle.nottingham.ac.uk/my/" >Dashboard</a>
</li>
<li class="breadcrumb-item">My Modules</li>
<li class="breadcrumb-item">
<a href="https://moodle.nottingham.ac.uk/course/view.php?id=61579" title="Databases and Interfaces (COMP1041 UNNC) (SPC1 19-20)">Databases and Interfaces (COMP1041 UNNC) (SPC1 19-20)</a>
</li>
<li class="breadcrumb-item">
<a href="https://moodle.nottingham.ac.uk/course/view.php?id=61579#section-1" >Teaching Material</a>
</li>
<li class="breadcrumb-item">
<a href="https://moodle.nottingham.ac.uk/mod/resource/view.php?id=4108555" aria-current="page" title="File">1) Hosting a PHP page</a>
</li>
</ol>
</nav></div><div class="breadcrumb-button pull-right"></div></div><div id="course-header"></div></div></div></div></header>
<div id="page-content" class="row">
<div id="region-main-box" class="col-12 p-y-1">
<section id="region-main" >
<div class="uon-content">
<span class="notifications" id="user-notifications"></span>
<div role="main"><span id="maincontent"></span><h2>1) Hosting a PHP page</h2><div class="resourceworkaround">Click <a href="https://moodle.nottingham.ac.uk/pluginfile.php/6224842/mod_resource/content/2/hosting_20200307.pdf" onclick="this.target='_blank'">hosting_20200307.pdf</a> link to view the file.</div></div>
<div class="m-t-2 m-b-1 activity-navigation">
<div class="row">
<div class="col-md-4"> <div class="pull-left">
<a href="https://moodle.nottingham.ac.uk/mod/kalvidres/view.php?id=4099554&forceview=1" id="prev-activity-link" class="btn btn-link" title="2.4) Chapter 5: JavaScript and HTML Documents - Part 3 [Video Lecture]" >◄ 2.4) Chapter 5: JavaScript and HTML Documents - Part 3 [Video Lecture]</a>
</div>
</div>
<div class="col-md-4"> <div class="mdl-align">
<div class="urlselect">
<form method="post" action="https://moodle.nottingham.ac.uk/course/jumpto.php" class="form-inline" id="url_select_f5e7574c1b8ee212">
<input type="hidden" name="sesskey" value="6o0f8KrYpd">
<label for="jump-to-activity" class="sr-only">
Jump to...
</label>
<select id="jump-to-activity" class="custom-select urlselect" name="jump"
>
<option value="" selected>Jump to...</option>
value="/mod/quiz/view.php?id=4089744&forceview=1" >Coursework 1 - Mini Quiz 6: Chapter 3 Cascading Style Sheets [Post-lecture Quiz]</option>
<option value="/mod/quiz/view.php?id=4087401&forceview=1" >Coursework 1 - Mini Quiz 7: Chapter 4 The Basics of JavaScript [Pre-lecture Quiz]</option>
<option value="/mod/quiz/view.php?id=4089841&forceview=1" >Coursework 1 - Mini Quiz 8: Chapter 4 The Basics of JavaScript [Post-lecture Quiz]</option>
<option value="/mod/quiz/view.php?id=4087403&forceview=1" >Coursework 1 - Mini Quiz 9: Chapter 5 JavaScript and HTML Documents [Pre-lecture Quiz]</option>
<option value="/mod/quiz/view.php?id=4103451&forceview=1" >Coursework 1 - Mini Quiz 10: Chapter 5 JavaScript and HTML Documents [Post-lecture Quiz]</option>
<option value="/mod/quiz/view.php?id=4110162&forceview=1" >Coursework 1 Mini Quiz 11: Chapter 9 Introduction to PHP [Pre-lecture Quiz - Part 1]</option>
<option value="/mod/quiz/view.php?id=4111110&forceview=1" >Coursework 1 Mini Quiz 12: Chapter 9 Introduction to PHP [Pre-lecture Quiz - Part 2]</option>
<option value="/mod/resource/view.php?id=4089517&forceview=1" >Coursework 1 Issue Sheet - Feedback</option>
<option value="/mod/feedback/view.php?id=4089519&forceview=1" >Coursework 1 - Feedback 1: Online Learning Information Collection</option>
<option value="/mod/feedback/view.php?id=4089637&forceview=1" >Coursework 1 - Feedback 2: Learning Preferences</option>
<option value="/mod/feedback/view.php?id=4102368&forceview=1" >Coursework 1 - Feedback 3: Online Learning Information Collection [Week 2]</option>
<option value="/mod/feedback/view.php?id=4102439&forceview=1" >Coursework 1 - Feedback 4: VARK Modalities</option>
<option value="/mod/feedback/view.php?id=4109859&forceview=1" >Coursework 1 - Feedback 5: Online Learning Information Collection [Week 3]</option>
<option value="/mod/feedback/view.php?id=4109902&forceview=1" >Coursework 1 Feedback 6: Learning Strategies</option>
<option value="/mod/resource/view.php?id=4117042&forceview=1" >Coursework 1 Issue Sheet - Lab Exercises</option>
<option value="/mod/resource/view.php?id=4122743&forceview=1" >Example Instruction 2: Coursework 1 Lab Exercises</option>
<option value="/mod/resource/view.php?id=4122754&forceview=1" >How to Give Peer Mark and Feedback</option>
<option value="/mod/feedback/view.php?id=4123339&forceview=1" >Opinions on Practice Submission for Coursework 1 Lab Exercises</option>
</select>
<noscript>
<input type="submit" class="btn btn-secondary ml-1" value="Go">
</noscript>
</form>
</div>
</div>
</div>
<div class="col-md-4"> <div class="pull-right">
<a href="https://moodle.nottingham.ac.uk/mod/resource/view.php?id=4105961&forceview=1" id="next-activity-link" class="btn btn-link" title="2) Chapter 9: Introduction to PHP [Lecture Slides]" >2) Chapter 9: Introduction to PHP [Lecture Slides] ►</a>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<div
id="message-drawer-5e7574c1bf3da5e7574c1b8ee213"
class="message-drawer bg-light hidden"
aria-expanded="false"
aria-hidden="true"
data-region="message-drawer"
role="region"
>
<div class="header-container position-relative" data-region="header-container">
<div class="hidden border-bottom px-2 py-3" aria-hidden="true" data-region="view-contacts">
<div class="d-flex align-items-center">
<div class="align-self-stretch">
<a class="h-100 d-flex align-items-center mr-2" href="#" data-route-back role="button">
<span class="dir-rtl-hide"><i class="icon fa fa-chevron-left fa-fw " aria-hidden="true" ></i></span>
<span class="dir-ltr-hide"><i class="icon fa fa-chevron-right fa-fw " aria-hidden="true" ></i></span> </a>
</div>
<div>
Contacts
</div>
<div class="ml-auto">
<a href="#" data-route="view-search" role="button" aria-label="Search">
<i class="icon fa fa-search fa-fw " aria-hidden="true" ></i>
</a>
</div>
</div>
</div>
<div
class="hidden bg-white position-relative border-bottom px-2 py-2"
aria-hidden="true"
data-region="view-conversation"
>
<div class="hidden" data-region="header-content"></div>
<div class="hidden" data-region="header-edit-mode">
<div class="d-flex p-2 align-items-center">
Messages selected:
<span class="ml-1" data-region="message-selected-court">1</span>
<button type="button" class="ml-auto close" aria-label="Cancel message selection"
data-action="cancel-edit-mode">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
<div data-region="header-placeholder">
<div class="d-flex">
<div class="align-self-stretch" >
<a class="h-100 mr-2 d-flex align-items-center" href="#" data-route-back role="button">
<span class="dir-rtl-hide"><i class="icon fa fa-chevron-left fa-fw " aria-hidden="true" ></i></span>
<span class="dir-ltr-hide"><i class="icon fa fa-chevron-right fa-fw " aria-hidden="true" ></i></span> </a>
</div>
<div
class="ml-2 rounded-circle bg-pulse-grey align-self-center"
style="height: 38px; width: 38px"
>
</div>
<div class="ml-2 " style="flex: 1">
<div
class="mt-1 bg-pulse-grey w-75"
style="height: 16px;"
>
</div>
</div>
<div
class="ml-2 bg-pulse-grey align-self-center"
style="height: 16px; width: 20px"
>
</div>
</div>
</div>
<div
class="hidden position-absolute"
data-region="confirm-dialogue-container"
style="top: 0; bottom: -1px; right: 0; left: 0; background: rgba(0,0,0,0.3);"
></div>
</div> <div class="border-bottom px-2 py-3" aria-hidden="false" data-region="view-overview">
<div class="d-flex align-items-center">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text pr-0 bg-white">
<i class="icon fa fa-search fa-fw " aria-hidden="true" ></i>
</span>
</div>
<input
type="text"
class="form-control border-left-0"
placeholder="Search"
aria-label="Search"
data-region="view-overview-search-input"
>
</div>
<div class="ml-2">
<a
href="#"
data-route="view-settings"
data-route-param="211905"
aria-label="Settings"
role="button"
>
<i class="icon fa fa-cog fa-fw " aria-hidden="true" ></i>
</a>
</div>
</div>
<div class="text-right mt-3">
<a href="#" data-route="view-contacts" role="button">
<i class="icon fa fa-user fa-fw " aria-hidden="true" ></i>
Contacts
<span class="badge bg-primary ml-2 hidden"
data-region="contact-request-count"
aria-label="There are 0 pending contact requests">
0
</span>
</a>
</div>
</div>
<div class="hidden border-bottom px-2 py-3 view-search" aria-hidden="true" data-region="view-search">
<div class="d-flex align-items-center">
<a
class="mr-2 align-self-stretch d-flex align-items-center"
href="#"
data-route-back
data-action="cancel-search"
role="button"
>
<span class="dir-rtl-hide"><i class="icon fa fa-chevron-left fa-fw " aria-hidden="true" ></i></span>
<span class="dir-ltr-hide"><i class="icon fa fa-chevron-right fa-fw " aria-hidden="true" ></i></span> </a>
<div class="input-group">
<input
type="text"
class="form-control"
placeholder="Search"
aria-label="Search"
data-region="search-input"
>
<div class="input-group-append">
<button
class="btn btn-outline-secondary"
type="button"
data-action="search"
aria-label="Search"
>
<span data-region="search-icon-container">
<i class="icon fa fa-search fa-fw " aria-hidden="true" ></i>
</span>
<span class="hidden" data-region="loading-icon-container">
<span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</span>
</button>
</div>
</div>
</div>
</div>
<div class="hidden border-bottom px-2 py-3" aria-hidden="true" data-region="view-settings">
<div class="d-flex align-items-center">
<div class="align-self-stretch" >
<a class="h-100 d-flex mr-2 align-items-center" href="#" data-route-back role="button">
<span class="dir-rtl-hide"><i class="icon fa fa-chevron-left fa-fw " aria-hidden="true" ></i></span>
<span class="dir-ltr-hide"><i class="icon fa fa-chevron-right fa-fw " aria-hidden="true" ></i></span> </a>
</div>
<div>
Settings
</div>
</div>
</div>
</div>
<div class="body-container position-relative" data-region="body-container">
<div
class="hidden"
data-region="view-contact"
aria-hidden="true"
>
<div class="p-2 pt-3" data-region="content-container"></div>
</div> <div class="hidden h-100" data-region="view-contacts" aria-hidden="true" data-user-id="211905">
<div class="d-flex flex-column h-100">
<div class="p-3 border-bottom">
<ul class="nav nav-pills nav-fill" role="tablist">
<li class="nav-item">
<a
id="contacts-tab-5e7574c1bf3da5e7574c1b8ee213"
class="nav-link active"
href="#contacts-tab-panel-5e7574c1bf3da5e7574c1b8ee213"
data-toggle="tab"
data-action="show-contacts-section"
role="tab"
aria-controls="contacts-tab-panel-5e7574c1bf3da5e7574c1b8ee213"
aria-selected="true"
>
Contacts
</a>
</li>
<li class="nav-item">
<a
id="requests-tab-5e7574c1bf3da5e7574c1b8ee213"
class="nav-link"
href="#requests-tab-panel-5e7574c1bf3da5e7574c1b8ee213"
data-toggle="tab"
data-action="show-requests-section"
role="tab"
aria-controls="requests-tab-panel-5e7574c1bf3da5e7574c1b8ee213"
aria-selected="false"
>
Requests
<span class="badge bg-primary ml-2 hidden"
data-region="contact-request-count"
aria-label="There are 0 pending contact requests">
0
</span>
</a>
</li>
</ul>
</div>
<div class="tab-content d-flex flex-column h-100">
<div
class="tab-pane fade show active h-100 lazy-load-list"
aria-live="polite"
data-region="lazy-load-list"
data-user-id="211905"
id="contacts-tab-panel-5e7574c1bf3da5e7574c1b8ee213"
data-section="contacts"
role="tabpanel"
aria-labelledby="contacts-tab-5e7574c1bf3da5e7574c1b8ee213"
>
<div class="hidden text-center p-2" data-region="empty-message-container">
No contacts
</div>
<div class="hidden list-group" data-region="content-container">
</div>
<div class="list-group" data-region="placeholder-container">
</div>
<div class="w-100 text-center p-3 hidden" data-region="loading-icon-container" >
<span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</div>
</div>
<div
class="tab-pane fade h-100 lazy-load-list"
aria-live="polite"
data-region="lazy-load-list"
data-user-id="211905"
id="requests-tab-panel-5e7574c1bf3da5e7574c1b8ee213"
data-section="requests"
role="tabpanel"
aria-labelledby="requests-tab-5e7574c1bf3da5e7574c1b8ee213"
>
<div class="hidden text-center p-2" data-region="empty-message-container">
No contact requests
</div>
<div class="hidden list-group" data-region="content-container">
</div>
<div class="list-group" data-region="placeholder-container">
</div>
<div class="w-100 text-center p-3 hidden" data-region="loading-icon-container" >
<span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</div>
</div>
</div>
</div>
</div>
<div
class="view-conversation hidden h-100"
aria-hidden="true"
data-region="view-conversation"
data-user-id="211905"
data-midnight="1584720000"
data-message-poll-min="10"
data-message-poll-max="120"
data-message-poll-after-max="300"
style="overflow-y: auto; overflow-x: hidden"
>
<div class="position-relative h-100" data-region="content-container" style="overflow-y: auto; overflow-x: hidden">
<div class="content-message-container hidden h-100 px-2 pt-0" data-region="content-message-container" role="log" style="overflow-y: auto; overflow-x: hidden">
<div class="py-3 bg-light sticky-top z-index-1 border-bottom text-center hidden" data-region="contact-request-sent-message-container">
<p class="m-0">Contact request sent</p>
<p class="font-italic font-weight-light" data-region="text"></p>
</div>
<div class="hidden text-center p-3" data-region="more-messages-loading-icon-container"><span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</div>
</div>
<div class="p-4 w-100 h-100 hidden position-absolute" data-region="confirm-dialogue-container" style="top: 0; background: rgba(0,0,0,0.3);">
<div class="p-3 bg-white" data-region="confirm-dialogue" role="alert">
<h3 class="h6 hidden" data-region="dialogue-header"></h3>
<p class="text-muted" data-region="dialogue-text"></p>
<button type="button" class="btn btn-primary btn-block hidden" data-action="confirm-block">
<span data-region="dialogue-button-text">Block</span>
<span class="hidden" data-region="loading-icon-container"><span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</span>
</button>
<button type="button" class="btn btn-primary btn-block hidden" data-action="confirm-unblock">
<span data-region="dialogue-button-text">Unblock</span>
<span class="hidden" data-region="loading-icon-container"><span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</span>
</button>
<button type="button" class="btn btn-primary btn-block hidden" data-action="confirm-remove-contact">
<span data-region="dialogue-button-text">Remove</span>
<span class="hidden" data-region="loading-icon-container"><span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</span>
</button>
<button type="button" class="btn btn-primary btn-block hidden" data-action="confirm-add-contact">
<span data-region="dialogue-button-text">Add</span>
<span class="hidden" data-region="loading-icon-container"><span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</span>
</button>
<button type="button" class="btn btn-primary btn-block hidden" data-action="confirm-delete-selected-messages">
<span data-region="dialogue-button-text">Delete</span>
<span class="hidden" data-region="loading-icon-container"><span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</span>
</button>
<button type="button" class="btn btn-primary btn-block hidden" data-action="confirm-delete-conversation">
<span data-region="dialogue-button-text">Delete</span>
<span class="hidden" data-region="loading-icon-container"><span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</span>
</button>
<button type="button" class="btn btn-primary btn-block hidden" data-action="request-add-contact">
<span data-region="dialogue-button-text">Send contact request</span>
<span class="hidden" data-region="loading-icon-container"><span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</span>
</button>
<button type="button" class="btn btn-primary btn-block hidden" data-action="accept-contact-request">
<span data-region="dialogue-button-text">Accept and add to contacts</span>
<span class="hidden" data-region="loading-icon-container"><span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</span>
</button>
<button type="button" class="btn btn-secondary btn-block hidden" data-action="decline-contact-request">
<span data-region="dialogue-button-text">Decline</span>
<span class="hidden" data-region="loading-icon-container"><span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</span>
</button>
<button type="button" class="btn btn-secondary btn-block" data-action="cancel-confirm">Cancel</button>
</div>
</div>
<div class="px-2 pb-2 pt-0" data-region="content-placeholder">
<div class="h-100 d-flex flex-column">
<div
class="px-2 pb-2 pt-0 bg-light h-100"
style="overflow-y: auto"
>
<div class="mt-4">
<div class="mb-4">
<div class="mx-auto bg-white" style="height: 25px; width: 100px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
</div> <div class="mt-4">
<div class="mb-4">
<div class="mx-auto bg-white" style="height: 25px; width: 100px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
</div> <div class="mt-4">
<div class="mb-4">
<div class="mx-auto bg-white" style="height: 25px; width: 100px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
</div> <div class="mt-4">
<div class="mb-4">
<div class="mx-auto bg-white" style="height: 25px; width: 100px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
</div> <div class="mt-4">
<div class="mb-4">
<div class="mx-auto bg-white" style="height: 25px; width: 100px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
<div class="d-flex flex-column p-2 bg-white rounded mb-2">
<div class="d-flex align-items-center mb-2">
<div class="mr-2">
<div class="rounded-circle bg-pulse-grey" style="height: 35px; width: 35px"></div>
</div>
<div class="mr-4 w-75 bg-pulse-grey" style="height: 16px"></div>
<div class="ml-auto bg-pulse-grey" style="width: 35px; height: 16px"></div>
</div>
<div class="bg-pulse-grey w-100" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-100 mt-2" style="height: 16px"></div>
<div class="bg-pulse-grey w-75 mt-2" style="height: 16px"></div>
</div>
</div> </div>
</div> </div>
</div>
</div>
<div
class="hidden"
aria-hidden="true"
data-region="view-group-info"
>
<div
class="pt-3 h-100 d-flex flex-column"
data-region="group-info-content-container"
style="overflow-y: auto"
></div>
</div> <div class="h-100 view-overview-body" aria-hidden="false" data-region="view-overview" data-user-id="211905">
<div id="message-drawer-view-overview-container" class="d-flex flex-column h-100" style="overflow-y: auto">
<div
class="section border-0 card"
data-region="view-overview-favourites"
>
<div id="view-overview-favourites-toggle" class="card-header p-0" data-region="toggle">
<button
class="btn btn-link w-100 text-left p-2 d-flex align-items-center overview-section-toggle collapsed"
data-toggle="collapse"
data-target="#view-overview-favourites-target"
aria-expanded="false"
aria-controls="view-overview-favourites-target"
>
<span class="collapsed-icon-container">
<i class="icon fa fa-caret-right fa-fw " aria-hidden="true" ></i>
</span>
<span class="expanded-icon-container">
<i class="icon fa fa-caret-down fa-fw " aria-hidden="true" ></i>
</span>
<span class="font-weight-bold">Starred</span>
<small class="hidden ml-1" data-region="section-total-count-container"
aria-label=" total conversations">
(<span data-region="section-total-count"></span>)
</small>
<span class="hidden ml-2" data-region="loading-icon-container">
<span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</span>
<span class="hidden badge badge-pill badge-primary ml-auto bg-primary"
data-region="section-unread-count"
>
</span>
</button>
</div>
<div
class="collapse border-bottom lazy-load-list"
aria-live="polite"
data-region="lazy-load-list"
data-user-id="211905"
id="view-overview-favourites-target"
aria-labelledby="view-overview-favourites-toggle"
data-parent="#message-drawer-view-overview-container"
>
<div class="hidden text-center p-2" data-region="empty-message-container">
<p class="text-muted mt-2">No starred conversations</p>
</div>
<div class="hidden list-group" data-region="content-container">
</div>
<div class="list-group" data-region="placeholder-container">
<div class="text-center py-2"><span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</div>
</div>
<div class="w-100 text-center p-3 hidden" data-region="loading-icon-container" >
<span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</div>
</div>
</div>
<div
class="section border-0 card"
data-region="view-overview-group-messages"
>
<div id="view-overview-group-messages-toggle" class="card-header p-0" data-region="toggle">
<button
class="btn btn-link w-100 text-left p-2 d-flex align-items-center overview-section-toggle collapsed"
data-toggle="collapse"
data-target="#view-overview-group-messages-target"
aria-expanded="false"
aria-controls="view-overview-group-messages-target"
>
<span class="collapsed-icon-container">
<i class="icon fa fa-caret-right fa-fw " aria-hidden="true" ></i>
</span>
<span class="expanded-icon-container">
<i class="icon fa fa-caret-down fa-fw " aria-hidden="true" ></i>
</span>
<span class="font-weight-bold">Group</span>
<small class="hidden ml-1" data-region="section-total-count-container"
aria-label=" total conversations">
(<span data-region="section-total-count"></span>)
</small>
<span class="hidden ml-2" data-region="loading-icon-container">
<span class="loading-icon icon-no-margin"><i class="icon fa fa-circle-o-notch fa-spin fa-fw " title="Loading" aria-label="Loading"></i></span>
</span>
<span class="hidden badge badge-pill badge-primary ml-auto bg-primary"