Browse
For agents
About
WP Directory Kit
/
1.2.7
WP Directory Kit
v1.2.7
Switch version
1.5.6
1.5.5
1.5.4
1.5.3
trunk
1.1.0
1.1.6
1.1.8
1.2.3
1.2.4
1.2.5
1.2.6
1.2.7
1.2.8
1.2.9
1.3.0
1.3.1
1.3.2
1.3.3
1.3.4
1.3.5
1.3.6
1.3.8
1.4.0
1.4.1
All 35 releases
Overview
Code
wpdirectorykit
/
application
/
controllers
/
Wdk_addons_currencies.php
Wdk_addons_currencies.php
in WP Directory Kit 1.2.7, at application/controllers/Wdk_addons_currencies.php
18 lines
346 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
if
(
!
defined
(
'
ABSPATH
'
)
)
exit
;
//
Exit if accessed directly;
3
4
class
Wdk_addons_currencies
extends
Winter_MVC_Controller
{
5
6
public
function
__construct
(
)
{
7
parent
::
__construct
(
)
;
8
}
9
10
public
function
index
(
)
11
{
12
//
Load view
13
$
this
->
load
->
view
(
'
wdk_addons_currencies/index
'
,
$
this
->
data
)
;
14
}
15
16
17
}
18