Browse
For agents
About
Texty – SMS Notification for WordPress, WooCommerce, Dokan and more
/
0.2
Texty – SMS Notification for WordPress, WooCommerce, Dokan and more
v0.2
Switch version
2.0.2
trunk
0.2
1.0
1.1
1.1.1
1.1.2
1.1.3
1.1.4
1.1.5
2.0.0
2.0.1
Overview
Code
texty
/
includes
/
Install.php
Install.php
in Texty – SMS Notification for WordPress, WooCommerce, Dokan and more 0.2, at includes/Install.php
23 lines
355 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
namespace
Texty
;
4
5
/**
6
* Installer Class
7
*/
8
class
Install
{
9
10
/**
11
* Run the isntaller
12
*/
13
public
function
run
(
)
{
14
$
installed
=
get_option
(
'
texty_installed
'
)
;
15
16
if
(
!
$
installed
)
{
17
update_option
(
'
texty_installed
'
,
time
(
)
)
;
18
}
19
20
update_option
(
'
texty_version
'
,
TEXTY_VERSION
)
;
21
}
22
}
23