Browse
For agents
About
Force Refresh
/
2.1.4
Force Refresh
v2.1.4
Switch version
3.2.1
3.2.0
3.1.2
3.1.1
3.1.0
trunk
1.0.0
1.1.0
1.1.1
1.1.2
1.2.0
2.0.0
2.1.0
2.1.1
2.1.2
2.1.3
2.1.4
2.1.5
2.1.6
2.10.0
2.10.1
2.10.2
2.11.0
2.11.1
2.12.0
All 54 releases
Overview
Code
force-refresh
/
includes
/
actions
/
admin
/
inc.admin-css.php
inc.admin-css.php
in Force Refresh 2.1.4, at includes/actions/admin/inc.admin-css.php
22 lines
367 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
* Our action to enqueue our Admin CSS.
4
*
5
*
@package
ForceRefresh
6
*/
7
8
namespace
JordanLeven
\
Plugins
\
ForceRefresh
;
9
10
/**
11
* Hook used to enqueue CSS and JS.
12
*
13
*
@return
void
14
*/
15
add_action
(
16
'
admin_head
'
,
17
function
(
)
{
18
//
Include the admin CSS.
19
add_style
(
'
force-refresh-admin-css
'
,
'
/dist/css/force-refresh-admin.css
'
)
;
20
}
21
)
;
22