-
-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathconstants.php
More file actions
1275 lines (1050 loc) · 22.9 KB
/
Copy pathconstants.php
File metadata and controls
1275 lines (1050 loc) · 22.9 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
/*
* Textpattern Content Management System
* https://textpattern.com/
*
* Copyright (C) 2026 The Textpattern Development Team
*
* This file is part of Textpattern.
*
* Textpattern is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, version 2.
*
* Textpattern is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Textpattern. If not, see <https://www.gnu.org/licenses/>.
*/
/**
* Constants.
*/
/**
* Textpattern version.
*/
$thisversion = '5.0.0-dev';
/**
* Development environment?
*
* Set false for releases.
*/
$txp_is_dev = true;
if (!defined('TXP_DEBUG')) {
/**
* If set to "1", dumps debug log to the temp directory.
*
* This constant can be overridden from the config.php.
*
* @package Debug
* @example
* define('TXP_DEBUG', 1);
*/
define('TXP_DEBUG', 0);
}
/**
* Comment spam status.
*
* @package Comment
*/
define('SPAM', -1);
/**
* Comment moderate status.
*
* @package Comment
*/
define('MODERATE', 0);
/**
* Comment spam status.
*
* @package Comment
*/
define('VISIBLE', 1);
/**
* Comment reload status.
*
* @package Comment
*/
define('RELOAD', -99);
if (!defined('HELP_URL')) {
/**
* The location where help documentation is fetched.
*
* This constant can be overridden from the config.php.
*
* @example
* define('HELP_URL', 'https://example.com/help/');
*/
define('HELP_URL', 'https://textile-lang.com');
}
/**
* Do not format text.
*
* @var string
* @package Textfilter
*/
define('LEAVE_TEXT_UNTOUCHED', '0');
/**
* Format text with Textile.
*
* @var string
* @package Textfilter
*/
define('USE_TEXTILE', '1');
/**
* Replace line breaks with HTML <br /> tag.
*
* @var string
* @package Textfilter
*/
define('CONVERT_LINEBREAKS', '2');
/**
* System is Windows if TRUE.
*
* @package System
*/
define('IS_WIN', strpos(strtoupper(PHP_OS), 'WIN') === 0);
/**
* Directory separator character.
*
* @package File
*/
define('DS', defined('DIRECTORY_SEPARATOR') ? DIRECTORY_SEPARATOR : (IS_WIN ? '\\' : '/'));
/**
* Magic quotes GPC, TRUE if on.
*
* @package Network
* @deprecated in 4.8.0
*/
define('MAGIC_QUOTES_GPC', false);
if (!defined('REGEXP_UTF8')) {
/**
* TRUE if the system supports UTF-8 regex patterns.
*
* This constant can be overridden from the config.php in case UTF-8 regex
* patterns cause issues.
*
* @package System
* @example
* define('REGEXP_UTF8', false);
*/
define('REGEXP_UTF8', @preg_match('@\pL@u', 'q'));
}
/**
* Permlink URL mode.
*
* @package URL
* @deprecated ?
*/
define('PERMLINKURL', 0);
/**
* Pagelink URL mode.
*
* @package URL
* @deprecated ?
*/
define('PAGELINKURL', 1);
if (!defined('EXTRA_MEMORY')) {
/**
* Allocated extra memory.
*
* Used when creating thumbnails for instance.
*
* This constant can be overridden from the config.php.
*
* @package System
* @example
* define('EXTRA_MEMORY', '64M');
*/
define('EXTRA_MEMORY', '32M');
}
/**
* PHP is run as CGI.
*
* @package System
*/
define('IS_CGI', strpos(PHP_SAPI, 'cgi') === 0);
/**
* PHP is run as FCGI.
*
* @package System
*/
define('IS_FASTCGI', IS_CGI and empty($_SERVER['FCGI_ROLE']) and empty($_ENV['FCGI_ROLE']));
/**
* PHP is run as Apache module.
*
* @package System
*/
define('IS_APACHE', !IS_CGI and strpos(PHP_SAPI, 'apache') === 0);
/**
* Preference is user-private.
*
* @package Pref
* @see set_pref()
*/
define('PREF_PRIVATE', true);
/**
* Preference is global.
*
* @package Pref
* @see set_pref()
*/
define('PREF_GLOBAL', false);
/**
* Preference type is basic.
*
* @package Pref
* @deprecated in 4.6.0
* @see PREF_CORE
* @see set_pref()
*/
define('PREF_BASIC', 0);
/**
* Preference type is a core setting.
*
* @package Pref
* @see set_pref()
*/
define('PREF_CORE', 0);
/**
* Preference type is advanced.
*
* @package Pref
* @deprecated in 4.6.0
* @see PREF_CORE
* @see PREF_PLUGIN
* @see set_pref()
*/
define('PREF_ADVANCED', 1);
/**
* Preference type is a plugin or third party setting.
*
* @package Pref
* @see set_pref()
*/
define('PREF_PLUGIN', 1);
/**
* Preference type is hidden.
*
* @package Pref
* @see set_pref()
*/
define('PREF_HIDDEN', 2);
/**
* Preference type is from a theme
*
* @package Pref
* @see \Textpattern\Admin\Theme
*/
define('PREF_THEME', 3);
/**
* The character to use between items in key/name fields
*
* NB: Don't use dot (.) because they are often stripped out of HTML
* form name= attributes during transmission to the server.
*
* @package Pref
* @see \Textpattern\Admin\Theme
*/
define('PREF_THEME_DELIMITER', '|');
/**
* Plugin flag: has an options page.
*/
define('PLUGIN_HAS_PREFS', 0x0001);
/**
* Plugin flag: offers lifecycle callbacks.
*/
define('PLUGIN_LIFECYCLE_NOTIFY', 0x0002);
/**
* Reserved bits for use by Textpattern core.
*/
define('PLUGIN_RESERVED_FLAGS', 0x0fff);
if (!defined('PLUGINPATH')) {
/**
* Plugin storage directory.
*
* This constant can be overridden from the config.php.
*
* @package Files
* @example
* define('PLUGINPATH', $txpcfg['txpath'] . '/plugins');
*/
global $txpcfg;
$admin_path = (isset($txpcfg['multisite_root_path'])) ? $txpcfg['multisite_root_path'].DS.'admin' : txpath;
define('PLUGINPATH', $admin_path.DS.'plugins');
}
if (!defined('PLUGIN_REPO_URL')) {
/**
* Remote plugin repository.
*
* This constant can be overridden from the config.php.
*
* @package Plugin
* @since 4.9.0
* @example
* define('PLUGIN_REPO_URL', 'https://example.com/my-plugins');
*/
define('PLUGIN_REPO_URL', 'https://plugins.textpattern.com');
}
if (!defined('LOG_REFERER_PROTOCOLS')) {
/**
* Sets accepted protocols for HTTP referrer header.
*
* This constant can be overridden from the config.php.
*
* @package Log
* @since 4.6.0
* @example
* define('LOG_REFERER_PROTOCOLS', 'http');
*/
define('LOG_REFERER_PROTOCOLS', 'http, https');
}
if (!defined('PASSWORD_LENGTH')) {
/**
* Password default length, in characters.
*
* This constant can be overridden from the config.php.
*
* @package User
* @example
* define('PASSWORD_LENGTH', 14);
*/
define('PASSWORD_LENGTH', 16);
}
if (!defined('PASSWORD_COMPLEXITY')) {
/**
* Password iteration strength count.
*
* This constant can be overridden from the config.php.
*
* @package User
* @example
* define('PASSWORD_COMPLEXITY', 2);
*/
define('PASSWORD_COMPLEXITY', 8);
}
if (!defined('PASSWORD_PORTABILITY')) {
/**
* Passwords are created portable if TRUE.
*
* This constant can be overridden from the config.php.
*
* @package User
* @example
* define('PASSWORD_PORTABILITY', false);
*/
define('PASSWORD_PORTABILITY', true);
}
if (!defined('PASSWORD_SYMBOLS')) {
/**
* Symbols used in auto-generated passwords.
*
* This constant can be overridden from the config.php.
*
* @package User
* @since 4.6.0
* @see Textpattern\Password\Generator
* @example
* define('PASSWORD_SYMBOLS', '23456789ABCDEFGHJKLMNPQRSTUYXZabcdefghijkmnopqrstuvwxyz_?!-@$%^*;:');
*/
define('PASSWORD_SYMBOLS', '23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz_-!?.');
}
if (!defined('HASHING_ALGORITHM')) {
/**
* Algorithm to use for hashing passwords/reset requests.
*
* This constant can be overridden from the config.php.
*
* @package User
* @since 4.6.0
* @see PHP's hash_algos() function
* @example
* define('HASHING_ALGORITHM', 'whirlpool');
*/
define('HASHING_ALGORITHM', 'ripemd256');
}
if (!defined('SALT_LENGTH')) {
/**
* Length of salt/selector hashes.
*
* This constant can be overridden from the config.php.
*
* @package User
* @since 4.6.0
* @example
* define('SALT_LENGTH', '80');
*/
define('SALT_LENGTH', '64');
}
if (!defined('RESET_EXPIRY_MINUTES')) {
/**
* Length of time (in minutes) that a password reset request remains valid.
*
* This constant can be overridden from the config.php.
* Values under 60 may fall foul of DST changeover times, but meh.
*
* @package User
* @since 4.6.0
* @example
* define('RESET_EXPIRY_MINUTES', '120');
*/
define('RESET_EXPIRY_MINUTES', '90');
}
if (!defined('RESET_RATE_LIMIT_MINUTES')) {
/**
* Minutes during which multiple user-submitted password reset requests are ignored.
*
* This constant can be overridden from the config.php.
*
* @package User
* @since 4.6.0
* @example
* define('RESET_RATE_LIMIT_MINUTES', '15');
*/
define('RESET_RATE_LIMIT_MINUTES', '5');
}
if (!defined('ACTIVATION_EXPIRY_HOURS')) {
/**
* Length of time (in hours) that a password activation (new account) link remains valid.
*
* This constant can be overridden from the config.php.
*
* @package User
* @since 4.6.0
* @example
* define('ACTIVATION_EXPIRY_HOURS', '48');
*/
define('ACTIVATION_EXPIRY_HOURS', '168');
}
if (!defined('LOGIN_COOKIE_HTTP_ONLY')) {
/**
* If TRUE, login cookie is set just for HTTP.
*
* This constant can be overridden from the config.php.
*
* @package CSRF
* @example
* define('LOGIN_COOKIE_HTTP_ONLY', false);
*/
define('LOGIN_COOKIE_HTTP_ONLY', true);
}
if (!defined('X_FRAME_OPTIONS')) {
/**
* Sets X-Frame-Options HTTP header's value.
*
* This is used to prevent framing of authenticated pages.
*
* This constant can be overridden from the config.php.
*
* @package CSRF
* @example
* define('X_FRAME_OPTIONS', 'DENY');
*/
define('X_FRAME_OPTIONS', 'SAMEORIGIN');
}
if (!defined('CONTENT_SECURITY_POLICY')) {
/**
* Sets Content-Security-Policy HTTP header's value.
*
* This constant can be overridden from the config.php.
*
* @since 4.7.0
* @package CSRF
*/
define('CONTENT_SECURITY_POLICY', "frame-ancestors 'self'");
}
if (!defined('AJAX_TIMEOUT')) {
/**
* AJAX timeout in seconds.
*
* This constant can be overridden from the config.php.
*
* @package Ajax
* @example
* define('AJAX_TIMEOUT', 10);
*/
define('AJAX_TIMEOUT', 1000 * max(30, (int)ini_get('max_execution_time')));
}
/**
* Render on initial synchronous page load.
*
* @since 4.5.0
* @package Ajax
*/
define('PARTIAL_STATIC', 0);
/**
* Render as HTML partial on every page load.
*
* @since 4.5.0
* @package Ajax
*/
define('PARTIAL_VOLATILE', 1);
/**
* Render as an element's jQuery.val() on every page load.
*
* @since 4.5.0
* @package Ajax
*/
define('PARTIAL_VOLATILE_VALUE', 2);
/**
* Draft article status ID.
*
* @package Article
*/
define('STATUS_DRAFT', 1);
/**
* Hidden article status ID.
*
* @package Article
*/
define('STATUS_HIDDEN', 2);
/**
* Pending article status ID.
*
* @package Article
*/
define('STATUS_PENDING', 3);
/**
* Live article status ID.
*
* @package Article
*/
define('STATUS_LIVE', 4);
/**
* Sticky article status ID.
*
* @package Article
*/
define('STATUS_STICKY', 5);
if (!defined('WRITE_RECENT_ARTICLES_COUNT')) {
/**
* Number of recent articles displayed on the Write panel.
*
* This constant can be overridden from the config.php.
*
* @package Admin\Article
* @since 4.6.0
* @example
* define('WRITE_RECENT_ARTICLES_COUNT', 5);
*/
define('WRITE_RECENT_ARTICLES_COUNT', 10);
}
/**
* Input size extra large.
*
* @since 4.5.0
* @package Form
*/
define('INPUT_XLARGE', 96);
/**
* Input size large.
*
* @since 4.5.0
* @package Form
*/
define('INPUT_LARGE', 64);
/**
* Input size regular.
*
* @since 4.5.0
* @package Form
*/
define('INPUT_REGULAR', 32);
/**
* Input size medium.
*
* @since 4.5.0
* @package Form
*/
define('INPUT_MEDIUM', 16);
/**
* Input size small.
*
* @since 4.5.0
* @package Form
*/
define('INPUT_SMALL', 8);
/**
* Input size extra small.
*
* @since 4.5.0
* @package Form
*/
define('INPUT_XSMALL', 4);
/**
* Input size tiny.
*
* @since 4.5.0
* @package Form
*/
define('INPUT_TINY', 2);
/**
* Textarea height large.
*
* @since 4.6.0
* @package Form
*/
define('TEXTAREA_HEIGHT_LARGE', 32);
/**
* Textarea height regular.
*
* @since 4.6.0
* @package Form
*/
define('TEXTAREA_HEIGHT_REGULAR', 16);
/**
* Textarea height medium.
*
* @since 4.6.0
* @package Form
*/
define('TEXTAREA_HEIGHT_MEDIUM', 8);
/**
* Textarea height small.
*
* @since 4.6.0
* @package Form
*/
define('TEXTAREA_HEIGHT_SMALL', 4);
/**
* Required PHP version.
*
* @since 4.5.0
* @package System
*/
define('REQUIRED_PHP_VERSION', '5.6.0');
/**
* Required OPENSSL version.
*
* Used when fetching resources via file_get_contents() or cURL.
*
* @since 4.8.5
* @package System
*/
define('REQUIRED_OPENSSL_VERSION', '268439567');
/**
* Hashing algorithm used for checksums (and its strlen() output in bytes).
*
* Can be cryptographically weaker than the password hashing algorithm, with
* focus on speed and minimising collisions.
*
* @since 4.9.0
* @package Debug
* @see check_file_integrity()
*/
define('CHECKSUM_ALGORITHM', 'tiger192,3');
define('CHECKSUM_BYTES', 48);
/**
* File integrity status good.
*
* @since 4.6.0
* @package Debug
* @see check_file_integrity()
*/
define('INTEGRITY_GOOD', 1);
/**
* File integrity status modified.
*
* @since 4.6.0
* @package Debug
* @see check_file_integrity()
*/
define('INTEGRITY_MODIFIED', 2);
/**
* File integrity not readable.
*
* @since 4.6.0
* @package Debug
* @see check_file_integrity()
*/
define('INTEGRITY_NOT_READABLE', 3);
/**
* File integrity file missing.
*
* @since 4.6.0
* @package Debug
* @see check_file_integrity()
*/
define('INTEGRITY_MISSING', 4);
/**
* File integrity not a file.
*
* @since 4.6.0
* @package Debug
* @see check_file_integrity()
*/
define('INTEGRITY_NOT_FILE', 5);
/**
* Return integrity status.
*
* @since 4.6.0
* @package Debug
* @see check_file_integrity()
*/
define('INTEGRITY_STATUS', 0x1);
/**
* Return integrity MD5 hashes.
*
* @since 4.6.0
* @deprecated 4.9.0
* @package Debug
* @see check_file_integrity()
*/
define('INTEGRITY_MD5', 0x2);
/**
* Return integrity hashes using the current CHECKSUM_ALGORITHM.
*
* Replaces INTEGRITY_MD5 (and has the same value so can be used interchangeably).
*
* @since 4.9.0
* @package Debug
* @see check_file_integrity()
*/
define('INTEGRITY_HASH', 0x2);
/**
* Return full paths.
*
* @since 4.6.0
* @package Debug
* @see check_file_integrity()
*/
define('INTEGRITY_REALPATH', 0x4);
/**
* Return a digest.
*
* @since 4.6.0
* @package Debug
* @see check_file_integrity()
*/
define('INTEGRITY_DIGEST', 0x8);
/**
* Return a parsed checksum file's contents.
*
* @since 4.6.0
* @package Debug
* @see check_file_integrity()
*/
define('INTEGRITY_TABLE', 0x10);
/**
* Link to an external script.
*
* @since 4.6.0
* @package HTML
* @see script_js()
*/
define('TEXTPATTERN_SCRIPT_URL', 0x1);
/**
* Attach version number to script URL if stable.
*
* The install is considered as a 'stable' if the version number doesn't contain
* a '-dev' tag.
*
* @since 4.6.0
* @package HTML
* @see script_js()
*/
define('TEXTPATTERN_SCRIPT_ATTACH_VERSION', 0x2);
/**
* The localised string is owned by the core system.
*
* The string will be updated from the remote language server.
*
* @since 4.6.0
* @package L10n
*/
define('TEXTPATTERN_LANG_OWNER_SYSTEM', '');
/**
* The localised string is owned by the individual site.
*
* @since 4.6.0
* @package L10n
*/
define('TEXTPATTERN_LANG_OWNER_SITE', 'site');
if (!defined('TEXTPATTERN_DEFAULT_LANG')) {
/**
* The default/fallback language identifier.
*
* @since 4.7.0
* @package L10n
*/
define('TEXTPATTERN_DEFAULT_LANG', 'en');
}
/**
* Language flags;
*
* @since 4.7.0
* @package L10n
*/
define('TEXTPATTERN_LANG_ACTIVE', 0x1);
define('TEXTPATTERN_LANG_INSTALLED', 0x2);
define('TEXTPATTERN_LANG_AVAILABLE', 0x4);
/**
* Strip empty values.
*
* @since 4.6.0
* @package HTML
* @see join_atts(), do_list_unique()
*/
define('TEXTPATTERN_STRIP_NONE', 0);
define('TEXTPATTERN_STRIP_EMPTY', 0x1);
define('TEXTPATTERN_STRIP_EMPTY_STRING', 0x2);
define('TEXTPATTERN_STRIP_TXP', 0x4);
/**
* Sends an adaptive announcement.
*
* The rendered message type is based on the context mode.
*
* @since 4.6.0
* @package Announce
* @see announce()
*/
define('TEXTPATTERN_ANNOUNCE_ADAPTIVE', 0x1);
/**
* Sends a modal announcement.
*
* The announcement is instructed to be rendered as soon as possible, as a modal
* alert window.
*
* @since 4.6.0
* @package Announce
* @see announce()
*/
define('TEXTPATTERN_ANNOUNCE_MODAL', 0x2);