-
Notifications
You must be signed in to change notification settings - Fork 7
/
options.php
executable file
·165 lines (137 loc) · 4.73 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
<?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' => '#fff',
'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;
}
// 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' => __('Site Color', 'options_check'),
'desc' => __('No color selected by default.', 'options_check'),
'id' => 'site_color',
'std' => '#feb83e',
'type' => 'color' );
$options[] = array(
'name' => __('Titles Color', 'options_check'),
'desc' => __('No color selected by default.', 'options_check'),
'id' => 'titles_color',
'std' => '#000',
'type' => 'color' );
$options[] = array(
'name' => __('Text Color', 'options_check'),
'desc' => __('No color selected by default.', 'options_check'),
'id' => 'text_color',
'std' => '#4d4d4d',
'type' => 'color' );
$options[] = array(
'name' => __('Background', 'options_check'),
'desc' => __('Change the background CSS.', 'options_check'),
'id' => 'background',
'std' => $background_defaults,
'type' => 'background' );
$options[] = array(
'name' => __('Header Image', 'options_check'),
'desc' => __('This creates a full size uploader that previews the image.', 'options_check'),
'id' => 'header_background_image',
'std' => get_template_directory_uri() . '/images/logo.png',
'type' => 'upload');
$options[] = array(
'name' => __('Navigation Background Color', 'options_check'),
'desc' => __('No color selected by default.', 'options_check'),
'id' => 'navigation_background_color',
'std' => '#f1f1f1',
'type' => 'color' );
$options[] = array(
'name' => __('Navigation Text Color', 'options_check'),
'desc' => __('No color selected by default.', 'options_check'),
'id' => 'navigation_text_color',
'std' => '#333',
'type' => 'color' );
$options[] = array(
'name' => __('Footer Text', 'options_check'),
'id' => 'footer_text',
'std' => 'Footer Text',
'type' => 'text');
return $options;
}