Browse
For agents
About
SendWP
/
trunk
SendWP
vtrunk
Switch version
trunk
0.0.1
0.0.2
0.0.3
1.0.0
1.0.1
1.0.2
1.0.3
1.0.4
1.1
1.2.10
1.2.3
1.2.4
1.2.5
1.2.6
1.2.7
1.2.8
1.2.9
1.3
1.3.1
1.4.4
1.4.5
1.4.6
1.4.8
Overview
Code
sendwp
/
includes
/
activation.php
activation.php
in SendWP trunk, at includes/activation.php
7 lines
196 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
2
3
register_activation_hook
(
plugin_dir_path
(
__DIR__
)
.
'
sendwp.php
'
,
function
(
)
{
4
if
(
!
sendwp_get_client_secret
(
)
)
{
5
sendwp_set_client_secret
(
sendwp_generate_secret
(
)
)
;
6
}
7
}
)
;