-
Notifications
You must be signed in to change notification settings - Fork 72
/
options.php
executable file
·142 lines (111 loc) · 4.79 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
<?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_theme_data(STYLESHEETPATH . '/style.css');
$themename = $themename['Name'];
$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() {
// fixed or scroll position
$fixed_scroll = array("fixed" => "Fixed","scroll" => "Scroll");
// Multicheck Array
$multicheck_array = array("one" => "French Toast", "two" => "Pancake", "three" => "Omelette", "four" => "Crepe", "five" => "Waffle");
// 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" => array('face' => '"Helvetica Neue",Helvetica,Arial,sans-serif','style' => 'bold','color' => '#404040'),
"type" => "wpbs_typography");
$options[] = array( "name" => "Main Body Text",
"desc" => "Used in P tags.",
"id" => "main_body_typography",
"std" => array('face' => '"Helvetica Neue",Helvetica,Arial,sans-serif','style' => 'normal','color' => '#404040'),
"type" => "wpbs_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" => "Top nav background color",
"desc" => "Default used if no color is selected.",
"id" => "top_nav_bg_color",
"std" => "#FFFFFF",
"type" => "color");
$options[] = array( "name" => "Check to use a gradient for top nav background",
"desc" => "Use gradient",
"id" => "showhidden_gradient",
"std" => "0",
"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" => "#333333",
"class" => "hidden",
"type" => "color");
$options[] = array( "name" => "Top nav item color",
"desc" => "Link color.",
"id" => "top_nav_link_color",
"std" => "#2A85E8",
"type" => "color");
$options[] = array( "name" => "Top nav item hover color",
"desc" => "Link hover color.",
"id" => "top_nav_link_hover_color",
"std" => "#11639D",
"type" => "color");
$options[] = array( "name" => "Other Settings",
"type" => "heading");
$options[] = array( "name" => "'Comments are closed' message on pages",
"desc" => "Suppress 'Comments are closed' message",
"id" => "suppress_comments_message",
"std" => "1",
"type" => "checkbox");
return $options;
}