-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.php
executable file
·277 lines (236 loc) · 7.87 KB
/
settings.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
<?php
function librebooks_register_theme_customizer( $wp_customize ) {
class Nt_Customize_Control_Multiple_Select extends WP_Customize_Control {
/**
* The type of customize control being rendered.
*/
public $type = 'multiple-select';
/**
* Displays the multiple select on the customize screen.
*/
public function render_content() {
if ( empty( $this->choices ) )
return;
?>
<label>
<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
<select <?php $this->link(); ?> multiple="multiple" style="height: 100%;">
<?php
foreach ( $this->choices as $value => $label ) {
$selected = ( in_array( $value, $this->value() ) ) ? selected( 1, 1, false ) : '';
echo '<option value="' . esc_attr( $value ) . '"' . $selected . '>' . $label . '</option>';
}
?>
</select>
</label>
<?php }}
/**
* Validate the options against the existing categories
* @param string[] $input
* @return string
*/
function nt_sanitize_cat( $input )
{
$valid = nt_cats();
foreach ($input as $value) {
if ( !array_key_exists( $value, $valid ) ) {
return [];
}
}
return $input;
}
$wp_customize->add_section( 'librebooks_site_info' , array(
'title' => __('Add Site Info','librebooks'),
'priority' => 20,
) );
$wp_customize->add_setting(
'librebooks_front_page_welcome_message',
array(
'default' => '',
'transport' => 'postMessage',
)
);
$wp_customize->add_control('librebooks_front_page_welcome_message', array(
'label' => __('Home Page Welcome Message', 'librebooks'),
'section' => 'librebooks_site_info',
'settings' => 'librebooks_front_page_welcome_message',
'type' => 'textarea',
));
$wp_customize->add_setting(
'librebooks_enable_taxonomies_menu',
array(
'default' => false,
'transport' => 'postMessage',
)
);
$wp_customize->add_control('librebooks_enable_taxonomies_menu', array(
'label' => __('Enable Taxonomies Menu at Top Bar', 'librebooks'),
'section' => 'librebooks_site_info',
'settings' => 'librebooks_enable_taxonomies_menu',
'type' => 'checkbox',
));
function librebooks_enable_taxs( $control ) {
if (( $control->manager->get_setting('librebooks_enable_taxonomies_menu')->value() == true)) {
return true;
} else {
return false;
}
}
$wp_customize->add_setting(
'librebooks_taxonomies_link',
array(
'default' => '',
'transport' => 'postMessage',
)
);
$wp_customize->add_control('librebooks_taxonomies_link', array(
'label' => __('Taxonomies Page URL', 'librebooks'),
'section' => 'librebooks_site_info',
'settings' => 'librebooks_taxonomies_link',
'active_callback' => 'librebooks_enable_taxs',
'type' => 'text',
));
$args = array(
'public' => true,
'_builtin' => false,
'object_type' => array('post')
);
$output = 'objects'; // or objects
$operator = 'and'; // 'and' or 'or'
$taxonomies = get_taxonomies( $args, $output, $operator );
$categories_top_menu = array();
if ($taxonomies) {
foreach ($taxonomies as $taxonomy) {
$categories_top_menu[$taxonomy->name] = $taxonomy->labels->name;
}
}
$categories_top_menu['post_tag'] = __('الوسوم', 'LibreBooks');
$wp_customize->add_setting(
'librebooks_taxonomies_to_show',
array(
'default' => '',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(new Nt_Customize_Control_Multiple_Select (
$wp_customize, 'librebooks_taxonomies_to_show', array(
'label' => __('Add Header Content Code', 'librebooks'),
'section' => 'librebooks_site_info',
'settings' => 'librebooks_taxonomies_to_show',
'type' => 'multiple-select',
'choices' => $categories_top_menu
)));
$wp_customize->add_setting(
'librebooks_footer_rights',
array(
'default' => 'بكل الفخر هذا الموقع يعمل <a href="http://librebooks.org/about-site/#software-used-in-website">باستخدام</a> برمجيات حرة مفتوحة المصدر، ومحتواه منشور برخصة المشاع الإبداعي <a target="_blank" href="http://creativecommons.org/licenses/by-sa/3.0/">النسبة-بذات الرخصة، الإصدارة ٣.٠</a>.',
'transport' => 'postMessage',
)
);
$wp_customize->add_control('librebooks_footer_rights', array(
'label' => __('Footer Copyright Text', 'librebooks'),
'section' => 'librebooks_site_info',
'settings' => 'librebooks_footer_rights',
'type' => 'textarea',
));
$wp_customize->add_setting(
'librebooks_fb_id',
array(
'default' => '',
'transport' => 'postMessage',
)
);
$wp_customize->add_control('librebooks_fb_id', array(
'label' => __('Facebook App ID', 'librebooks'),
'section' => 'librebooks_site_info',
'settings' => 'librebooks_fb_id',
'type' => 'text',
));
$wp_customize->add_setting(
'librebooks_fb_page',
array(
'default' => '',
'transport' => 'postMessage',
)
);
$wp_customize->add_control('librebooks_fb_page', array(
'label' => __('Facebook Page', 'librebooks'),
'section' => 'librebooks_site_info',
'settings' => 'librebooks_fb_page',
'type' => 'text',
));
$wp_customize->add_setting(
'librebooks_twt_account',
array(
'default' => '',
'transport' => 'postMessage',
)
);
$wp_customize->add_control('librebooks_twt_account', array(
'label' => __('Twitter Account', 'librebooks'),
'section' => 'librebooks_site_info',
'settings' => 'librebooks_twt_account',
'type' => 'text',
));
$wp_customize->add_setting(
'librebooks_default_list_featured',
array(
'default' => '',
'transport' => 'postMessage',
'sanitize_callback' => 'esc_url',
)
);
$wp_customize->add_control( new WP_Customize_Image_Control($wp_customize, 'librebooks_default_list_featured', array(
'label' => __('Site Default Book Cover For Books List', 'asalah'),
'description' => ('(should be around 306×410px)'),
'section' => 'librebooks_site_info',
'settings' => 'librebooks_default_list_featured',
)));
$wp_customize->add_setting(
'librebooks_default_single_featured',
array(
'default' => '',
'transport' => 'postMessage',
'sanitize_callback' => 'esc_url',
)
);
$wp_customize->add_control( new WP_Customize_Image_Control($wp_customize, 'librebooks_default_single_featured', array(
'label' => __('Site Default Book Cover For Single Page', 'asalah'),
'description' => ('(should be around 350×440px)'),
'section' => 'librebooks_site_info',
'settings' => 'librebooks_default_single_featured',
)));
$wp_customize->add_section( 'librebooks_custom_code' , array(
'title' => __('Add Header/Footer Content','librebooks'),
'priority' => 20,
) );
/* Custom Content Section */
$wp_customize->add_setting(
'librebooks_custom_header_code',
array(
'default' => '',
'transport' => 'postMessage',
)
);
$wp_customize->add_control('librebooks_custom_header_code', array(
'label' => __('Add Header Content Code', 'librebooks'),
'section' => 'librebooks_custom_code',
'settings' => 'librebooks_custom_header_code',
'type' => 'textarea',
));
$wp_customize->add_setting(
'librebooks_custom_footer_code',
array(
'default' => '',
'transport' => 'postMessage',
)
);
$wp_customize->add_control('librebooks_custom_footer_code', array(
'label' => __('Add Footer Content Code', 'librebooks'),
'section' => 'librebooks_custom_code',
'settings' => 'librebooks_custom_footer_code',
'type' => 'textarea',
));
}
add_action( 'customize_register', 'librebooks_register_theme_customizer' );
?>