Browse
For agents
About
Download Manager
/
3.3.67
Download Manager
v3.3.67
Switch version
3.3.68
3.3.67
3.3.66
3.3.65
3.3.64
3.3.63
3.3.62
3.3.61
3.3.60
3.3.59
3.3.58
3.3.57
3.3.56
trunk
2.1.3
2.3.0
2.5.96
2.5.97
2.6.2
2.6.96
2.8.3
2.9.99
3.0.4
3.1.05
3.1.07
All 176 releases
Overview
Code
download-manager
/
src
/
__
/
Updater.php
Updater.php
23 lines
242 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
4
namespace
WPDM
\
__
;
5
6
7
class
Updater
8
{
9
function
__construct
(
)
10
{
11
12
}
13
14
function
getLatestVersions
(
)
15
{
16
$
latest
=
get_option
(
'
wpdm_latest
'
,
[
]
)
;
17
$
latest
=
(
array
)
$
latest
;
18
return
$
latest
;
19
}
20
21
22
}
23