-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.php
58 lines (43 loc) · 1.25 KB
/
options.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
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}//end if
function nelio_maps_options_page() {
add_options_page(
'Nelio Maps',
'Nelio Maps',
'manage_options',
'nelio-maps',
'nelio_maps_options_page_html'
);
}//end nelio_maps_options_page()
add_action( 'admin_menu', 'nelio_maps_options_page' );
function nelio_maps_options_page_html() {
include_once nelio_maps()->plugin_path . '/options-partial.php';
}//end nelio_maps_options_page_html()
function nelio_maps_settings_init() {
register_setting( 'nelio_maps', 'nelio_maps_api_key_option' );
add_settings_section(
'nelio_maps_general',
_x( 'General', 'text', 'nelio_maps' ),
null,
'nelio_maps'
);
add_settings_field(
'nelio_maps_api_key_option',
_x( 'Google API Key', 'text', 'nelio-maps' ),
'nelio_maps_render_api_key_input_field',
'nelio_maps',
'nelio_maps_general'
);
}//end nelio_maps_settings_init()
add_action( 'admin_init', 'nelio_maps_settings_init' );
function nelio_maps_render_api_key_input_field() {
$setting_name = 'nelio_maps_api_key_option';
$option = get_option( 'nelio_maps_api_key_option' );
printf(
'<input type="text" name="%s" value="%s" size="60" />',
esc_attr( $setting_name ),
esc_attr( $option )
);
}//end nelio_maps_render_api_key_input_field()