Browse
For agents
About
WP VR – 360 Panorama and Virtual Tour Builder
/
9.0.1
WP VR – 360 Panorama and Virtual Tour Builder
v9.0.1
Switch version
9.1.1
9.1.0
9.0.3
9.0.2
9.0.1
9.0.0
8.5.79
8.5.78
8.5.77
8.5.76
8.5.75
8.5.74
8.5.73
8.5.72
8.5.71
8.5.70
8.5.69
8.5.68
8.5.35
8.5.36
8.5.37
8.5.38
8.5.39
8.5.4
8.5.40
All 220 releases
Overview
Code
wpvr
/
src
/
Admin
/
Settings
/
General.php
General.php
in WP VR – 360 Panorama and Virtual Tour Builder 9.0.1, at src/Admin/Settings/General.php
19 lines
424 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
RexTheme
\
WPVR
\
Admin
\
Settings
;
4
5
/**
6
* Standalone wrapper for the legacy WPVR_Basic_Setting class.
7
*
8
* Renders the plugin settings page by delegating to the legacy class.
9
*/
10
class
General
{
11
12
private
$
legacy
;
13
14
public
function
__construct
(
)
{
15
require_once
WPVR_PLUGIN_LEGACY_DIR_PATH
.
'
admin/classes/class-wpvr-basic-setting.php
'
;
16
$
this
->
legacy
=
new
\
WPVR_Basic_Setting
(
)
;
17
}
18
}
19