FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
wordpress-https/view/settings.php at master · ashucg/wordpress-https · GitHub
ashucg
/
wordpress-https
Public
forked from
mvied/wordpress-https
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
wordpress-https
/
view
/
settings.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
121 lines (117 loc) · 3.72 KB
Breadcrumbs
wordpress-https
/
view
/
settings.php
Copy path
File metadata and controls
121 lines (117 loc) · 3.72 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<?php
if
( !
defined
(
'
ABSPATH
'
) )
exit
;
require_once
(
'
includes/template.php
'
);
// WordPress Dashboard Functions
?>
<div class="wphttps-message-wrap" id="message-wrap"><div id="message-body"></div></div>
<div class="wrap" id="wphttps-main">
<div id="icon-options-https" class="icon32"><br /></div>
<h2>
<?php
_e
(
'
HTTPS
'
,
'
wordpress-https
'
);
?>
</h2>
<?php
wp_nonce_field
(
'
closedpostboxes
'
,
'
closedpostboxesnonce
'
,
false
);
wp_nonce_field
(
'
meta-box-order
'
,
'
meta-box-order-nonce
'
,
false
);
?>
<div id="poststuff" class="columns metabox-holder">
<div class="postbox-container column-primary">
<?php
do_meta_boxes
(
'
toplevel_page_
'
.
$
this
->
getSlug
(),
'
main
'
,
$
this
);
?>
</div>
<div class="postbox-container column-secondary">
<?php
do_meta_boxes
(
'
toplevel_page_
'
.
$
this
->
getSlug
(),
'
side
'
,
$
this
);
?>
</div>
</div>
<div id="regex-help">
<h3>
<?php
_e
(
'
Expressions
'
,
'
wordpress-https
'
);
?>
</h3>
<table class="regex-help">
<tr>
<td>[abc]</td>
<td>
<?php
_e
(
'
A single character: a, b, or c
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>[^abc]</td>
<td>
<?php
_e
(
'
Any single character <em>but</em> a, b, or c
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>[a-z]</td>
<td>
<?php
_e
(
'
Any character in the range a-z
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>[a-zA-Z]</td>
<td>
<?php
_e
(
'
Any character in the range a-z or A-Z (any alphabetical character)
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>\s</td>
<td>
<?php
_e
(
'
Any whitespace character [ \t\n\r\f\v]
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>\S</td>
<td>
<?php
_e
(
'
Any non-whitespace character [^ \t\n\r\f\v]
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>\d</td>
<td>
<?php
_e
(
'
Any digit [0-9]
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>\D</td>
<td>
<?php
_e
(
'
Any non-digit [^0-9]
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>\w</td>
<td>
<?php
_e
(
'
Any word character [a-zA-Z0-9_]
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>\W</td>
<td>
<?php
_e
(
'
Any non-word character [^a-zA-Z0-9_]
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>\b</td>
<td>
<?php
_e
(
'
A word boundary between \w and \W
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>\B</td>
<td>
<?php
_e
(
'
A position that is not a word boundary
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>|</td>
<td>
<?php
_e
(
'
Alternation: matches either the subexpression to the left or to the right
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>()</td>
<td>
<?php
_e
(
'
Grouping: group all together for repetition operators
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>^</td>
<td>
<?php
_e
(
'
Beginning of the string
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>$</td>
<td>
<?php
_e
(
'
End of the string
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
</table>
<h3>
<?php
_e
(
'
Repetition Operators
'
,
'
wordpress-https
'
);
?>
</h3>
<table class="regex-help">
<tr>
<td>{n,m}</td>
<td>
<?php
_e
(
'
Match the previous item at least <em>n</em> times but no more than <em>m</em> times
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>{n,}</td>
<td>
<?php
_e
(
'
Match the previous item <em>n</em> or more times
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>{n}</td>
<td>
<?php
_e
(
'
Match exactly <em>n</em> occurrences of the previous item
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>?</td>
<td>
<?php
_e
(
'
Match 0 or 1 occurrences of the previous item {0,1}
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>+</td>
<td>
<?php
_e
(
'
Match 1 or more occurrences of the previous item {1,}
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
<tr>
<td>*</td>
<td>
<?php
_e
(
'
Match 0 or more occurrences of the previous item {0,}
'
,
'
wordpress-https
'
);
?>
</td>
</tr>
</table>
</div>
</div>
Back
|
FazBrowse Home
|
New Git URL