forked from arnabwahid/wordpress-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.php
executable file
·345 lines (274 loc) · 10.5 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
<?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)
if ( function_exists( 'wp_get_theme' ) ) {
$the_theme = wp_get_theme( get_template_directory() . '/style.css' );
// WordPress 3.3
} else {
$the_theme = get_theme_data( get_template_directory() . '/style.css' );
}
$themename = $the_theme['Title'];
$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() {
$themesPath = dirname(__FILE__) . '/admin/themes';
// Insert default option
$theList['default'] = OPTIONS_FRAMEWORK_DIRECTORY . '/themes/default-thumbnail-100x60.png';
if ($handle = opendir( $themesPath )) {
while (false !== ($file = readdir($handle)))
{
if ($file != "." && $file != ".." && strtolower(substr($file, strrpos($file, '.') + 1)) == 'css')
{
$name = substr($file, 0, strlen($file) - 4);
$thumb = OPTIONS_FRAMEWORK_DIRECTORY . '/themes/' . $name . '-thumbnail-100x60.png';
$theList[$name] = $thumb;
}
}
closedir($handle);
}
//print_r($theList);
// fixed or scroll position
$fixed_scroll = array("fixed" => "Fixed","scroll" => "Scroll");
// Multicheck Defaults
$multicheck_defaults = array("one" => "1","five" => "1");
// Background Defaults
$background_defaults = array('color' => '', 'image' => '', 'repeat' => 'repeat','position' => 'top center','attachment'=>'scroll');
// 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 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_bloginfo('stylesheet_directory') . '/images/';
$options = array();
$options[] = array( "name" => "Typography",
"type" => "heading");
$options[] = array( "name" => "Headings",
"desc" => "Used in H1, H2, H3, H4, H5 & H6 tags.",
"id" => "heading_typography",
"std" => "",
"type" => "typography");
$options[] = array( "name" => "Main Body Text",
"desc" => "Used in P tags.",
"id" => "main_body_typography",
"std" => "",
"type" => "typography");
$options[] = array( "name" => "Link Color",
"desc" => "Default used if no color is selected.",
"id" => "link_color",
"std" => "",
"type" => "color");
$options[] = array( "name" => "Link:hover Color",
"desc" => "Default used if no color is selected.",
"id" => "link_hover_color",
"std" => "",
"type" => "color");
$options[] = array( "name" => "Link:active Color",
"desc" => "Default used if no color is selected.",
"id" => "link_active_color",
"std" => "",
"type" => "color");
$options[] = array( "name" => "Top Nav",
"type" => "heading");
$options[] = array( "name" => "Position",
"desc" => "Fixed to the top of the window or scroll with content.",
"id" => "nav_position",
"std" => "",
"type" => "select",
"class" => "mini", //mini, tiny, small
"options" => $fixed_scroll);
$options[] = array( "name" => "Top nav background color",
"desc" => "Default used if no color is selected.",
"id" => "top_nav_bg_color",
"std" => "",
"type" => "color");
$options[] = array( "name" => "Check to use a gradient for top nav background",
"desc" => "Use gradient",
"id" => "showhidden_gradient",
"std" => "",
"type" => "checkbox");
$options[] = array( "name" => "Bottom gradient color",
"desc" => "Top nav background color used as top gradient color.",
"id" => "top_nav_bottom_gradient_color",
"std" => "",
"class" => "hidden",
"type" => "color");
$options[] = array( "name" => "Top nav item color",
"desc" => "Link color.",
"id" => "top_nav_link_color",
"std" => "",
"type" => "color");
$options[] = array( "name" => "Top nav item hover color",
"desc" => "Link hover color.",
"id" => "top_nav_link_hover_color",
"std" => "",
"type" => "color");
$options[] = array( "name" => "Top nav dropdown item color",
"desc" => "Dropdown item color.",
"id" => "top_nav_dropdown_item",
"std" => "",
"type" => "color");
$options[] = array( "name" => "Top nav dropdown item hover bg color",
"desc" => "Background of dropdown item hover color.",
"id" => "top_nav_dropdown_hover_bg",
"std" => "",
"type" => "color");
$options[] = array( "name" => "Search bar",
"desc" => "Show search bar in top nav",
"id" => "search_bar",
"std" => "",
"type" => "checkbox");
$options[] = array( "name" => "Branding Logo",
"desc" => "Select an image to use for site branding",
"id" => "branding_logo",
"std" => "",
"type" => "upload");
$options[] = array( "name" => "Site name",
"desc" => "Check to show the site name in the navbar",
"id" => "site_name",
"std" => "1",
"type" => "checkbox");
$options[] = array( "name" => "Theme",
"type" => "heading");
$options[] = array( "name" => "Bootswatch.com Themes",
"desc" => "Use theme from bootswatch.com. Note: This may override other styles set in the theme options panel.",
"id" => "showhidden_themes",
"std" => "0",
"type" => "checkbox");
$options[] = array( "name" => "Select a theme",
"id" => "wpbs_theme",
"std" => "default",
"class" => "hidden",
"type" => "images",
"options" => $theList
);
$options[] = array( "name" => "Refresh themes from Bootswatch",
"type" => "themecheck",
"id" => "themecheck"
);
$options[] = array( "name" => "Other Settings",
"type" => "heading");
$options[] = array( "name" => "Slider carousel on homepage",
"desc" => "Display the bootstrap slider carousel on homepage page template. This uses the wordpress featured images.",
"id" => "showhidden_slideroptions",
"std" => "0",
"type" => "checkbox");
$options[] = array( "name" => "Slider options",
"desc" => "Number of posts to show.",
"id" => "slider_options",
"class" => "mini hidden",
"std" => "5",
"type" => "text");
$options[] = array( "name" => "Homepage page template hero-unit background color",
"desc" => "Default used if no color is selected.",
"id" => "hero_unit_bg_color",
"std" => "",
"type" => "color");
$options[] = array( "name" => "'Comments are closed' message on pages",
"desc" => "Suppress 'Comments are closed' message",
"id" => "suppress_comments_message",
"std" => "1",
"type" => "checkbox");
$options[] = array( "name" => "Blog page 'hero' unit",
"desc" => "Display blog page hero unit",
"id" => "blog_hero",
"std" => "1",
"type" => "checkbox");
$options[] = array( "name" => "Custom favicon",
"desc" => "URL for a valid .ico favicon",
"id" => "favicon_url",
"std" => "",
"type" => "text");
$options[] = array( "name" => "CSS",
"desc" => "Additional CSS",
"id" => "wpbs_css",
"std" => "",
"type" => "textarea");
return $options;
}
add_action('admin_head', 'wpbs_javascript');
function wpbs_javascript() {
?>
<script type="text/javascript" >
jQuery(document).ready(function($) {
var data = {
action: 'wpbs_theme_check',
};
// since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
jQuery('#check-bootswatch').click( function(){
jQuery.post(ajaxurl, data, function(response) {
alert(response);
});
});
});
</script>
<?php
}
add_action('wp_ajax_wpbs_theme_check', 'wpbs_refresh_themes');
function wpbs_refresh_themes() {
//Bootswatch API Method
$BS_url = 'http://api.bootswatch.com';
$content = file_get_contents($BS_url);
$json = json_decode($content, true);
foreach ($json['themes'] as $item)
{
$url = $item['css-min'];
$title = strtolower($item['name']);
$desc = $item['description'];
// retrieve the contents of the css file
$css_url = $url;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $css_url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$css_contents = curl_exec($ch);
curl_close($ch);
//retreive thumbnail
$thumb_url = $item['thumbnail'];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $thumb_url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$thumb_contents = curl_exec($ch);
curl_close($ch);
// create the file using the title of the item and then close it
$template_path = get_template_directory();
$filenameCSS = $template_path . '/admin/themes/' . $title . '.css';
$filehandle = fopen($filenameCSS, 'w') or die("can't open file - " . $filenameCSS);
fwrite($filehandle, $css_contents);
fclose($filehandle);
$filenameThumb = $template_path . '/admin/themes/' .$title . '-thumbnail.png';
$filehandle = fopen($filenameThumb, 'w') or die("can't open file - " . $filenameThumb);
fwrite($filehandle, $thumb_contents);
fclose($filehandle);
// resize thumb
$destDirectory = substr( $filenameThumb, 0, strlen( $filenameThumb-14 ) );
image_resize( $filenameThumb, 100, 60, true, '', $destDirectory, 100 );
}
echo "Themes refreshed.";
die(); // this is required to return a proper result
}
?>