-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathconfig-vars.php
More file actions
4528 lines (3776 loc) · 133 KB
/
config-vars.php
File metadata and controls
4528 lines (3776 loc) · 133 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
<?php
/**
* This file is automatically generated using maintenance/generateConfigSchema.php.
* Do not modify this file manually, edit includes/MainConfigSchema.php instead.
*/
// phpcs:disable
throw new LogicException( 'Do not load config-vars.php, it exists as a documentation stub only' );
/**
* Config variable stub for the ConfigRegistry setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ConfigRegistry
*/
$wgConfigRegistry = null;
/**
* Config variable stub for the Sitename setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::Sitename
*/
$wgSitename = null;
/**
* Config variable stub for the Server setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::Server
*/
$wgServer = null;
/**
* Config variable stub for the CanonicalServer setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::CanonicalServer
*/
$wgCanonicalServer = null;
/**
* Config variable stub for the ServerName setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ServerName
*/
$wgServerName = null;
/**
* Config variable stub for the AssumeProxiesUseDefaultProtocolPorts setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::AssumeProxiesUseDefaultProtocolPorts
*/
$wgAssumeProxiesUseDefaultProtocolPorts = null;
/**
* Config variable stub for the HttpsPort setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::HttpsPort
*/
$wgHttpsPort = null;
/**
* Config variable stub for the ForceHTTPS setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ForceHTTPS
*/
$wgForceHTTPS = null;
/**
* Config variable stub for the ScriptPath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ScriptPath
*/
$wgScriptPath = null;
/**
* Config variable stub for the UsePathInfo setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UsePathInfo
*/
$wgUsePathInfo = null;
/**
* Config variable stub for the Script setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::Script
*/
$wgScript = null;
/**
* Config variable stub for the LoadScript setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::LoadScript
*/
$wgLoadScript = null;
/**
* Config variable stub for the RestPath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::RestPath
*/
$wgRestPath = null;
/**
* Config variable stub for the StylePath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::StylePath
*/
$wgStylePath = null;
/**
* Config variable stub for the LocalStylePath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::LocalStylePath
*/
$wgLocalStylePath = null;
/**
* Config variable stub for the ExtensionAssetsPath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ExtensionAssetsPath
*/
$wgExtensionAssetsPath = null;
/**
* Config variable stub for the ExtensionDirectory setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ExtensionDirectory
*/
$wgExtensionDirectory = null;
/**
* Config variable stub for the StyleDirectory setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::StyleDirectory
*/
$wgStyleDirectory = null;
/**
* Config variable stub for the ArticlePath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ArticlePath
*/
$wgArticlePath = null;
/**
* Config variable stub for the UploadPath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadPath
*/
$wgUploadPath = null;
/**
* Config variable stub for the ImgAuthPath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ImgAuthPath
*/
$wgImgAuthPath = null;
/**
* Config variable stub for the ThumbPath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ThumbPath
*/
$wgThumbPath = null;
/**
* Config variable stub for the UploadDirectory setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadDirectory
*/
$wgUploadDirectory = null;
/**
* Config variable stub for the FileCacheDirectory setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::FileCacheDirectory
*/
$wgFileCacheDirectory = null;
/**
* Config variable stub for the Logo setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::Logo
*/
$wgLogo = null;
/**
* Config variable stub for the Logos setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::Logos
*/
$wgLogos = null;
/**
* Config variable stub for the Favicon setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::Favicon
*/
$wgFavicon = null;
/**
* Config variable stub for the AppleTouchIcon setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::AppleTouchIcon
*/
$wgAppleTouchIcon = null;
/**
* Config variable stub for the ReferrerPolicy setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ReferrerPolicy
*/
$wgReferrerPolicy = null;
/**
* Config variable stub for the TmpDirectory setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::TmpDirectory
*/
$wgTmpDirectory = null;
/**
* Config variable stub for the UploadBaseUrl setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadBaseUrl
*/
$wgUploadBaseUrl = null;
/**
* Config variable stub for the UploadStashScalerBaseUrl setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadStashScalerBaseUrl
* @deprecated since 1.36 Use thumbProxyUrl in $wgLocalFileRepo
*/
$wgUploadStashScalerBaseUrl = null;
/**
* Config variable stub for the ActionPaths setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ActionPaths
*/
$wgActionPaths = null;
/**
* Config variable stub for the MainPageIsDomainRoot setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::MainPageIsDomainRoot
*/
$wgMainPageIsDomainRoot = null;
/**
* Config variable stub for the EnableUploads setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::EnableUploads
*/
$wgEnableUploads = null;
/**
* Config variable stub for the UploadStashMaxAge setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadStashMaxAge
*/
$wgUploadStashMaxAge = null;
/**
* Config variable stub for the EnableAsyncUploads setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::EnableAsyncUploads
*/
$wgEnableAsyncUploads = null;
/**
* Config variable stub for the EnableAsyncUploadsByURL setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::EnableAsyncUploadsByURL
*/
$wgEnableAsyncUploadsByURL = null;
/**
* Config variable stub for the UploadMaintenance setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadMaintenance
*/
$wgUploadMaintenance = null;
/**
* Config variable stub for the IllegalFileChars setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::IllegalFileChars
* @deprecated since 1.41; no longer customizable
*/
$wgIllegalFileChars = null;
/**
* Config variable stub for the DeletedDirectory setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::DeletedDirectory
*/
$wgDeletedDirectory = null;
/**
* Config variable stub for the ImgAuthDetails setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ImgAuthDetails
*/
$wgImgAuthDetails = null;
/**
* Config variable stub for the ImgAuthUrlPathMap setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ImgAuthUrlPathMap
*/
$wgImgAuthUrlPathMap = null;
/**
* Config variable stub for the LocalFileRepo setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::LocalFileRepo
*/
$wgLocalFileRepo = null;
/**
* Config variable stub for the ForeignFileRepos setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ForeignFileRepos
*/
$wgForeignFileRepos = null;
/**
* Config variable stub for the UseInstantCommons setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UseInstantCommons
*/
$wgUseInstantCommons = null;
/**
* Config variable stub for the UseSharedUploads setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UseSharedUploads
*/
$wgUseSharedUploads = null;
/**
* Config variable stub for the SharedUploadDirectory setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SharedUploadDirectory
*/
$wgSharedUploadDirectory = null;
/**
* Config variable stub for the SharedUploadPath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SharedUploadPath
*/
$wgSharedUploadPath = null;
/**
* Config variable stub for the HashedSharedUploadDirectory setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::HashedSharedUploadDirectory
*/
$wgHashedSharedUploadDirectory = null;
/**
* Config variable stub for the RepositoryBaseUrl setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::RepositoryBaseUrl
*/
$wgRepositoryBaseUrl = null;
/**
* Config variable stub for the FetchCommonsDescriptions setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::FetchCommonsDescriptions
*/
$wgFetchCommonsDescriptions = null;
/**
* Config variable stub for the SharedUploadDBname setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SharedUploadDBname
*/
$wgSharedUploadDBname = null;
/**
* Config variable stub for the SharedUploadDBprefix setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SharedUploadDBprefix
*/
$wgSharedUploadDBprefix = null;
/**
* Config variable stub for the CacheSharedUploads setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::CacheSharedUploads
*/
$wgCacheSharedUploads = null;
/**
* Config variable stub for the ForeignUploadTargets setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ForeignUploadTargets
*/
$wgForeignUploadTargets = null;
/**
* Config variable stub for the UploadDialog setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadDialog
*/
$wgUploadDialog = null;
/**
* Config variable stub for the FileBackends setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::FileBackends
*/
$wgFileBackends = null;
/**
* Config variable stub for the LockManagers setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::LockManagers
*/
$wgLockManagers = null;
/**
* Config variable stub for the ShowEXIF setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ShowEXIF
*/
$wgShowEXIF = null;
/**
* Config variable stub for the UpdateCompatibleMetadata setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UpdateCompatibleMetadata
*/
$wgUpdateCompatibleMetadata = null;
/**
* Config variable stub for the AllowCopyUploads setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::AllowCopyUploads
*/
$wgAllowCopyUploads = null;
/**
* Config variable stub for the CopyUploadsDomains setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::CopyUploadsDomains
*/
$wgCopyUploadsDomains = null;
/**
* Config variable stub for the CopyUploadsFromSpecialUpload setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::CopyUploadsFromSpecialUpload
*/
$wgCopyUploadsFromSpecialUpload = null;
/**
* Config variable stub for the CopyUploadProxy setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::CopyUploadProxy
*/
$wgCopyUploadProxy = null;
/**
* Config variable stub for the CopyUploadTimeout setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::CopyUploadTimeout
*/
$wgCopyUploadTimeout = null;
/**
* Config variable stub for the CopyUploadAllowOnWikiDomainConfig setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::CopyUploadAllowOnWikiDomainConfig
*/
$wgCopyUploadAllowOnWikiDomainConfig = null;
/**
* Config variable stub for the MaxUploadSize setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::MaxUploadSize
*/
$wgMaxUploadSize = null;
/**
* Config variable stub for the MinUploadChunkSize setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::MinUploadChunkSize
*/
$wgMinUploadChunkSize = null;
/**
* Config variable stub for the UploadNavigationUrl setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadNavigationUrl
*/
$wgUploadNavigationUrl = null;
/**
* Config variable stub for the UploadMissingFileUrl setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadMissingFileUrl
*/
$wgUploadMissingFileUrl = null;
/**
* Config variable stub for the ThumbnailScriptPath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ThumbnailScriptPath
*/
$wgThumbnailScriptPath = null;
/**
* Config variable stub for the SharedThumbnailScriptPath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SharedThumbnailScriptPath
*/
$wgSharedThumbnailScriptPath = null;
/**
* Config variable stub for the HashedUploadDirectory setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::HashedUploadDirectory
*/
$wgHashedUploadDirectory = null;
/**
* Config variable stub for the CSPUploadEntryPoint setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::CSPUploadEntryPoint
*/
$wgCSPUploadEntryPoint = null;
/**
* Config variable stub for the FileExtensions setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::FileExtensions
*/
$wgFileExtensions = null;
/**
* Config variable stub for the ProhibitedFileExtensions setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ProhibitedFileExtensions
*/
$wgProhibitedFileExtensions = null;
/**
* Config variable stub for the MimeTypeExclusions setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::MimeTypeExclusions
*/
$wgMimeTypeExclusions = null;
/**
* Config variable stub for the CheckFileExtensions setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::CheckFileExtensions
*/
$wgCheckFileExtensions = null;
/**
* Config variable stub for the StrictFileExtensions setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::StrictFileExtensions
*/
$wgStrictFileExtensions = null;
/**
* Config variable stub for the DisableUploadScriptChecks setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::DisableUploadScriptChecks
*/
$wgDisableUploadScriptChecks = null;
/**
* Config variable stub for the UploadSizeWarning setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadSizeWarning
*/
$wgUploadSizeWarning = null;
/**
* Config variable stub for the TrustedMediaFormats setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::TrustedMediaFormats
*/
$wgTrustedMediaFormats = null;
/**
* Config variable stub for the MediaHandlers setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::MediaHandlers
*/
$wgMediaHandlers = null;
/**
* Config variable stub for the NativeImageLazyLoading setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::NativeImageLazyLoading
*/
$wgNativeImageLazyLoading = null;
/**
* Config variable stub for the ParserTestMediaHandlers setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ParserTestMediaHandlers
*/
$wgParserTestMediaHandlers = null;
/**
* Config variable stub for the UseImageResize setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UseImageResize
*/
$wgUseImageResize = null;
/**
* Config variable stub for the UseImageMagick setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UseImageMagick
*/
$wgUseImageMagick = null;
/**
* Config variable stub for the ImageMagickConvertCommand setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ImageMagickConvertCommand
*/
$wgImageMagickConvertCommand = null;
/**
* Config variable stub for the MaxInterlacingAreas setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::MaxInterlacingAreas
*/
$wgMaxInterlacingAreas = null;
/**
* Config variable stub for the SharpenParameter setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SharpenParameter
*/
$wgSharpenParameter = null;
/**
* Config variable stub for the SharpenReductionThreshold setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SharpenReductionThreshold
*/
$wgSharpenReductionThreshold = null;
/**
* Config variable stub for the ImageMagickTempDir setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ImageMagickTempDir
*/
$wgImageMagickTempDir = null;
/**
* Config variable stub for the CustomConvertCommand setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::CustomConvertCommand
*/
$wgCustomConvertCommand = null;
/**
* Config variable stub for the JpegTran setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::JpegTran
*/
$wgJpegTran = null;
/**
* Config variable stub for the JpegPixelFormat setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::JpegPixelFormat
*/
$wgJpegPixelFormat = null;
/**
* Config variable stub for the JpegQuality setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::JpegQuality
*/
$wgJpegQuality = null;
/**
* Config variable stub for the Exiv2Command setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::Exiv2Command
*/
$wgExiv2Command = null;
/**
* Config variable stub for the Exiftool setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::Exiftool
*/
$wgExiftool = null;
/**
* Config variable stub for the SVGConverters setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SVGConverters
*/
$wgSVGConverters = null;
/**
* Config variable stub for the SVGConverter setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SVGConverter
*/
$wgSVGConverter = null;
/**
* Config variable stub for the SVGConverterPath setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SVGConverterPath
*/
$wgSVGConverterPath = null;
/**
* Config variable stub for the SVGMaxSize setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SVGMaxSize
*/
$wgSVGMaxSize = null;
/**
* Config variable stub for the SVGMetadataCutoff setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SVGMetadataCutoff
*/
$wgSVGMetadataCutoff = null;
/**
* Config variable stub for the SVGNativeRendering setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SVGNativeRendering
*/
$wgSVGNativeRendering = null;
/**
* Config variable stub for the SVGNativeRenderingSizeLimit setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SVGNativeRenderingSizeLimit
*/
$wgSVGNativeRenderingSizeLimit = null;
/**
* Config variable stub for the MediaInTargetLanguage setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::MediaInTargetLanguage
*/
$wgMediaInTargetLanguage = null;
/**
* Config variable stub for the MaxImageArea setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::MaxImageArea
*/
$wgMaxImageArea = null;
/**
* Config variable stub for the MaxAnimatedGifArea setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::MaxAnimatedGifArea
*/
$wgMaxAnimatedGifArea = null;
/**
* Config variable stub for the TiffThumbnailType setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::TiffThumbnailType
*/
$wgTiffThumbnailType = null;
/**
* Config variable stub for the ThumbnailEpoch setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ThumbnailEpoch
*/
$wgThumbnailEpoch = null;
/**
* Config variable stub for the AttemptFailureEpoch setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::AttemptFailureEpoch
*/
$wgAttemptFailureEpoch = null;
/**
* Config variable stub for the IgnoreImageErrors setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::IgnoreImageErrors
*/
$wgIgnoreImageErrors = null;
/**
* Config variable stub for the GenerateThumbnailOnParse setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::GenerateThumbnailOnParse
*/
$wgGenerateThumbnailOnParse = null;
/**
* Config variable stub for the ShowArchiveThumbnails setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ShowArchiveThumbnails
*/
$wgShowArchiveThumbnails = null;
/**
* Config variable stub for the EnableAutoRotation setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::EnableAutoRotation
*/
$wgEnableAutoRotation = null;
/**
* Config variable stub for the Antivirus setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::Antivirus
*/
$wgAntivirus = null;
/**
* Config variable stub for the AntivirusSetup setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::AntivirusSetup
*/
$wgAntivirusSetup = null;
/**
* Config variable stub for the AntivirusRequired setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::AntivirusRequired
*/
$wgAntivirusRequired = null;
/**
* Config variable stub for the VerifyMimeType setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::VerifyMimeType
*/
$wgVerifyMimeType = null;
/**
* Config variable stub for the MimeTypeFile setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::MimeTypeFile
*/
$wgMimeTypeFile = null;
/**
* Config variable stub for the MimeInfoFile setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::MimeInfoFile
*/
$wgMimeInfoFile = null;
/**
* Config variable stub for the MimeDetectorCommand setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::MimeDetectorCommand
*/
$wgMimeDetectorCommand = null;
/**
* Config variable stub for the TrivialMimeDetection setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::TrivialMimeDetection
*/
$wgTrivialMimeDetection = null;
/**
* Config variable stub for the XMLMimeTypes setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::XMLMimeTypes
*/
$wgXMLMimeTypes = null;
/**
* Config variable stub for the ImageLimits setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ImageLimits
*/
$wgImageLimits = null;
/**
* Config variable stub for the ThumbLimits setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ThumbLimits
*/
$wgThumbLimits = null;
/**
* Config variable stub for the ThumbnailNamespaces setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ThumbnailNamespaces
*/
$wgThumbnailNamespaces = null;
/**
* Config variable stub for the ThumbnailSteps setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ThumbnailSteps
*/
$wgThumbnailSteps = null;
/**
* Config variable stub for the ThumbnailStepsRatio setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ThumbnailStepsRatio
*/
$wgThumbnailStepsRatio = null;
/**
* Config variable stub for the ThumbnailBuckets setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ThumbnailBuckets
*/
$wgThumbnailBuckets = null;
/**
* Config variable stub for the ThumbnailMinimumBucketDistance setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ThumbnailMinimumBucketDistance
*/
$wgThumbnailMinimumBucketDistance = null;
/**
* Config variable stub for the UploadThumbnailRenderMap setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadThumbnailRenderMap
*/
$wgUploadThumbnailRenderMap = null;
/**
* Config variable stub for the UploadThumbnailRenderMethod setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadThumbnailRenderMethod
*/
$wgUploadThumbnailRenderMethod = null;
/**
* Config variable stub for the UploadThumbnailRenderHttpCustomHost setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadThumbnailRenderHttpCustomHost
*/
$wgUploadThumbnailRenderHttpCustomHost = null;
/**
* Config variable stub for the UploadThumbnailRenderHttpCustomDomain setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UploadThumbnailRenderHttpCustomDomain
*/
$wgUploadThumbnailRenderHttpCustomDomain = null;
/**
* Config variable stub for the UseTinyRGBForJPGThumbnails setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UseTinyRGBForJPGThumbnails
*/
$wgUseTinyRGBForJPGThumbnails = null;
/**
* Config variable stub for the GalleryOptions setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::GalleryOptions
*/
$wgGalleryOptions = null;
/**
* Config variable stub for the ThumbUpright setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ThumbUpright
*/
$wgThumbUpright = null;
/**
* Config variable stub for the DirectoryMode setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::DirectoryMode
*/
$wgDirectoryMode = null;
/**
* Config variable stub for the ResponsiveImages setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ResponsiveImages
*/
$wgResponsiveImages = null;
/**
* Config variable stub for the ImagePreconnect setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::ImagePreconnect
*/
$wgImagePreconnect = null;
/**
* Config variable stub for the DjvuUseBoxedCommand setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::DjvuUseBoxedCommand
*/
$wgDjvuUseBoxedCommand = null;
/**
* Config variable stub for the DjvuDump setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::DjvuDump
*/
$wgDjvuDump = null;
/**
* Config variable stub for the DjvuRenderer setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::DjvuRenderer
*/
$wgDjvuRenderer = null;
/**
* Config variable stub for the DjvuTxt setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::DjvuTxt
*/
$wgDjvuTxt = null;
/**
* Config variable stub for the DjvuPostProcessor setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::DjvuPostProcessor
*/
$wgDjvuPostProcessor = null;
/**
* Config variable stub for the DjvuOutputExtension setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::DjvuOutputExtension
*/
$wgDjvuOutputExtension = null;
/**
* Config variable stub for the EmergencyContact setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::EmergencyContact
*/
$wgEmergencyContact = null;
/**
* Config variable stub for the PasswordSender setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::PasswordSender
*/
$wgPasswordSender = null;
/**
* Config variable stub for the NoReplyAddress setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::NoReplyAddress
*/
$wgNoReplyAddress = null;
/**
* Config variable stub for the EnableEmail setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::EnableEmail
*/
$wgEnableEmail = null;
/**
* Config variable stub for the EnableUserEmail setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::EnableUserEmail
*/
$wgEnableUserEmail = null;
/**
* Config variable stub for the EnableSpecialMute setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::EnableSpecialMute
*/
$wgEnableSpecialMute = null;
/**
* Config variable stub for the EnableUserEmailMuteList setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::EnableUserEmailMuteList
*/
$wgEnableUserEmailMuteList = null;
/**
* Config variable stub for the UserEmailUseReplyTo setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UserEmailUseReplyTo
*/
$wgUserEmailUseReplyTo = null;
/**
* Config variable stub for the PasswordReminderResendTime setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::PasswordReminderResendTime
*/
$wgPasswordReminderResendTime = null;
/**
* Config variable stub for the NewPasswordExpiry setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::NewPasswordExpiry
*/
$wgNewPasswordExpiry = null;
/**
* Config variable stub for the UserEmailConfirmationTokenExpiry setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::UserEmailConfirmationTokenExpiry
*/
$wgUserEmailConfirmationTokenExpiry = null;
/**
* Config variable stub for the PasswordExpirationDays setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::PasswordExpirationDays
*/
$wgPasswordExpirationDays = null;
/**
* Config variable stub for the PasswordExpireGrace setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::PasswordExpireGrace
*/
$wgPasswordExpireGrace = null;
/**
* Config variable stub for the SMTP setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::SMTP
*/
$wgSMTP = null;
/**
* Config variable stub for the AdditionalMailParams setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::AdditionalMailParams
*/
$wgAdditionalMailParams = null;
/**
* Config variable stub for the AllowHTMLEmail setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::AllowHTMLEmail
*/
$wgAllowHTMLEmail = null;
/**
* Config variable stub for the EnotifFromEditor setting, for use by phpdoc and IDEs.
* @see MediaWiki\MainConfigSchema::EnotifFromEditor
*/
$wgEnotifFromEditor = null;