-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.php
171 lines (144 loc) · 5.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?php
/**
* A unique identifier is defined to store the options in the database and reference them from the theme.
* By default it uses the theme name, in lowercase and without spaces, but this can be changed if needed.
* If the identifier changes, it'll appear as if the options have been reset.
*
*/
function optionsframework_option_name() {
// This gets the theme name from the stylesheet (lowercase and without spaces)
$themename = get_option( 'stylesheet' );
$themename = preg_replace("/\W/", "_", strtolower($themename) );
$optionsframework_settings = get_option('optionsframework');
$optionsframework_settings['id'] = $themename;
update_option('optionsframework', $optionsframework_settings);
// echo $themename;
}
/**
* Defines an array of options that will be used to generate the settings page and be saved in the database.
* When creating the 'id' fields, make sure to use all lowercase and no spaces.
*
*/
function optionsframework_options() {
// Test data
$test_array = array(
'one' => __('One', 'options_check'),
'two' => __('Two', 'options_check'),
'three' => __('Three', 'options_check'),
'four' => __('Four', 'options_check'),
'five' => __('Five', 'options_check')
);
// Multicheck Array
$multicheck_array = array(
'one' => __('French Toast', 'options_check'),
'two' => __('Pancake', 'options_check'),
'three' => __('Omelette', 'options_check'),
'four' => __('Crepe', 'options_check'),
'five' => __('Waffle', 'options_check')
);
// Multicheck Defaults
$multicheck_defaults = array(
'one' => '1',
'five' => '1'
);
// Background Defaults
$background_defaults = array(
'color' => '',
'image' => '',
'repeat' => 'repeat',
'position' => 'top center',
'attachment'=>'scroll' );
// Typography Defaults
$typography_defaults = array(
'size' => '15px',
'face' => 'georgia',
'style' => 'bold',
'color' => '#bada55' );
// Typography Options
$typography_options = array(
'sizes' => array( '6','12','14','16','20' ),
'faces' => array( 'Helvetica Neue' => 'Helvetica Neue','Arial' => 'Arial' ),
'styles' => array( 'normal' => 'Normal','bold' => 'Bold' ),
'color' => false
);
// Pull all the categories into an array
$options_categories = array();
$options_categories_obj = get_categories();
foreach ($options_categories_obj as $category) {
$options_categories[$category->cat_ID] = $category->cat_name;
}
// Pull all tags into an array
$options_tags = array();
$options_tags_obj = get_tags();
foreach ( $options_tags_obj as $tag ) {
$options_tags[$tag->term_id] = $tag->name;
}
// Pull all the pages into an array
$options_pages = array();
$options_pages_obj = get_pages('sort_column=post_parent,menu_order');
$options_pages[''] = 'Select a page:';
foreach ($options_pages_obj as $page) {
$options_pages[$page->ID] = $page->post_title;
}
// Get a list of users
$wp_user_query = new WP_User_Query( array( 'orderby' => 'display_name' ));
//var_dump($wp_user_query);die();
$users = $wp_user_query->get_results();
$user_list = array();
foreach( $users AS $u ) {
$user_list[$u->ID] = get_user_meta( $u->ID, 'first_name', true) . ' ' . get_user_meta( $u->ID, 'last_name', true) . ' (' . $u->display_name . ')';
}
// If using image radio buttons, define a directory path
$imagepath = get_template_directory_uri() . '/images/';
$options = array();
$options[] = array(
'name' => __('Basic Settings', 'options_check'),
'type' => 'heading');
//
$options[] = array(
'name' => __('User info to display', 'options_check'),
'desc' => __('Select the user who\'s profile information you wish to display on the card', 'options_check'),
'id' => 'user-to-display',
'type' => 'select',
'options' => $user_list);
//
//
// $options[] = array(
// 'name' => __('Uploader Test', 'options_check'),
// 'desc' => __('This creates a full size uploader that previews the image.', 'options_check'),
// 'id' => 'example_uploader',
// 'type' => 'upload');
//
// $options[] = array(
// 'name' => "Example Image Selector",
// 'desc' => "Images for layout.",
// 'id' => "example_images",
// 'std' => "2c-l-fixed",
// 'type' => "images",
// 'options' => array(
// '1col-fixed' => $imagepath . '1col.png',
// '2c-l-fixed' => $imagepath . '2cl.png',
// '2c-r-fixed' => $imagepath . '2cr.png')
// );
/**
* For $settings options see:
* http://codex.wordpress.org/Function_Reference/wp_editor
*
* 'media_buttons' are not supported as there is no post to attach items to
* 'textarea_name' is set by the 'id' you choose
*/
//
// $wp_editor_settings = array(
// 'wpautop' => true, // Default
// 'textarea_rows' => 5,
// 'tinymce' => array( 'plugins' => 'wordpress' )
// );
//
// $options[] = array(
// 'name' => __('Default Text Editor', 'options_check'),
// 'desc' => sprintf( __( 'You can also pass settings to the editor. Read more about wp_editor in <a href="%1$s" target="_blank">the WordPress codex</a>', 'options_check' ), 'http://codex.wordpress.org/Function_Reference/wp_editor' ),
// 'id' => 'example_editor',
// 'type' => 'editor',
// 'settings' => $wp_editor_settings );
return $options;
}