Browse
For agents
About
Essential Form – The lightest plugin for contact forms, ultra lightweight and no spam
/
0.0.8
Essential Form – The lightest plugin for contact forms, ultra lightweight and no spam
v0.0.8
Switch version
trunk
0.0.1
0.0.2
0.0.3
0.0.4
0.0.5
0.0.6
0.0.6.RC-1
0.0.7
0.0.8
0.0.9
1.0.0
1.0.1
1.0.2
Overview
Code
essential-form
/
plugin-activation.php
plugin-activation.php
in Essential Form – The lightest plugin for contact forms, ultra lightweight and no spam 0.0.8, at plugin-activation.php
14 lines
347 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
defined
(
'
ABSPATH
'
)
||
exit
;
2
3
$
opts
=
get_site_option
(
'
essential_form
'
)
;
4
if
(
!
$
opts
)
{
5
$
opts
=
array
(
)
;
6
}
7
if
(
!
isset
(
$
opts
[
'
activation_keys
'
]
)
)
{
8
$
keys
=
array
(
)
;
9
for
(
$
n
=
0
;
$
n
<
21
;
++
$
n
)
{
10
$
keys
[
]
=
uniqid
(
)
;
11
}
12
$
opts
[
'
activation_keys
'
]
=
$
keys
;
13
essential_form_update_option
(
'
essential_form
'
,
$
opts
)
;
14
}