-
Notifications
You must be signed in to change notification settings - Fork 1
/
store.php
75 lines (65 loc) · 1.54 KB
/
store.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
/**
* Plugin Name: Store
*
* @package WooCommerce\Admin
*/
/**
* Registers report pages.
*/
function register_pages() {
$options = array(
'title' => 'Store',
'capability' => 'manage_options',
'path' => 'store',
'icon' => '',
'position' => 26,
);
add_menu_page(
$options['title'],
$options['title'],
$options['capability'],
$options['path'],
'page_wrapper',
$options['icon'],
$options['position']
);
}
function page_wrapper() {
?>
<div class="store-wrapper">
</div>
<?php
}
add_action( 'admin_menu', 'register_pages' );
/**
* Register the JS.
*/
function add_extension_register_script() {
if ( isset( $_GET['page'] ) && ! empty( $_GET['page'] ) && 'store' !== $_GET['page'] ) {
return;
}
$script_path = '/build/index.js';
$script_asset_path = dirname( __FILE__ ) . '/build/index.asset.php';
$script_asset = file_exists( $script_asset_path )
? require( $script_asset_path )
: array( 'dependencies' => array(), 'version' => filemtime( $script_path ) );
$script_url = plugins_url( $script_path, __FILE__ );
wp_register_script(
'store',
$script_url,
$script_asset['dependencies'],
$script_asset['version'],
true
);
wp_register_style(
'store',
plugins_url( '/build/index.css', __FILE__ ),
// Add any dependencies styles may have, such as wp-components.
array(),
filemtime( dirname( __FILE__ ) . '/build/index.css' )
);
wp_enqueue_script( 'store' );
wp_enqueue_style( 'store' );
}
add_action( 'admin_enqueue_scripts', 'add_extension_register_script' );