Browse
For agents
About
FileBird – WordPress Media Library Folders & File Manager
/
6.3.4
FileBird – WordPress Media Library Folders & File Manager
v6.3.4
Switch version
6.5.8
6.5.7
6.5.5
6.5.4
trunk
4.3.1
5.1.6
5.3
5.3.2
5.4.3
5.4.4
5.4.5
5.5
5.5.3
5.5.5
5.5.8
5.5.8.1
5.6
5.6.1
5.6.2
5.6.3
5.6.4
6.2.3
6.2.5
6.3
All 36 releases
Overview
Code
filebird
/
includes
/
Model
/
ThemeModel.php
ThemeModel.php
in FileBird – WordPress Media Library Folders & File Manager 6.3.4, at includes/Model/ThemeModel.php
16 lines
329 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
namespace
FileBird
\
Model
;
3
4
defined
(
'
ABSPATH
'
)
||
exit
;
5
6
class
ThemeModel
{
7
const
COLORS
=
array
(
8
'
default
'
=>
'
#8f8f8f
'
,
9
'
windows
'
=>
'
#F3C73E
'
,
10
'
dropbox
'
=>
'
#88C1FC
'
,
11
)
;
12
13
public
static
function
getThemeColor
(
string
$
themeName
)
:
string
{
14
return
self
::
COLORS
[
$
themeName
]
??
self
::
COLORS
[
'
default
'
]
;
15
}
16
}