-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarkers.html
More file actions
5256 lines (5242 loc) · 404 KB
/
markers.html
File metadata and controls
5256 lines (5242 loc) · 404 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 lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta charset="utf-8"/>
<title> » Markers
</title>
<meta name="author" content=""/>
<meta name="description" content=""/>
<link href="css/template.css" rel="stylesheet" media="all"/>
<!--[if lt IE 9]>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
<![endif]-->
<script src="js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script>
<script src="js/jquery.mousewheel.min.js" type="text/javascript"></script>
<script src="js/bootstrap.js" type="text/javascript"></script>
<script src="js/template.js" type="text/javascript"></script>
<script src="js/prettify/prettify.min.js" type="text/javascript"></script>
<link rel="shortcut icon" href="img/favicon.ico"/>
<link rel="apple-touch-icon" href="img/apple-touch-icon.png"/>
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png"/>
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png"/>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span> <span class="icon-bar"></span>
<span class="icon-bar"></span> </a>
<a class="brand" href="index.html">Exponent v2.6.1</a>
<div class="nav-collapse">
<ul class="nav">
<li class="dropdown">
<a href="#api" class="dropdown-toggle" data-toggle="dropdown">
API Documentation <b class="caret"></b>
</a>
<ul class="dropdown-menu">
</ul>
</li>
<li class="dropdown" id="charts-menu">
<a href="#charts" class="dropdown-toggle" data-toggle="dropdown">
Charts <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li>
<a href="graph_class.html">
<i class="icon-list-alt"></i> Class hierarchy diagram
</a>
</li>
</ul>
</li>
<li class="dropdown" id="reports-menu">
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li>
<a href="errors.html">
<i class="icon-list-alt"></i> Errors
</a>
</li>
<li>
<a href="markers.html">
<i class="icon-list-alt"></i> Markers
</a>
</li>
<li>
<a href="deprecated.html">
<i class="icon-list-alt"></i> Deprecated
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div class="go_to_top">
<a href="#___" style="color: inherit">Back to top  <i class="icon-upload icon-white"></i></a>
</div>
</div>
<div id="___" class="container">
<noscript>
<div class="alert alert-warning">
Javascript is disabled; several features are only available if Javascript is enabled.
</div>
</noscript>
<div class="row">
<div class="span4">
<ul class="side-nav nav nav-list">
<li class="nav-header">Navigation</li>
<li><a href="#framework\modules\core\controllers\expTagController.php"><i class="icon-file"></i> framework\modules\core\controllers\expTagController.php</a></li>
<li><a href="#framework\core\forms\controls\bootstrap3\yuicalendarcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\bootstrap3\yuicalendarcontrol.php</a></li>
<li><a href="#framework\plugins\bootstrap\function.ddrerank.php"><i class="icon-file"></i> framework\plugins\bootstrap\function.ddrerank.php</a></li>
<li><a href="#framework\core\forms\controls\bootstrap\checkboxcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\bootstrap\checkboxcontrol.php</a></li>
<li><a href="#framework\modules\ecommerce\controllers\shippingController.php"><i class="icon-file"></i> framework\modules\ecommerce\controllers\shippingController.php</a></li>
<li><a href="#exponent_constants.php"><i class="icon-file"></i> exponent_constants.php</a></li>
<li><a href="#framework\modules\ecommerce\models\shippingcalculator.php"><i class="icon-file"></i> framework\modules\ecommerce\models\shippingcalculator.php</a></li>
<li><a href="#framework\core\forms\controls\bootstrap5\uploadcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\bootstrap5\uploadcontrol.php</a></li>
<li><a href="#framework\modules\ecommerce\billingcalculators\payflowpro.php"><i class="icon-file"></i> framework\modules\ecommerce\billingcalculators\payflowpro.php</a></li>
<li><a href="#framework\modules\report\controllers\reportController.php"><i class="icon-file"></i> framework\modules\report\controllers\reportController.php</a></li>
<li><a href="#framework\modules\ecommerce\models\shipping.php"><i class="icon-file"></i> framework\modules\ecommerce\models\shipping.php</a></li>
<li><a href="#framework\core\forms\template.php"><i class="icon-file"></i> framework\core\forms\template.php</a></li>
<li><a href="#framework\modules\administration\menus\admin.php"><i class="icon-file"></i> framework\modules\administration\menus\admin.php</a></li>
<li><a href="#framework\core\subsystems\database\odbc.php"><i class="icon-file"></i> framework\core\subsystems\database\odbc.php</a></li>
<li><a href="#install\upgrades\upgrade_forms.php"><i class="icon-file"></i> install\upgrades\upgrade_forms.php</a></li>
<li><a href="#framework\modules\ecommerce\billingcalculators\worldpayCheckout.php"><i class="icon-file"></i> framework\modules\ecommerce\billingcalculators\worldpayCheckout.php</a></li>
<li><a href="#framework\core\forms\controls\jquery\listbuildercontrol.php"><i class="icon-file"></i> framework\core\forms\controls\jquery\listbuildercontrol.php</a></li>
<li><a href="#framework\modules\ecommerce\products\models\product.php"><i class="icon-file"></i> framework\modules\ecommerce\products\models\product.php</a></li>
<li><a href="#framework\plugins\function.chain.php"><i class="icon-file"></i> framework\plugins\function.chain.php</a></li>
<li><a href="#framework\modules\recyclebin\models\recyclebin.php"><i class="icon-file"></i> framework\modules\recyclebin\models\recyclebin.php</a></li>
<li><a href="#framework\core\forms\controls\statescontrol.php"><i class="icon-file"></i> framework\core\forms\controls\statescontrol.php</a></li>
<li><a href="#framework\core\subsystems\expLabels.php"><i class="icon-file"></i> framework\core\subsystems\expLabels.php</a></li>
<li><a href="#framework\core\subsystems\database\sqlsvr.php"><i class="icon-file"></i> framework\core\subsystems\database\sqlsvr.php</a></li>
<li><a href="#framework\modules\events\controllers\eventController.php"><i class="icon-file"></i> framework\modules\events\controllers\eventController.php</a></li>
<li><a href="#framework\modules\company\controllers\companyController.php"><i class="icon-file"></i> framework\modules\company\controllers\companyController.php</a></li>
<li><a href="#framework\core\subsystems\expMail.php"><i class="icon-file"></i> framework\core\subsystems\expMail.php</a></li>
<li><a href="#framework\modules\blog\controllers\blogController.php"><i class="icon-file"></i> framework\modules\blog\controllers\blogController.php</a></li>
<li><a href="#framework\modules\ecommerce\controllers\billingController.php"><i class="icon-file"></i> framework\modules\ecommerce\controllers\billingController.php</a></li>
<li><a href="#framework\modules\forms\controllers\formsController.php"><i class="icon-file"></i> framework\modules\forms\controllers\formsController.php</a></li>
<li><a href="#framework\core\forms\controls\checkboxcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\checkboxcontrol.php</a></li>
<li><a href="#framework\modules\users\models\user.php"><i class="icon-file"></i> framework\modules\users\models\user.php</a></li>
<li><a href="#framework\modules\file\models\expFile.php"><i class="icon-file"></i> framework\modules\file\models\expFile.php</a></li>
<li><a href="#framework\plugins\modifier.convertlangcode.php"><i class="icon-file"></i> framework\plugins\modifier.convertlangcode.php</a></li>
<li><a href="#framework\modules\ecommerce\controllers\orderController.php"><i class="icon-file"></i> framework\modules\ecommerce\controllers\orderController.php</a></li>
<li><a href="#framework\modules\ecommerce\billingcalculators\creditcard.php"><i class="icon-file"></i> framework\modules\ecommerce\billingcalculators\creditcard.php</a></li>
<li><a href="#framework\core\subsystems\expCore.php"><i class="icon-file"></i> framework\core\subsystems\expCore.php</a></li>
<li><a href="#framework\core\subsystems\expTemplate.php"><i class="icon-file"></i> framework\core\subsystems\expTemplate.php</a></li>
<li><a href="#install\pages\install-3.php"><i class="icon-file"></i> install\pages\install-3.php</a></li>
<li><a href="#framework\core\subsystems\expVersion.php"><i class="icon-file"></i> framework\core\subsystems\expVersion.php</a></li>
<li><a href="#framework\core\forms\filetemplate.php"><i class="icon-file"></i> framework\core\forms\filetemplate.php</a></li>
<li><a href="#install\upgrades\upgrade_calendar.php"><i class="icon-file"></i> install\upgrades\upgrade_calendar.php</a></li>
<li><a href="#framework\plugins\newui\function.ddrerank.php"><i class="icon-file"></i> framework\plugins\newui\function.ddrerank.php</a></li>
<li><a href="#framework\core\subsystems\expJavascript.php"><i class="icon-file"></i> framework\core\subsystems\expJavascript.php</a></li>
<li><a href="#framework\modules\ecommerce\definitions\shippingmethods.php"><i class="icon-file"></i> framework\modules\ecommerce\definitions\shippingmethods.php</a></li>
<li><a href="#framework\modules\ecommerce\billingcalculators\passthru.php"><i class="icon-file"></i> framework\modules\ecommerce\billingcalculators\passthru.php</a></li>
<li><a href="#framework\plugins\block.assocarray.php"><i class="icon-file"></i> framework\plugins\block.assocarray.php</a></li>
<li><a href="#framework\core\forms\controls\jquery\calendarcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\jquery\calendarcontrol.php</a></li>
<li><a href="#framework\modules\ecommerce\definitions\orders.php"><i class="icon-file"></i> framework\modules\ecommerce\definitions\orders.php</a></li>
<li><a href="#framework\modules\administration\menus\y-navigation.php"><i class="icon-file"></i> framework\modules\administration\menus\y-navigation.php</a></li>
<li><a href="#framework\core\forms\controls\jquery\yuidatetimecontrol.php"><i class="icon-file"></i> framework\core\forms\controls\jquery\yuidatetimecontrol.php</a></li>
<li><a href="#framework\plugins\function.userlistcontrol.php"><i class="icon-file"></i> framework\plugins\function.userlistcontrol.php</a></li>
<li><a href="#framework\core\subsystems\expTheme.php"><i class="icon-file"></i> framework\core\subsystems\expTheme.php</a></li>
<li><a href="#framework\modules\ealerts\models\expeAlerts.php"><i class="icon-file"></i> framework\modules\ealerts\models\expeAlerts.php</a></li>
<li><a href="#framework\modules\file\controllers\fileController.php"><i class="icon-file"></i> framework\modules\file\controllers\fileController.php</a></li>
<li><a href="#framework\core\forms\formtemplate.php"><i class="icon-file"></i> framework\core\forms\formtemplate.php</a></li>
<li><a href="#framework\core\forms\controls\bootstrap3\uploadcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\bootstrap3\uploadcontrol.php</a></li>
<li><a href="#framework\core\subsystems\database\mysqli.php"><i class="icon-file"></i> framework\core\subsystems\database\mysqli.php</a></li>
<li><a href="#framework\modules\ecommerce\controllers\cartController.php"><i class="icon-file"></i> framework\modules\ecommerce\controllers\cartController.php</a></li>
<li><a href="#framework\core\models\expRecord.php"><i class="icon-file"></i> framework\core\models\expRecord.php</a></li>
<li><a href="#install\index.php"><i class="icon-file"></i> install\index.php</a></li>
<li><a href="#framework\modules\ecommerce\controllers\eventregistrationController.php"><i class="icon-file"></i> framework\modules\ecommerce\controllers\eventregistrationController.php</a></li>
<li><a href="#framework\modules\ecommerce\billingcalculators\paypalExpressCheckout.php"><i class="icon-file"></i> framework\modules\ecommerce\billingcalculators\paypalExpressCheckout.php</a></li>
<li><a href="#framework\modules\ecommerce\models\billingcalculator.php"><i class="icon-file"></i> framework\modules\ecommerce\models\billingcalculator.php</a></li>
<li><a href="#framework\core\forms\controls\bootstrap\radiocontrol.php"><i class="icon-file"></i> framework\core\forms\controls\bootstrap\radiocontrol.php</a></li>
<li><a href="#framework\modules\ecommerce\models\discounts.php"><i class="icon-file"></i> framework\modules\ecommerce\models\discounts.php</a></li>
<li><a href="#framework\modules\ecommerce\billingcalculators\cash.php"><i class="icon-file"></i> framework\modules\ecommerce\billingcalculators\cash.php</a></li>
<li><a href="#framework\core\forms\controls\bootstrap3\listbuildercontrol.php"><i class="icon-file"></i> framework\core\forms\controls\bootstrap3\listbuildercontrol.php</a></li>
<li><a href="#framework\modules\ecommerce\shippingcalculators\fedexcalculator.php"><i class="icon-file"></i> framework\modules\ecommerce\shippingcalculators\fedexcalculator.php</a></li>
<li><a href="#framework\core\forms\controls\htmleditorcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\htmleditorcontrol.php</a></li>
<li><a href="#framework\core\forms\controls\bootstrap\uploadcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\bootstrap\uploadcontrol.php</a></li>
<li><a href="#framework\modules\importexport\controllers\importexportController.php"><i class="icon-file"></i> framework\modules\importexport\controllers\importexportController.php</a></li>
<li><a href="#framework\modules\ecommerce\products\models\eventregistration.php"><i class="icon-file"></i> framework\modules\ecommerce\products\models\eventregistration.php</a></li>
<li><a href="#framework\core\subsystems\expPaginator.php"><i class="icon-file"></i> framework\core\subsystems\expPaginator.php</a></li>
<li><a href="#framework\modules\ecommerce\billingcalculators\paylater.php"><i class="icon-file"></i> framework\modules\ecommerce\billingcalculators\paylater.php</a></li>
<li><a href="#framework\core\subsystems\expPermissions.php"><i class="icon-file"></i> framework\core\subsystems\expPermissions.php</a></li>
<li><a href="#framework\plugins\function.yuimenubar.php"><i class="icon-file"></i> framework\plugins\function.yuimenubar.php</a></li>
<li><a href="#framework\plugins\function.ddrerank.php"><i class="icon-file"></i> framework\plugins\function.ddrerank.php</a></li>
<li><a href="#framework\plugins\function.yuimenu.php"><i class="icon-file"></i> framework\plugins\function.yuimenu.php</a></li>
<li><a href="#framework\modules\core\controllers\expCommentController.php"><i class="icon-file"></i> framework\modules\core\controllers\expCommentController.php</a></li>
<li><a href="#framework\modules\administration\controllers\administrationController.php"><i class="icon-file"></i> framework\modules\administration\controllers\administrationController.php</a></li>
<li><a href="#framework\core\forms\controls\bootstrap4\uploadcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\bootstrap4\uploadcontrol.php</a></li>
<li><a href="#framework\core\subsystems\expSession.php"><i class="icon-file"></i> framework\core\subsystems\expSession.php</a></li>
<li><a href="#framework\core\expFramework.php"><i class="icon-file"></i> framework\core\expFramework.php</a></li>
<li><a href="#framework\modules\help\models\help.php"><i class="icon-file"></i> framework\modules\help\models\help.php</a></li>
<li><a href="#framework\core\subsystems\expSettings.php"><i class="icon-file"></i> framework\core\subsystems\expSettings.php</a></li>
<li><a href="#framework\core\controllers\expController.php"><i class="icon-file"></i> framework\core\controllers\expController.php</a></li>
<li><a href="#framework\modules\ecommerce\controllers\storeCategoryController.php"><i class="icon-file"></i> framework\modules\ecommerce\controllers\storeCategoryController.php</a></li>
<li><a href="#framework\core\forms\controls\jquery\popupdatetimecontrol.php"><i class="icon-file"></i> framework\core\forms\controls\jquery\popupdatetimecontrol.php</a></li>
<li><a href="#framework\modules\ecommerce\controllers\storeController.php"><i class="icon-file"></i> framework\modules\ecommerce\controllers\storeController.php</a></li>
<li><a href="#framework\core\forms\controls\tagtreecontrol.php"><i class="icon-file"></i> framework\core\forms\controls\tagtreecontrol.php</a></li>
<li><a href="#framework\core\subsystems\expModules.php"><i class="icon-file"></i> framework\core\subsystems\expModules.php</a></li>
<li><a href="#framework\modules\eaas\controllers\eaasController.php"><i class="icon-file"></i> framework\modules\eaas\controllers\eaasController.php</a></li>
<li><a href="#framework\modules\ecommerce\products\models\giftcard.php"><i class="icon-file"></i> framework\modules\ecommerce\products\models\giftcard.php</a></li>
<li><a href="#framework\core\subsystems\expHtmlToPDF.php"><i class="icon-file"></i> framework\core\subsystems\expHtmlToPDF.php</a></li>
<li><a href="#framework\modules\ecommerce\shippingcalculators\upscalculator.php"><i class="icon-file"></i> framework\modules\ecommerce\shippingcalculators\upscalculator.php</a></li>
<li><a href="#framework\plugins\bootstrap4\function.ddrerank.php"><i class="icon-file"></i> framework\plugins\bootstrap4\function.ddrerank.php</a></li>
<li><a href="#framework\core\forms\controls\uploadcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\uploadcontrol.php</a></li>
<li><a href="#framework\plugins\bootstrap3\function.ddrerank.php"><i class="icon-file"></i> framework\plugins\bootstrap3\function.ddrerank.php</a></li>
<li><a href="#framework\core\subsystems\expDatabase.php"><i class="icon-file"></i> framework\core\subsystems\expDatabase.php</a></li>
<li><a href="#framework\plugins\function.control.php"><i class="icon-file"></i> framework\plugins\function.control.php</a></li>
<li><a href="#framework\core\forms\controls\yuicalendarcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\yuicalendarcontrol.php</a></li>
<li><a href="#framework\modules\banners\controllers\bannerController.php"><i class="icon-file"></i> framework\modules\banners\controllers\bannerController.php</a></li>
<li><a href="#framework\modules\core\controllers\expDefinableFieldController.php"><i class="icon-file"></i> framework\modules\core\controllers\expDefinableFieldController.php</a></li>
<li><a href="#framework\core\subsystems\expRouter.php"><i class="icon-file"></i> framework\core\subsystems\expRouter.php</a></li>
<li><a href="#framework\modules\ecommerce\models\order.php"><i class="icon-file"></i> framework\modules\ecommerce\models\order.php</a></li>
<li><a href="#index.php"><i class="icon-file"></i> index.php</a></li>
<li><a href="#framework\plugins\function.rating.php"><i class="icon-file"></i> framework\plugins\function.rating.php</a></li>
<li><a href="#exponent_php_setup.php"><i class="icon-file"></i> exponent_php_setup.php</a></li>
<li><a href="#framework\core\forms\controls\bootstrap4\yuicalendarcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\bootstrap4\yuicalendarcontrol.php</a></li>
<li><a href="#framework\modules\container\controllers\containerController.php"><i class="icon-file"></i> framework\modules\container\controllers\containerController.php</a></li>
<li><a href="#framework\plugins\compiler.exp_include.php"><i class="icon-file"></i> framework\plugins\compiler.exp_include.php</a></li>
<li><a href="#framework\modules\core\controllers\expCatController.php"><i class="icon-file"></i> framework\modules\core\controllers\expCatController.php</a></li>
<li><a href="#framework\plugins\bootstrap5\function.ddrerank.php"><i class="icon-file"></i> framework\plugins\bootstrap5\function.ddrerank.php</a></li>
<li><a href="#framework\modules\ecommerce\shippingcalculators\easypostcalculator.php"><i class="icon-file"></i> framework\modules\ecommerce\shippingcalculators\easypostcalculator.php</a></li>
<li><a href="#framework\core\forms\controls\jquery\yuicalendarcontrol.php"><i class="icon-file"></i> framework\core\forms\controls\jquery\yuicalendarcontrol.php</a></li>
<li><a href="#framework\modules\ecommerce\models\taxclass.php"><i class="icon-file"></i> framework\modules\ecommerce\models\taxclass.php</a></li>
<li><a href="#framework\plugins\block.toggle.php"><i class="icon-file"></i> framework\plugins\block.toggle.php</a></li>
<li><a href="#framework\plugins\function.scaffold.php"><i class="icon-file"></i> framework\plugins\function.scaffold.php</a></li>
<li><a href="#install\upgrades\remove_oldtables.php"><i class="icon-file"></i> install\upgrades\remove_oldtables.php</a></li>
<li><a href="#exponent.php"><i class="icon-file"></i> exponent.php</a></li>
<li><a href="#framework\modules\events\models\event.php"><i class="icon-file"></i> framework\modules\events\models\event.php</a></li>
<li><a href="#framework\modules\navigation\controllers\navigationController.php"><i class="icon-file"></i> framework\modules\navigation\controllers\navigationController.php</a></li>
<li><a href="#framework\modules\text\controllers\textController.php"><i class="icon-file"></i> framework\modules\text\controllers\textController.php</a></li>
<li><a href="#framework\modules\ecommerce\billingcalculators\splitcreditcard.php"><i class="icon-file"></i> framework\modules\ecommerce\billingcalculators\splitcreditcard.php</a></li>
<li><a href="#framework\modules\core\controllers\expSimpleNoteController.php"><i class="icon-file"></i> framework\modules\core\controllers\expSimpleNoteController.php</a></li>
<li><a href="#framework\modules\ecommerce\billingcalculators\authorizedotnet.php"><i class="icon-file"></i> framework\modules\ecommerce\billingcalculators\authorizedotnet.php</a></li>
<li><a href="#framework\modules\portfolio\controllers\portfolioController.php"><i class="icon-file"></i> framework\modules\portfolio\controllers\portfolioController.php</a></li>
<li><a href="#framework\modules\ecommerce\models\billing.php"><i class="icon-file"></i> framework\modules\ecommerce\models\billing.php</a></li>
<li><a href="#framework\core\subsystems\expCSS.php"><i class="icon-file"></i> framework\core\subsystems\expCSS.php</a></li>
<li><a href="#framework\modules\ecommerce\models\shippingmethod.php"><i class="icon-file"></i> framework\modules\ecommerce\models\shippingmethod.php</a></li>
<li><a href="#framework\modules\navigation\models\section.php"><i class="icon-file"></i> framework\modules\navigation\models\section.php</a></li>
<li><a href="#framework\core\forms\controllertemplate.php"><i class="icon-file"></i> framework\core\forms\controllertemplate.php</a></li>
<li><a href="#framework\core\subsystems\expBot.php"><i class="icon-file"></i> framework\core\subsystems\expBot.php</a></li>
<li><a href="#framework\modules\ecommerce\models\order_discounts.php"><i class="icon-file"></i> framework\modules\ecommerce\models\order_discounts.php</a></li>
<li><a href="#framework\modules\users\controllers\usersController.php"><i class="icon-file"></i> framework\modules\users\controllers\usersController.php</a></li>
<li><a href="#framework\modules\migration\controllers\migrationController.php"><i class="icon-file"></i> framework\modules\migration\controllers\migrationController.php</a></li>
<li><a href="#framework\core\forms\basetemplate.php"><i class="icon-file"></i> framework\core\forms\basetemplate.php</a></li>
</ul>
</div>
<div class="span8">
<ul class="breadcrumb">
<li><a href="?"><i class="icon-map-marker"></i></a><span class="divider">\</span></li>
<li>Markers</li>
</ul>
<div id="marker-accordion">
<div class="package-contents">
<a name="framework\modules\core\controllers\expTagController.php" id="framework\modules\core\controllers\expTagController.php"></a>
<h3>
<i class="icon-file"></i>
framework\modules\core\controllers\expTagController.php
<span class="pull-right badge badge-info">2</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>125</td>
<td>here is a hack to get the faq to be listed</td>
</tr>
<tr>
<td>FIXME</td>
<td>186</td>
<td>here is a hack to get the faq to be listed</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\core\forms\controls\bootstrap3\yuicalendarcontrol.php" id="framework\core\forms\controls\bootstrap3\yuicalendarcontrol.php"></a>
<h3>
<i class="icon-file"></i>
framework\core\forms\controls\bootstrap3\yuicalendarcontrol.php
<span class="pull-right badge badge-info">1</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>56</td>
<td>$disable_text & $showtime are NOT used</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\plugins\bootstrap\function.ddrerank.php" id="framework\plugins\bootstrap\function.ddrerank.php"></a>
<h3>
<i class="icon-file"></i>
framework\plugins\bootstrap\function.ddrerank.php
<span class="pull-right badge badge-info">1</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>74</td>
<td>we don't seem to get a container var</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\core\forms\controls\bootstrap\checkboxcontrol.php" id="framework\core\forms\controls\bootstrap\checkboxcontrol.php"></a>
<h3>
<i class="icon-file"></i>
framework\core\forms\controls\bootstrap\checkboxcontrol.php
<span class="pull-right badge badge-info">1</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>140</td>
<td>this is just here until we completely deprecate the old school checkbox</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\modules\ecommerce\controllers\shippingController.php" id="framework\modules\ecommerce\controllers\shippingController.php"></a>
<h3>
<i class="icon-file"></i>
framework\modules\ecommerce\controllers\shippingController.php
<span class="pull-right badge badge-info">7</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>62</td>
<td>we do NOT want the global $order</td>
</tr>
<tr>
<td>FIXME</td>
<td>66</td>
<td>a lot of work just to get one set of data since we'll be doing it again for cart/checkout redisplay...maybe cache???</td>
</tr>
<tr>
<td>FIXME</td>
<td>103</td>
<td>do we ever call this?</td>
</tr>
<tr>
<td>FIXME</td>
<td>105</td>
<td>we do NOT want the global $order</td>
</tr>
<tr>
<td>FIXME</td>
<td>108</td>
<td>perhaps check for cached rates if calculator didn't change???</td>
</tr>
<tr>
<td>FIXME</td>
<td>138</td>
<td>this model has no listPrices() method???</td>
</tr>
<tr>
<td>FIXME</td>
<td>190</td>
<td>we need to ensure our default calculator is still active...not sure this does it</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="exponent_constants.php" id="exponent_constants.php"></a>
<h3>
<i class="icon-file"></i>
exponent_constants.php
<span class="pull-right badge badge-info">2</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>44</td>
<td>PATH_RELATIVE definition will break in certain parts when the server does not offer the Document_root.</td>
</tr>
<tr>
<td>FIXME</td>
<td>45</td>
<td>Notable, it breaks in the installer.</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\modules\ecommerce\models\shippingcalculator.php" id="framework\modules\ecommerce\models\shippingcalculator.php"></a>
<h3>
<i class="icon-file"></i>
framework\modules\ecommerce\models\shippingcalculator.php
<span class="pull-right badge badge-info">1</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>53</td>
<td>probably needs to be passed order object</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\core\forms\controls\bootstrap5\uploadcontrol.php" id="framework\core\forms\controls\bootstrap5\uploadcontrol.php"></a>
<h3>
<i class="icon-file"></i>
framework\core\forms\controls\bootstrap5\uploadcontrol.php
<span class="pull-right badge badge-info">2</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>219</td>
<td>this shouldn't be a link</td>
</tr>
<tr>
<td>FIXME</td>
<td>228</td>
<td>this shouldn't be a link</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\modules\ecommerce\billingcalculators\payflowpro.php" id="framework\modules\ecommerce\billingcalculators\payflowpro.php"></a>
<h3>
<i class="icon-file"></i>
framework\modules\ecommerce\billingcalculators\payflowpro.php
<span class="pull-right badge badge-info">4</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>70</td>
<td>why aren't we passing $opts?</td>
</tr>
<tr>
<td>FIXME</td>
<td>518</td>
<td>not sure this is correct, but we need to update billingmethod</td>
</tr>
<tr>
<td>FIXME</td>
<td>637</td>
<td>not sure this is correct, but we need to update billingmethod</td>
</tr>
<tr>
<td>FIXME</td>
<td>758</td>
<td>not sure this is correct, but we need to update billingmethod</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\modules\report\controllers\reportController.php" id="framework\modules\report\controllers\reportController.php"></a>
<h3>
<i class="icon-file"></i>
framework\modules\report\controllers\reportController.php
<span class="pull-right badge badge-info">4</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>110</td>
<td>OLD calendar control format</td>
</tr>
<tr>
<td>FIXME</td>
<td>987</td>
<td>there is no billingmethod->title ...this is translated??</td>
</tr>
<tr>
<td>FIXME</td>
<td>1949</td>
<td>this is NOT in import</td>
</tr>
<tr>
<td>FIXME</td>
<td>1992</td>
<td>this is NOT in import</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\modules\ecommerce\models\shipping.php" id="framework\modules\ecommerce\models\shipping.php"></a>
<h3>
<i class="icon-file"></i>
framework\modules\ecommerce\models\shipping.php
<span class="pull-right badge badge-info">4</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>32</td>
<td>we don't use this in shipping, only order?</td>
</tr>
<tr>
<td>FIXME</td>
<td>35</td>
<td>we do NOT want the global $order</td>
</tr>
<tr>
<td>FIXME</td>
<td>86</td>
<td>, we don't really need to call it each time the shipping model is created! slows entire system down!</td>
</tr>
<tr>
<td>FIXME</td>
<td>230</td>
<td>we need to get current address here</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\core\forms\template.php" id="framework\core\forms\template.php"></a>
<h3>
<i class="icon-file"></i>
framework\core\forms\template.php
<span class="pull-right badge badge-info">1</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>TODO</td>
<td>28</td>
<td>prepare this class for multiple template systems</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\modules\administration\menus\admin.php" id="framework\modules\administration\menus\admin.php"></a>
<h3>
<i class="icon-file"></i>
framework\modules\administration\menus\admin.php
<span class="pull-right badge badge-info">1</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>293</td>
<td>should a group admin get the entire User Management menu?</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\core\subsystems\database\odbc.php" id="framework\core\subsystems\database\odbc.php"></a>
<h3>
<i class="icon-file"></i>
framework\core\subsystems\database\odbc.php
<span class="pull-right badge badge-info">2</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>722</td>
<td>we don't add column length??</td>
</tr>
<tr>
<td>FIXME</td>
<td>1995</td>
<td>this can run us out of memory with too many rows</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="install\upgrades\upgrade_forms.php" id="install\upgrades\upgrade_forms.php"></a>
<h3>
<i class="icon-file"></i>
install\upgrades\upgrade_forms.php
<span class="pull-right badge badge-info">2</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>101</td>
<td>do we want to add a forms_id field?</td>
</tr>
<tr>
<td>FIXME</td>
<td>212</td>
<td>???</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\modules\ecommerce\billingcalculators\worldpayCheckout.php" id="framework\modules\ecommerce\billingcalculators\worldpayCheckout.php"></a>
<h3>
<i class="icon-file"></i>
framework\modules\ecommerce\billingcalculators\worldpayCheckout.php
<span class="pull-right badge badge-info">4</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>TODO</td>
<td>23</td>
<td>make into php5 class with access modifiers properties and all that jazz.</td>
</tr>
<tr>
<td>FIXME</td>
<td>122</td>
<td>already unserialized?? == $opts???</td>
</tr>
<tr>
<td>FIXME</td>
<td>130</td>
<td>is 'complete' and $grand_total proper?</td>
</tr>
<tr>
<td>FIXME</td>
<td>178</td>
<td>we don't store a 'token'</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\core\forms\controls\jquery\listbuildercontrol.php" id="framework\core\forms\controls\jquery\listbuildercontrol.php"></a>
<h3>
<i class="icon-file"></i>
framework\core\forms\controls\jquery\listbuildercontrol.php
<span class="pull-right badge badge-info">1</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>22</td>
<td>this is NOT a bootstrap control, but jQuery</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\modules\ecommerce\products\models\product.php" id="framework\modules\ecommerce\products\models\product.php"></a>
<h3>
<i class="icon-file"></i>
framework\modules\ecommerce\products\models\product.php
<span class="pull-right badge badge-info">7</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>143</td>
<td>Make this actually do something.</td>
</tr>
<tr>
<td>FIXME</td>
<td>206</td>
<td>adjust multiple quantity here</td>
</tr>
<tr>
<td>FIXME</td>
<td>236</td>
<td>adjust multiple quantity here for child products???</td>
</tr>
<tr>
<td>FIXME</td>
<td>414</td>
<td>adjust multiple quantity here</td>
</tr>
<tr>
<td>FIXME</td>
<td>498</td>
<td>was this replaced by orderitem->getFormattedExtraData() ? It's not used</td>
</tr>
<tr>
<td>FIXME</td>
<td>1003</td>
<td>$product_type is not set, changed to $product->product_type</td>
</tr>
<tr>
<td>FIXME</td>
<td>1071</td>
<td>not sure why we are creating 2 array entries??</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\plugins\function.chain.php" id="framework\plugins\function.chain.php"></a>
<h3>
<i class="icon-file"></i>
framework\plugins\function.chain.php
<span class="pull-right badge badge-info">2</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>33</td>
<td>old school way of calling?</td>
</tr>
<tr>
<td>FIXME</td>
<td>41</td>
<td>old school only?</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\modules\recyclebin\models\recyclebin.php" id="framework\modules\recyclebin\models\recyclebin.php"></a>
<h3>
<i class="icon-file"></i>
framework\modules\recyclebin\models\recyclebin.php
<span class="pull-right badge badge-info">1</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>108</td>
<td>we should only send module with sources or configs to the recycle bin NOT things like rss, addressbook</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\core\forms\controls\statescontrol.php" id="framework\core\forms\controls\statescontrol.php"></a>
<h3>
<i class="icon-file"></i>
framework\core\forms\controls\statescontrol.php
<span class="pull-right badge badge-info">1</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>55</td>
<td>this is the US in sample db</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\core\subsystems\expLabels.php" id="framework\core\subsystems\expLabels.php"></a>
<h3>
<i class="icon-file"></i>
framework\core\subsystems\expLabels.php
<span class="pull-right badge badge-info">2</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>146</td>
<td></td>
</tr>
<tr>
<td>FIXME</td>
<td>160</td>
<td>need to integrate into expHTMLToPDF</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\core\subsystems\database\sqlsvr.php" id="framework\core\subsystems\database\sqlsvr.php"></a>
<h3>
<i class="icon-file"></i>
framework\core\subsystems\database\sqlsvr.php
<span class="pull-right badge badge-info">2</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>712</td>
<td>we don't add column length??</td>
</tr>
<tr>
<td>FIXME</td>
<td>1995</td>
<td>this can run us out of memory with too many rows</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\modules\events\controllers\eventController.php" id="framework\modules\events\controllers\eventController.php"></a>
<h3>
<i class="icon-file"></i>
framework\modules\events\controllers\eventController.php
<span class="pull-right badge badge-info">6</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>FIXME</td>
<td>347</td>
<td>this can't be right?</td>
</tr>
<tr>
<td>FIXME</td>
<td>350</td>
<td>this can't be right?</td>
</tr>
<tr>
<td>FIXME</td>
<td>1448</td>
<td>must convert $dtstart timezone</td>
</tr>
<tr>
<td>FIXME</td>
<td>1461</td>
<td>must convert $dtend timezone</td>
</tr>
<tr>
<td>FIXME</td>
<td>1594</td>
<td>we must have the real timezone offset for the date by this point</td>
</tr>
<tr>
<td>FIXME</td>
<td>1596</td>
<td>this is for the google ical feed which is bad!</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\modules\company\controllers\companyController.php" id="framework\modules\company\controllers\companyController.php"></a>
<h3>
<i class="icon-file"></i>
framework\modules\company\controllers\companyController.php
<span class="pull-right badge badge-info">1</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>
<td>TODO</td>
<td>123</td>
<td>this is a misnomer as we only accept an id NOT a title and duplicates the show() method</td>
</tr>
</table>
</div>
</div>
<div class="package-contents">
<a name="framework\core\subsystems\expMail.php" id="framework\core\subsystems\expMail.php"></a>
<h3>
<i class="icon-file"></i>
framework\core\subsystems\expMail.php
<span class="pull-right badge badge-info">10</span>
</h3>
<div>
<table class="table markers table-bordered">
<tr>
<th>Type</th>
<th>Line</th>
<th>Description</th>
</tr>
<tr>