forked from asika32764/Joomla-CMS-API-Document
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.html
1567 lines (1567 loc) · 108 KB
/
errors.html
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
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>phpDocumentor Parser Errors and Warnings</title>
<link rel="stylesheet" href="media/stylesheet.css" />
</head>
<body>
<a href="#Post-parsing">Post-parsing</a><br>
<a href="#account.php">account.php</a><br>
<a href="#archive.php">archive.php</a><br>
<a href="#article.php">article.php</a><br>
<a href="#ascii.php">ascii.php</a><br>
<a href="#authentication.php">authentication.php</a><br>
<a href="#bad.php">bad.php</a><br>
<a href="#bannerclient.php">bannerclient.php</a><br>
<a href="#base.php">base.php</a><br>
<a href="#behavior.php">behavior.php</a><br>
<a href="#bootstrap.php">bootstrap.php</a><br>
<a href="#button.php">button.php</a><br>
<a href="#cachelite.php">cachelite.php</a><br>
<a href="#categories.php">categories.php</a><br>
<a href="#checkin.php">checkin.php</a><br>
<a href="#cli.php">cli.php</a><br>
<a href="#client.php">client.php</a><br>
<a href="#cms.php">cms.php</a><br>
<a href="#component.php">component.php</a><br>
<a href="#contact.php">contact.php</a><br>
<a href="#contacts.php">contacts.php</a><br>
<a href="#content.php">content.php</a><br>
<a href="#core.php">core.php</a><br>
<a href="#cpanel.php">cpanel.php</a><br>
<a href="#daemon.php">daemon.php</a><br>
<a href="#date.php">date.php</a><br>
<a href="#debuggroup.php">debuggroup.php</a><br>
<a href="#debuguser.php">debuguser.php</a><br>
<a href="#default.php">default.php</a><br>
<a href="#default_articles.php">default_articles.php</a><br>
<a href="#default_items.php">default_items.php</a><br>
<a href="#defines.php">defines.php</a><br>
<a href="#deletefiles.php">deletefiles.php</a><br>
<a href="#directories.php">directories.php</a><br>
<a href="#discover.php">discover.php</a><br>
<a href="#dispatcher.php">dispatcher.php</a><br>
<a href="#driver.php">driver.php</a><br>
<a href="#edit_assignment.php">edit_assignment.php</a><br>
<a href="#edit_positions.php">edit_positions.php</a><br>
<a href="#example.php">example.php</a><br>
<a href="#extension.php">extension.php</a><br>
<a href="#factory.php">factory.php</a><br>
<a href="#feature.php">feature.php</a><br>
<a href="#featured.php">featured.php</a><br>
<a href="#file.php">file.php</a><br>
<a href="#finder.php">finder.php</a><br>
<a href="#form.php">form.php</a><br>
<a href="#formbehavior.php">formbehavior.php</a><br>
<a href="#framework.php">framework.php</a><br>
<a href="#garbagecron.php">garbagecron.php</a><br>
<a href="#gzip.php">gzip.php</a><br>
<a href="#head.php">head.php</a><br>
<a href="#helper.php">helper.php</a><br>
<a href="#horizontal.php">horizontal.php</a><br>
<a href="#html.php">html.php</a><br>
<a href="#http.php">http.php</a><br>
<a href="#idna_convert.class.php">idna_convert.class.php</a><br>
<a href="#image.php">image.php</a><br>
<a href="#import.legacy.php">import.legacy.php</a><br>
<a href="#import.php">import.php</a><br>
<a href="#index.php">index.php</a><br>
<a href="#item.php">item.php</a><br>
<a href="#jquery.php">jquery.php</a><br>
<a href="#keychain.php">keychain.php</a><br>
<a href="#language.php">language.php</a><br>
<a href="#legacy.php">legacy.php</a><br>
<a href="#library.php">library.php</a><br>
<a href="#loader.php">loader.php</a><br>
<a href="#logger.php">logger.php</a><br>
<a href="#mailto.php">mailto.php</a><br>
<a href="#manage.php">manage.php</a><br>
<a href="#media.php">media.php</a><br>
<a href="#memcache.php">memcache.php</a><br>
<a href="#memcached.php">memcached.php</a><br>
<a href="#menu.php">menu.php</a><br>
<a href="#menuitem.php">menuitem.php</a><br>
<a href="#message.php">message.php</a><br>
<a href="#modal.php">modal.php</a><br>
<a href="#module.php">module.php</a><br>
<a href="#modules.php">modules.php</a><br>
<a href="#mod_articles_archive.php">mod_articles_archive.php</a><br>
<a href="#mod_articles_categories.php">mod_articles_categories.php</a><br>
<a href="#mod_articles_category.php">mod_articles_category.php</a><br>
<a href="#mod_articles_latest.php">mod_articles_latest.php</a><br>
<a href="#mod_articles_news.php">mod_articles_news.php</a><br>
<a href="#mod_articles_popular.php">mod_articles_popular.php</a><br>
<a href="#mod_banners.php">mod_banners.php</a><br>
<a href="#mod_breadcrumbs.php">mod_breadcrumbs.php</a><br>
<a href="#mod_custom.php">mod_custom.php</a><br>
<a href="#mod_feed.php">mod_feed.php</a><br>
<a href="#mod_finder.php">mod_finder.php</a><br>
<a href="#mod_footer.php">mod_footer.php</a><br>
<a href="#mod_languages.php">mod_languages.php</a><br>
<a href="#mod_latest.php">mod_latest.php</a><br>
<a href="#mod_logged.php">mod_logged.php</a><br>
<a href="#mod_login.php">mod_login.php</a><br>
<a href="#mod_menu.php">mod_menu.php</a><br>
<a href="#mod_multilangstatus.php">mod_multilangstatus.php</a><br>
<a href="#mod_popular.php">mod_popular.php</a><br>
<a href="#mod_quickicon.php">mod_quickicon.php</a><br>
<a href="#mod_random_image.php">mod_random_image.php</a><br>
<a href="#mod_related_items.php">mod_related_items.php</a><br>
<a href="#mod_search.php">mod_search.php</a><br>
<a href="#mod_stats.php">mod_stats.php</a><br>
<a href="#mod_stats_admin.php">mod_stats_admin.php</a><br>
<a href="#mod_status.php">mod_status.php</a><br>
<a href="#mod_submenu.php">mod_submenu.php</a><br>
<a href="#mod_syndicate.php">mod_syndicate.php</a><br>
<a href="#mod_tags_popular.php">mod_tags_popular.php</a><br>
<a href="#mod_tags_similar.php">mod_tags_similar.php</a><br>
<a href="#mod_title.php">mod_title.php</a><br>
<a href="#mod_toolbar.php">mod_toolbar.php</a><br>
<a href="#mod_users_latest.php">mod_users_latest.php</a><br>
<a href="#mod_version.php">mod_version.php</a><br>
<a href="#mod_weblinks.php">mod_weblinks.php</a><br>
<a href="#mod_whosonline.php">mod_whosonline.php</a><br>
<a href="#mod_wrapper.php">mod_wrapper.php</a><br>
<a href="#mysqli.php">mysqli.php</a><br>
<a href="#nested.php">nested.php</a><br>
<a href="#newsfeeds.php">newsfeeds.php</a><br>
<a href="#node.php">node.php</a><br>
<a href="#observable.php">observable.php</a><br>
<a href="#observer.php">observer.php</a><br>
<a href="#package.php">package.php</a><br>
<a href="#password.php">password.php</a><br>
<a href="#patcher.php">patcher.php</a><br>
<a href="#path.php">path.php</a><br>
<a href="#plugin.php">plugin.php</a><br>
<a href="#pop3.php">pop3.php</a><br>
<a href="#position.php">position.php</a><br>
<a href="#postgresql.php">postgresql.php</a><br>
<a href="#profile.php">profile.php</a><br>
<a href="#registration.php">registration.php</a><br>
<a href="#registry.php">registry.php</a><br>
<a href="#remind.php">remind.php</a><br>
<a href="#reset.php">reset.php</a><br>
<a href="#response.php">response.php</a><br>
<a href="#restore.php">restore.php</a><br>
<a href="#router.php">router.php</a><br>
<a href="#rule.php">rule.php</a><br>
<a href="#rules.php">rules.php</a><br>
<a href="#search.php">search.php</a><br>
<a href="#simplepie.php">simplepie.php</a><br>
<a href="#sortablelist.php">sortablelist.php</a><br>
<a href="#specials.php">specials.php</a><br>
<a href="#sqlsrv.php">sqlsrv.php</a><br>
<a href="#strcasecmp.php">strcasecmp.php</a><br>
<a href="#strcspn.php">strcspn.php</a><br>
<a href="#stream.php">stream.php</a><br>
<a href="#string.php">string.php</a><br>
<a href="#stristr.php">stristr.php</a><br>
<a href="#strrev.php">strrev.php</a><br>
<a href="#strspn.php">strspn.php</a><br>
<a href="#str_ireplace.php">str_ireplace.php</a><br>
<a href="#str_pad.php">str_pad.php</a><br>
<a href="#str_split.php">str_split.php</a><br>
<a href="#suggestions.php">suggestions.php</a><br>
<a href="#sysinfo.php">sysinfo.php</a><br>
<a href="#tags.php">tags.php</a><br>
<a href="#tar.php">tar.php</a><br>
<a href="#template.php">template.php</a><br>
<a href="#transliterate.php">transliterate.php</a><br>
<a href="#tree.php">tree.php</a><br>
<a href="#trim.php">trim.php</a><br>
<a href="#ucfirst.php">ucfirst.php</a><br>
<a href="#uctc.php">uctc.php</a><br>
<a href="#ucwords.php">ucwords.php</a><br>
<a href="#unicode.php">unicode.php</a><br>
<a href="#update.php">update.php</a><br>
<a href="#user.php">user.php</a><br>
<a href="#users.php">users.php</a><br>
<a href="#validation.php">validation.php</a><br>
<a href="#vertical.php">vertical.php</a><br>
<a href="#view.html.php">view.html.php</a><br>
<a href="#web.php">web.php</a><br>
<a href="#weblinks.php">weblinks.php</a><br>
<a href="#zip.php">zip.php</a><br>
<a name="Post-parsing"></a>
<h1>Post-parsing</h1>
<h2>Warnings:</h2><br>
<b>Warning</b> -
duplicate function element "addTokensToDB" in file D:\www\joomla315b\administrator\components\com_finder\helpers\indexer\driver\postgresql.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "addTokensToDB" in file D:\www\joomla315b\administrator\components\com_finder\helpers\indexer\driver\sqlsrv.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "toggleTables" in file D:\www\joomla315b\administrator\components\com_finder\helpers\indexer\driver\postgresql.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "toggleTables" in file D:\www\joomla315b\administrator\components\com_finder\helpers\indexer\driver\sqlsrv.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "optimize" in file D:\www\joomla315b\administrator\components\com_finder\helpers\indexer\driver\sqlsrv.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "optimize" in file D:\www\joomla315b\administrator\components\com_finder\helpers\indexer\driver\postgresql.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "WeblinksViewCategory" in file D:\www\joomla315b\components\com_weblinks\views\category\view.html.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "remove" in file D:\www\joomla315b\administrator\components\com_finder\helpers\indexer\driver\postgresql.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "remove" in file D:\www\joomla315b\administrator\components\com_finder\helpers\indexer\driver\sqlsrv.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "pagination_list_footer" in file D:\www\joomla315b\administrator\templates\isis\html\pagination.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "pagination_list_render" in file D:\www\joomla315b\administrator\templates\isis\html\pagination.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "calendar" in file D:\www\joomla315b\libraries\cms\html\html.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "utf8_strlen" in file D:\www\joomla315b\libraries\phputf8\native\core.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "utf8_strpos" in file D:\www\joomla315b\libraries\phputf8\native\core.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "utf8_strrpos" in file D:\www\joomla315b\libraries\phputf8\native\core.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "modal" in file D:\www\joomla315b\libraries\cms\html\bootstrap.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "tooltip" in file D:\www\joomla315b\libraries\cms\html\html.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "pagination_item_active" in file D:\www\joomla315b\administrator\templates\isis\html\pagination.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "pagination_item_inactive" in file D:\www\joomla315b\administrator\templates\isis\html\pagination.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "tooltip" in file D:\www\joomla315b\libraries\cms\html\bootstrap.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "SearchViewSearch" in file D:\www\joomla315b\components\com_search\views\search\view.opensearch.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "FinderViewSearch" in file D:\www\joomla315b\components\com_finder\views\search\view.opensearch.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "idna_convert" in file D:\www\joomla315b\libraries\simplepie\idn\idna_convert.class.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "JFormFieldOrdering" in file D:\www\joomla315b\administrator\components\com_contact\models\fields\ordering.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "JFormFieldOrdering" in file D:\www\joomla315b\administrator\components\com_plugins\models\fields\ordering.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "JFormFieldOrdering" in file D:\www\joomla315b\administrator\components\com_weblinks\models\fields\ordering.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "InstallationResponseJson" in file D:\www\joomla315b\installation\response\json.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "JHtmlIcon" in file D:\www\joomla315b\components\com_weblinks\helpers\icon.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - Class JController parent Serializable not found<br>
<b>Warning</b> -
duplicate class element "En_GBLocalise" in file D:\www\joomla315b\language\en-GB\en-GB.localise.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "JHtmlIcon" in file D:\www\joomla315b\components\com_content\helpers\icon.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "BannersControllerTracks" in file D:\www\joomla315b\administrator\components\com_banners\controllers\tracks.raw.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "MediaControllerFile" in file D:\www\joomla315b\administrator\components\com_media\controllers\file.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "ContactViewCategory" in file D:\www\joomla315b\components\com_contact\views\category\view.html.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "ContentViewCategory" in file D:\www\joomla315b\components\com_content\views\category\view.html.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "FinderViewSearch" in file D:\www\joomla315b\components\com_finder\views\search\view.html.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "TagsViewTags" in file D:\www\joomla315b\components\com_tags\views\tags\view.html.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "TagsViewTag" in file D:\www\joomla315b\components\com_tags\views\tag\view.html.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "BannersViewTracks" in file D:\www\joomla315b\administrator\components\com_banners\views\tracks\view.raw.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "ContactViewContact" in file D:\www\joomla315b\components\com_contact\views\contact\view.vcf.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "ContentViewFeatured" in file D:\www\joomla315b\components\com_content\views\featured\view.html.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "utf8_substr" in file D:\www\joomla315b\libraries\phputf8\native\core.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate class element "JFormFieldOrdering" in file D:\www\joomla315b\administrator\components\com_newsfeeds\models\fields\ordering.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::setTimezone()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::format()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::__construct()<br>
<b>Warning</b> -
duplicate function element "utf8_strtolower" in file D:\www\joomla315b\libraries\phputf8\native\core.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::setTimezone()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::format()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::format()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::format()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::format()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::format()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::setTimezone()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::setTimezone()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::setTimezone()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::format()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::format()<br>
<b>Warning</b> - class JException in package Joomla-Legacy parent not found in @see parent::__construct()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::format()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::format()<br>
<b>Warning</b> - class JException in package Joomla-Legacy parent not found in @see parent::__construct()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::setTimezone()<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::format()<br>
<b>Warning</b> -
duplicate define element "JPATH_BASE" in file D:\www\joomla315b\cli\garbagecron.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate define element "FINDER_PATH_INDEXER" in file D:\www\joomla315b\modules\mod_finder\mod_finder.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate define element "FINDER_PATH_INDEXER" in file D:\www\joomla315b\components\com_finder\models\suggestions.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate function element "utf8_strtoupper" in file D:\www\joomla315b\libraries\phputf8\native\core.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate define element "JPATH_BASE" in file D:\www\joomla315b\cli\finder_indexer.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate define element "JPATH_PLATFORM" in file D:\www\joomla315b\libraries\import.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate define element "IS_WIN" in file D:\www\joomla315b\libraries\import.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate define element "JPATH_BASE" in file D:\www\joomla315b\cli\update_cron.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::__construct()<br>
<b>Warning</b> -
duplicate define element "UTF8_CORE" in file D:\www\joomla315b\libraries\phputf8\native\core.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> -
duplicate define element "IS_UNIX" in file D:\www\joomla315b\libraries\import.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - class JDate in package Joomla-Platform parent not found in @see parent::format()<br>
<a name="access.php"></a>
<h1>access.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 464</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="account.php"></a>
<h1>account.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 166</b> - Unknown tag "@note" used<br>
<b>Warning on line 194</b> - Unknown tag "@note" used<br>
<a name="archive.php"></a>
<h1>archive.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once __DIR__.'/articles.php'", use another DocBlock to document the source element<br>
<a name="article.php"></a>
<h1>article.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_COMPONENT_ADMINISTRATOR.'/helpers/content.php'", use another DocBlock to document the source element<br>
<a name="authentication.php"></a>
<h1>authentication.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 26</b> - Unknown tag "@const" used<br>
<b>Warning on line 34</b> - Unknown tag "@const" used<br>
<b>Warning on line 41</b> - Unknown tag "@const" used<br>
<b>Warning on line 49</b> - Unknown tag "@const" used<br>
<b>Warning on line 56</b> - Unknown tag "@const" used<br>
<b>Warning on line 63</b> - Unknown tag "@const" used<br>
<a name="bannerclient.php"></a>
<h1>bannerclient.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 13</b> - Page-level DocBlock precedes "require_once __DIR__.'/../../helpers/banners.php'", use another DocBlock to document the source element<br>
<a name="base.php"></a>
<h1>base.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 54</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="behavior.php"></a>
<h1>behavior.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 52</b> - no @package tag was used in a DocBlock for class JHtmlBehavior<br>
<b>Warning on line 52</b> -
duplicate class element "JHtmlBehavior" in file D:\www\joomla315b\libraries\cms\html\behavior.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<a name="bootstrap.php"></a>
<h1>bootstrap.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "define JPATH_BASE", use another DocBlock to document the source element<br>
<a name="button.php"></a>
<h1>button.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 133</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="categories.php"></a>
<h1>categories.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_SITE.'/components/com_content/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_ADMINISTRATOR.'/components/com_finder/helpers/indexer/adapter.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Plugin"<br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage Search-categories"<br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Plugin"<br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage Finder-Categories"<br>
<b>Error on line 635</b> - "@var" tag was used without any parameters, illegal<br>
<b>Error on line 651</b> - "@var" tag was used without any parameters, illegal<br>
<a name="checkin.php"></a>
<h1>checkin.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 35</b> - Unknown tag "@Note." used<br>
<a name="cli.php"></a>
<h1>cli.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 20</b> - Unknown tag "@codeCoverageIgnore" used<br>
<b>Warning on line 195</b> - Unknown tag "@codeCoverageIgnore" used<br>
<b>Warning on line 210</b> - Unknown tag "@codeCoverageIgnore" used<br>
<b>Warning on line 289</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="client.php"></a>
<h1>client.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 20</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="cms.php"></a>
<h1>cms.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 13</b> - Page-level DocBlock precedes "define JPATH_PLATFORM", use another DocBlock to document the source element<br>
<a name="component.php"></a>
<h1>component.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 1892</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="contact.php"></a>
<h1>contact.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_COMPONENT.'/helpers/route.php'", use another DocBlock to document the source element<br>
<a name="contacts.php"></a>
<h1>contacts.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_ADMINISTRATOR.'/components/com_finder/helpers/indexer/adapter.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage Finder-Contacts"<br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Plugin"<br>
<a name="content.php"></a>
<h1>content.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_ADMINISTRATOR.'/components/com_finder/helpers/indexer/adapter.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_COMPONENT.'/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_SITE.'/components/com_content/router.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage Search-content"<br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Plugin"<br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage Finder-Content"<br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Plugin"<br>
<a name="cpanel.php"></a>
<h1>cpanel.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once __DIR__.'/index.php'", use another DocBlock to document the source element<br>
<a name="daemon.php"></a>
<h1>daemon.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 22</b> - Unknown tag "@codeCoverageIgnore" used<br>
<b>Warning on line 169</b> -
duplicate class element "JApplicationDaemon" in file D:\www\joomla315b\libraries\joomla\application\daemon.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning on line 169</b> - no @package tag was used in a DocBlock for class JApplicationDaemon<br>
<b>Warning on line 174</b> - no @package tag was used in a DocBlock for class JApplicationDaemon<br>
<b>Warning on line 174</b> -
duplicate class element "JApplicationDaemon" in file D:\www\joomla315b\libraries\joomla\application\daemon.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning on line 410</b> - Unknown tag "@codeCoverageIgnore" used<br>
<b>Warning on line 424</b> - Unknown tag "@codeCoverageIgnore" used<br>
<b>Warning on line 672</b> - Unknown tag "@codeCoverageIgnore" used<br>
<b>Warning on line 854</b> - Unknown tag "@codeCoverageIgnore" used<br>
<b>Warning on line 871</b> - Unknown tag "@codeCoverageIgnore" used<br>
<b>Warning on line 891</b> - Unknown tag "@codeCoverageIgnore" used<br>
<b>Warning on line 910</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="date.php"></a>
<h1>date.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 393</b> - Unknown tag "@note" used<br>
<a name="debuggroup.php"></a>
<h1>debuggroup.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_COMPONENT.'/helpers/debug.php'", use another DocBlock to document the source element<br>
<a name="debuguser.php"></a>
<h1>debuguser.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_COMPONENT.'/helpers/debug.php'", use another DocBlock to document the source element<br>
<a name="default.php"></a>
<h1>default.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_ROOT.'/components/com_banners/helpers/banner.php'", use another DocBlock to document the source element<br>
<b>Warning on line 13</b> - Page-level DocBlock precedes "require JModuleHelper::getLayoutPath('mod_articles_categories',$params->get('layout','default').'_items')", use another DocBlock to document the source element<br>
<b>Warning on line 13</b> - Page-level DocBlock precedes "require JModuleHelper::getLayoutPath('mod_menu',$enabled?'default_enabled':'default_disabled')", use another DocBlock to document the source element<br>
<b>Warning on line 14</b> - Page-level DocBlock precedes "require JModuleHelper::getLayoutPath('mod_articles_news','_item')", use another DocBlock to document the source element<br>
<b>Warning on line 16</b> - Page-level DocBlock precedes "require JPATH_BASE.'/components/com_content/views/archive/tmpl/default.php'", use another DocBlock to document the source element<br>
<b>Warning on line 75</b> - Page-level DocBlock precedes "require JModuleHelper::getLayoutPath('mod_menu','default_'.$item->type)", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_banners"<br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 13</b> - "include" require's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_categories"<br>
<b>Error on line 13</b> - require include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 14</b> - require include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 14</b> - "include" require's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_news"<br>
<b>Error on line 16</b> - require include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 16</b> - "include" require's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage Template-beez5"<br>
<b>Error on line 75</b> - require include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 75</b> - "include" require's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_menu"<br>
<a name="default_articles.php"></a>
<h1>default_articles.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_SITE.'/components/com_content/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_SITE.'/components/com_content/helpers/route.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage com_contact"<br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="default_items.php"></a>
<h1>default_items.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 16</b> - Page-level DocBlock precedes "require JPATH_BASE.'/components/com_content/views/archive/tmpl/default_items.php'", use another DocBlock to document the source element<br>
<b>Warning on line 30</b> - Page-level DocBlock precedes "require JModuleHelper::getLayoutPath('mod_articles_categories',$params->get('layout','default').'_items')", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 16</b> - "include" require's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage Template-beez5"<br>
<b>Error on line 16</b> - require include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 30</b> - "include" require's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_categories"<br>
<b>Error on line 30</b> - require include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="defines.php"></a>
<h1>defines.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 16</b> - Page-level DocBlock precedes "define JPATH_ROOT", use another DocBlock to document the source element<br>
<b>Warning on line 20</b> - Page-level DocBlock precedes "define JPATH_ROOT", use another DocBlock to document the source element<br>
<a name="deletefiles.php"></a>
<h1>deletefiles.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 14</b> - Page-level DocBlock precedes "require_once dirname(__DIR__).'/defines.php'", use another DocBlock to document the source element<br>
<a name="directories.php"></a>
<h1>directories.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 14</b> - Page-level DocBlock precedes "require_once JPATH_ADMINISTRATOR.'/components/com_finder/helpers/indexer/adapter.php'", use another DocBlock to document the source element<br>
<a name="discover.php"></a>
<h1>discover.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once __DIR__.'/extension.php'", use another DocBlock to document the source element<br>
<a name="dispatcher.php"></a>
<h1>dispatcher.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 20</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="driver.php"></a>
<h1>driver.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 1437</b> - Unknown tag "@note" used<br>
<a name="edit_assignment.php"></a>
<h1>edit_assignment.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once JPATH_ADMINISTRATOR.'/components/com_menus/helpers/menus.php'", use another DocBlock to document the source element<br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once JPATH_ADMINISTRATOR.'/components/com_menus/helpers/menus.php'", use another DocBlock to document the source element<br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once JPATH_ADMINISTRATOR.'/components/com_menus/helpers/menus.php'", use another DocBlock to document the source element<br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once JPATH_ADMINISTRATOR.'/components/com_menus/helpers/menus.php'", use another DocBlock to document the source element<br>
<a name="edit_positions.php"></a>
<h1>edit_positions.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_ADMINISTRATOR.'/components/com_templates/helpers/templates.php'", use another DocBlock to document the source element<br>
<a name="example.php"></a>
<h1>example.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 130</b> - File "D:\www\joomla315b\libraries\idna_convert\example.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="extension.php"></a>
<h1>extension.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 132</b> - Unknown tag "@note" used<br>
<b>Warning on line 153</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="factory.php"></a>
<h1>factory.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 38</b> - Unknown tag "@note" used<br>
<b>Warning on line 367</b> - Unknown tag "@note" used<br>
<a name="feature.php"></a>
<h1>feature.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once __DIR__.'/article.php'", use another DocBlock to document the source element<br>
<a name="featured.php"></a>
<h1>featured.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once __DIR__.'/articles.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once __DIR__.'/articles.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once __DIR__.'/articles.php'", use another DocBlock to document the source element<br>
<a name="file.php"></a>
<h1>file.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 42</b> - Unknown tag "@note" used<br>
<b>Warning on line 811</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="finder.php"></a>
<h1>finder.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_COMPONENT.'/helpers/route.php'", use another DocBlock to document the source element<br>
<a name="form.php"></a>
<h1>form.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_COMPONENT_ADMINISTRATOR.'/models/weblink.php'", use another DocBlock to document the source element<br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once JPATH_ADMINISTRATOR.'/components/com_content/models/article.php'", use another DocBlock to document the source element<br>
<a name="formbehavior.php"></a>
<h1>formbehavior.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 55</b> - no @package tag was used in a DocBlock for class JHtmlFormbehavior<br>
<b>Warning on line 55</b> -
duplicate class element "JHtmlFormbehavior" in file D:\www\joomla315b\libraries\cms\html\formbehavior.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<a name="framework.php"></a>
<h1>framework.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 30</b> - Page-level DocBlock precedes "require_once JPATH_LIBRARIES.'/import.legacy.php'", use another DocBlock to document the source element<br>
<b>Warning on line 37</b> - Page-level DocBlock precedes "require_once JPATH_LIBRARIES.'/import.legacy.php'", use another DocBlock to document the source element<br>
<b>Warning on line 37</b> - Page-level DocBlock precedes "require_once JPATH_LIBRARIES.'/import.php'", use another DocBlock to document the source element<br>
<a name="garbagecron.php"></a>
<h1>garbagecron.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 14</b> - Page-level DocBlock precedes "require_once dirname(__DIR__).'/defines.php'", use another DocBlock to document the source element<br>
<a name="gzip.php"></a>
<h1>gzip.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 24</b> - Unknown tag "@contributor" used<br>
<b>Warning on line 24</b> - Unknown tag "@contributor" used<br>
<a name="head.php"></a>
<h1>head.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 33</b> - Unknown tag "@note" used<br>
<a name="helper.php"></a>
<h1>helper.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_SITE.'/components/com_weblinks/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_SITE.'/components/com_content/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_SITE.'/components/com_content/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_SITE.'/components/com_content/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_SITE.'/components/com_content/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_SITE.'/components/com_content/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once $com_path.'router.php'", use another DocBlock to document the source element<br>
<b>Warning on line 283</b> - Unknown tag "@codeCoverageIgnore" used<br>
<h2>Errors:</h2><br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_news"<br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_popular"<br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_categories"<br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_latest"<br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 11</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_weblinks"<br>
<b>Error on line 11</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_related_items"<br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_category"<br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="horizontal.php"></a>
<h1>horizontal.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 16</b> - Page-level DocBlock precedes "require JModuleHelper::getLayoutPath('mod_articles_news','_item')", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 16</b> - "include" require's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_news"<br>
<b>Error on line 16</b> - require include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="html.php"></a>
<h1>html.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 111</b> -
duplicate class element "JHtml" in file D:\www\joomla315b\libraries\cms\html\html.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning on line 111</b> - no @package tag was used in a DocBlock for class JHtml<br>
<b>Warning on line 115</b> - no @package tag was used in a DocBlock for class JHtml<br>
<b>Warning on line 115</b> -
duplicate class element "JHtml" in file D:\www\joomla315b\libraries\cms\html\html.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning on line 119</b> - no @package tag was used in a DocBlock for class JHtml<br>
<b>Warning on line 119</b> -
duplicate class element "JHtml" in file D:\www\joomla315b\libraries\cms\html\html.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<a name="http.php"></a>
<h1>http.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 24</b> - Unknown tag "@const" used<br>
<b>Warning on line 30</b> - Unknown tag "@const" used<br>
<b>Warning on line 36</b> - Unknown tag "@const" used<br>
<a name="idna_convert.class.php"></a>
<h1>idna_convert.class.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 53</b> - no @package tag was used in a DocBlock for class idna_convert<br>
<b>Warning on line 54</b> - no @package tag was used in a DocBlock for class idna_convert<br>
<b>Warning on line 945</b> - no @package tag was used in a DocBlock for class Net_IDNA_php4<br>
<b>Warning on line 968</b> - File "D:\www\joomla315b\libraries\simplepie\idn\idna_convert.class.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 1604</b> - File "D:\www\joomla315b\libraries\idna_convert\idna_convert.class.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="image.php"></a>
<h1>image.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 24</b> - Unknown tag "@const" used<br>
<b>Warning on line 30</b> - Unknown tag "@const" used<br>
<b>Warning on line 36</b> - Unknown tag "@const" used<br>
<b>Warning on line 42</b> - Unknown tag "@const" used<br>
<b>Warning on line 48</b> - Unknown tag "@const" used<br>
<a name="import.legacy.php"></a>
<h1>import.legacy.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 14</b> - Page-level DocBlock precedes "define JPATH_PLATFORM", use another DocBlock to document the source element<br>
<a name="import.php"></a>
<h1>import.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 14</b> - Page-level DocBlock precedes "define JPATH_PLATFORM", use another DocBlock to document the source element<br>
<a name="index.php"></a>
<h1>index.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "include __DIR__.'/component.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "include __DIR__.'/component.php'", use another DocBlock to document the source element<br>
<b>Warning on line 72</b> - Page-level DocBlock precedes "require __DIR__.'/jsstrings.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 11</b> - "include" include's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage Template-system"<br>
<b>Error on line 11</b> - include include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 72</b> - require include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 72</b> - "include" require's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage Templates-beez3"<br>
<a name="item.php"></a>
<h1>item.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once JPATH_COMPONENT.'/helpers/menus.php'", use another DocBlock to document the source element<br>
<a name="jquery.php"></a>
<h1>jquery.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 48</b> - no @package tag was used in a DocBlock for class JHtmlJquery<br>
<b>Warning on line 48</b> -
duplicate class element "JHtmlJquery" in file D:\www\joomla315b\libraries\cms\html\jquery.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<a name="keychain.php"></a>
<h1>keychain.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 9</b> - Page-level DocBlock precedes "define _JEXEC", use another DocBlock to document the source element<br>
<a name="language.php"></a>
<h1>language.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 667</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="legacy.php"></a>
<h1>legacy.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 30</b> - Unknown tag "@note" used<br>
<b>Warning on line 47</b> - Unknown tag "@note" used<br>
<b>Warning on line 56</b> - Unknown tag "@note" used<br>
<b>Warning on line 65</b> - Unknown tag "@note" used<br>
<b>Warning on line 74</b> - Unknown tag "@note" used<br>
<b>Warning on line 83</b> - Unknown tag "@note" used<br>
<b>Warning on line 100</b> - Unknown tag "@note" used<br>
<b>Warning on line 109</b> - Unknown tag "@note" used<br>
<b>Warning on line 118</b> - Unknown tag "@note" used<br>
<b>Warning on line 127</b> - Unknown tag "@note" used<br>
<b>Warning on line 169</b> - Unknown tag "@note" used<br>
<b>Warning on line 447</b> - Unknown tag "@note" used<br>
<b>Warning on line 462</b> - Unknown tag "@note" used<br>
<b>Warning on line 556</b> - Unknown tag "@note" used<br>
<b>Warning on line 586</b> - Unknown tag "@note" used<br>
<b>Warning on line 1044</b> - Unknown tag "@note" used<br>
<a name="library.php"></a>
<h1>library.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 476</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="loader.php"></a>
<h1>loader.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 504</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="logger.php"></a>
<h1>logger.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 78</b> - Unknown tag "@codeCoverageIgnore" used<br>
<a name="mailto.php"></a>
<h1>mailto.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_COMPONENT.'/helpers/mailto.php'", use another DocBlock to document the source element<br>
<a name="manage.php"></a>
<h1>manage.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once __DIR__.'/extension.php'", use another DocBlock to document the source element<br>
<a name="media.php"></a>
<h1>media.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 18</b> - Page-level DocBlock precedes "require_once JPATH_COMPONENT_ADMINISTRATOR.'/media.php'", use another DocBlock to document the source element<br>
<b>Warning on line 30</b> - Page-level DocBlock precedes "require_once JPATH_COMPONENT_ADMINISTRATOR.'/helpers/media.php'", use another DocBlock to document the source element<br>
<a name="menu.php"></a>
<h1>menu.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 14</b> - Page-level DocBlock precedes "require_once realpath(JPATH_ADMINISTRATOR.'/components/com_menus/helpers/menus.php')", use another DocBlock to document the source element<br>
<a name="menuitem.php"></a>
<h1>menuitem.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 14</b> - Page-level DocBlock precedes "require_once realpath(JPATH_ADMINISTRATOR.'/components/com_menus/helpers/menus.php')", use another DocBlock to document the source element<br>
<a name="message.php"></a>
<h1>message.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 39</b> - Page-level DocBlock precedes "function renderMessage", use another DocBlock to document the source element<br>
<b>Warning on line 39</b> - Page-level DocBlock precedes "function renderMessage", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 39</b> - "function" renderMessage's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage Template-Beez3"<br>
<b>Error on line 39</b> - renderMessage function's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="modal.php"></a>
<h1>modal.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_ROOT.'/components/com_newsfeeds/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_ROOT.'/components/com_newsfeeds/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once JPATH_ROOT.'/components/com_contact/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 18</b> - Page-level DocBlock precedes "require_once JPATH_ROOT.'/components/com_content/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 18</b> - Page-level DocBlock precedes "require_once JPATH_ROOT.'/components/com_content/helpers/route.php'", use another DocBlock to document the source element<br>
<b>Warning on line 18</b> - Page-level DocBlock precedes "require_once JPATH_ROOT.'/components/com_content/helpers/route.php'", use another DocBlock to document the source element<br>
<a name="module.php"></a>
<h1>module.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 1002</b> - Unknown tag "@codeCoverageIgnore" used<br>
<h2>Errors:</h2><br>
<b>Error on line 35</b> - "@var" tag was used without any parameters, illegal<br>
<b>Error on line 41</b> - "@var" tag was used without any parameters, illegal<br>
<b>Error on line 49</b> - "@var" tag was used without any parameters, illegal<br>
<b>Error on line 55</b> - "@var" tag was used without any parameters, illegal<br>
<a name="modules.php"></a>
<h1>modules.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 17</b> - Page-level DocBlock precedes "function modChrome_none", use another DocBlock to document the source element<br>
<b>Warning on line 17</b> - Page-level DocBlock precedes "function modChrome_none", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 17</b> - "function" modChrome_none's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage Template-system"<br>
<b>Error on line 17</b> - modChrome_none function's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="mod_articles_archive.php"></a>
<h1>mod_articles_archive.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_archive"<br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="mod_articles_categories.php"></a>
<h1>mod_articles_categories.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_categories"<br>
<a name="mod_articles_category.php"></a>
<h1>mod_articles_category.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_category"<br>
<a name="mod_articles_latest.php"></a>
<h1>mod_articles_latest.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_latest"<br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="mod_articles_news.php"></a>
<h1>mod_articles_news.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_news"<br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="mod_articles_popular.php"></a>
<h1>mod_articles_popular.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_articles_popular"<br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="mod_banners.php"></a>
<h1>mod_banners.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_banners"<br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="mod_breadcrumbs.php"></a>
<h1>mod_breadcrumbs.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_breadcrumbs"<br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="mod_custom.php"></a>
<h1>mod_custom.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 17</b> - Page-level DocBlock precedes "require JModuleHelper::getLayoutPath('mod_custom')", use another DocBlock to document the source element<br>
<b>Warning on line 19</b> - Page-level DocBlock precedes "require JModuleHelper::getLayoutPath('mod_custom',$params->get('layout','default'))", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 19</b> - require include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 19</b> - "include" require's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_custom"<br>
<a name="mod_feed.php"></a>
<h1>mod_feed.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_feed"<br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="mod_finder.php"></a>
<h1>mod_finder.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 15</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 15</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 15</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_finder"<br>
<a name="mod_footer.php"></a>
<h1>mod_footer.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 34</b> - Page-level DocBlock precedes "require JModuleHelper::getLayoutPath('mod_footer',$params->get('layout','default'))", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 34</b> - require include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 34</b> - "include" require's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_footer"<br>
<a name="mod_languages.php"></a>
<h1>mod_languages.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_languages"<br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="mod_latest.php"></a>
<h1>mod_latest.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<a name="mod_logged.php"></a>
<h1>mod_logged.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<a name="mod_login.php"></a>
<h1>mod_login.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_login"<br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="mod_menu.php"></a>
<h1>mod_menu.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<b>Warning on line 14</b> - Page-level DocBlock precedes "require __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_menu"<br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<a name="mod_multilangstatus.php"></a>
<h1>mod_multilangstatus.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require JModuleHelper::getLayoutPath('mod_multilangstatus',$params->get('layout','default'))", use another DocBlock to document the source element<br>
<a name="mod_popular.php"></a>
<h1>mod_popular.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<a name="mod_quickicon.php"></a>
<h1>mod_quickicon.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 11</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<a name="mod_random_image.php"></a>
<h1>mod_random_image.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_random_image"<br>
<a name="mod_related_items.php"></a>
<h1>mod_related_items.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_related_items"<br>
<a name="mod_search.php"></a>
<h1>mod_search.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>
<b>Error on line 12</b> - "include" require_once's DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage mod_search"<br>
<a name="mod_stats.php"></a>
<h1>mod_stats.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 12</b> - Page-level DocBlock precedes "require_once __DIR__.'/helper.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 12</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Joomla-Site"<br>