-
Notifications
You must be signed in to change notification settings - Fork 11
/
google_font_selector-v4.php
executable file
·485 lines (398 loc) · 13 KB
/
google_font_selector-v4.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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
<?php
class acf_field_google_font_selector extends acf_field
{
// vars
var $settings,
$defaults,
$api_key,
$fonts,
$web_safe;
/*
* __construct
*
* Set name / label needed for actions / filters
*
* @since 3.6
* @date 23/01/13
*/
function __construct()
{
// vars
$this->name = 'google_font_selector';
$this->label = __( 'Google Font Selector', 'acf' );
$this->category = __( "Choice",'acf' );
$this->defaults = array(
'include_web_safe' => true,
'default_font' => 'Droid Sans',
'interface' => 'advanced'
);
parent::__construct();
$api_key = ( defined( 'ACF_GOOGLE_FONTS_API_KEY' ) ) ? ACF_GOOGLE_FONTS_API_KEY : 'AIzaSyDprvtcGk0jQhIAIr0CdW7g57A5eRyesrc';
$this->api_key = $api_key;
$this->fonts = $this->get_google_fonts();
$this->web_safe = $this->set_web_safe();
$this->settings = array(
'path' => apply_filters('acf/helpers/get_path', __FILE__),
'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
'version' => '1.0.0'
);
add_action( 'wp_ajax_acfgfs_get_font_data', array( $this, 'action_get_font_data' ) );
if( !( defined( 'ACF_GOOGLE_FONTS_DISABLE_HEADER' ) && true == ACF_GOOGLE_FONTS_DISABLE_HEADER ) ) {
add_action( 'wp_head', array( $this, 'google_font_request' ) );
}
}
/*
* Build Google Font Request
*
* Retrieves all font settings and builds a Google Font query
*
*/
function google_font_request(){
global $wpdb;
$font_string = '%:{s:4:"font"%';
$postmeta_fonts = $wpdb->get_col($wpdb->prepare(
"SELECT DISTINCT(meta_value) FROM $wpdb->postmeta WHERE meta_value LIKE %s",
$font_string
));
$usermeta_fonts = $wpdb->get_col($wpdb->prepare(
"SELECT DISTINCT(meta_value) FROM $wpdb->usermeta WHERE meta_value LIKE %s",
$font_string
));
$option_fonts = $wpdb->get_col($wpdb->prepare(
"SELECT DISTINCT(meta_value) FROM $wpdb->options WHERE option_value LIKE %s",
$font_string
));
$fontmeta = array_merge( $postmeta_fonts, $usermeta_fonts, $option_fonts );
$fonts = array();
foreach( $fontmeta as $font ) {
$fonts[] = unserialize( $font );
}
$fontlist = array();
foreach( $fonts as $font ) {
if( !empty( $fontlist[$font['font']] ) ) {
$fontlist[$font['font']]['variants'] = ( empty( $fontlist[$font['font']]['variants'] ) ) ? array() : $fontlist[$font['font']]['variants'];
$fontlist[$font['font']]['subsets'] = ( empty( $fontlist[$font['font']]['subsets'] ) ) ? array() : $fontlist[$font['font']]['subsets'];
$fontlist[$font['font']]['variants'] = array_merge( $fontlist[$font['font']]['variants'], $font['variants'] );
$fontlist[$font['font']]['subsets'] = array_merge( $fontlist[$font['font']]['subsets'], $font['subsets'] );
$fontlist[$font['font']]['variants'] = array_unique( $fontlist[$font['font']]['variants'] );
$fontlist[$font['font']]['subsets'] = array_unique( $fontlist[$font['font']]['subsets'] );
foreach( $fontlist[$font['font']]['variants'] as $key => $variant ) {
if( 'regular' == $variant ) {
$fontlist[$font['font']]['variants'][$key] = '400';
}
if( 'italic' == $variant ) {
$fontlist[$font['font']]['variants'][$key] = '400italic';
}
}
if( !in_array( 'regular', $fontlist[$font['font']]['variants'] ) ) {
$fontlist[$font['font']]['variants'][] = '400';
}
}
else {
$fontlist[$font['font']] = $font;
}
}
$fonts = array();
$subsets = array();
foreach( $fontlist as $name => $data ) {
if( !in_array( $name, $this->web_safe ) ) {
$name = str_replace( ' ', '+', $name );
if( empty( $data['variants'] ) ) {
$variants = ':300,400,400italic,700';
}
else {
$variants = ':' . implode( ',', $data['variants'] );
}
$subsets[] = array_merge( $data['subsets'] );
$fonts[] = $name . $variants;
}
}
$subsets = array_unique( $subsets );
$subsets = ( !empty( $subsets ) ) ? '?subset=' . implode( ', ', $subsets ) : '';
$request = "http://fonts.googleapis.com/css?family=" . implode( '|', $fonts ) . $subsets;
echo "<link href='" . $request . "' rel='stylesheet' type='text/css'>";
}
/*
* Retrieve Font Data
*
* Used when a user selects a new font to retrieve variants and sets
*
*/
function action_get_font_data() {
$results['variants'] = $this->get_font_variant_options( $_POST['field_name'], $_POST['font'] );
$results['charsets'] = $this->get_font_charset_options( $_POST['field_name'], $_POST['font'] );
echo json_encode( $results );
die();
}
/*
* Get Google Font Data
*
* Loads all Google Font Data from transient or grabs it from the api
*
*/
function get_google_fonts() {
$fonts = get_transient( 'acf_google_font_selector_fonts' );
if( !$fonts ) {
$fonts = $this->set_google_fonts();
}
return $fonts;
}
/*
* Retrieve Google Fonts From API
*
* Sets a transient based on a request to the Google API
*
*/
function set_google_fonts() {
$data = wp_remote_get( 'https://www.googleapis.com/webfonts/v1/webfonts?key=' . $this->api_key );
$data = json_decode( $data['body'], true );
$data = $data['items'];
foreach( $data as $key => $item ) {
unset( $data[$key] );
$data[$item['family']] = $item;
}
set_transient( 'acf_google_font_selector_fonts', $data, WEEK_IN_SECONDS );
}
/*
* Build Font Select List
*
* Builts a list of fonts either in array or ready to go '<option>' form
*
*/
function get_font_select_list( $field, $output = 'array' ) {
$list = array();
foreach( $this->fonts as $font => $data ) {
$list[$font] = $font;
}
if( !empty( $field['include_web_safe' ] ) ) {
foreach( $this->web_safe as $font ) {
$list[$font] = $font;
}
}
asort( $list );
if( $output == 'options' ) {
$options = array();
$current = ( empty( $field['value']['font'] ) ) ? $field['default_font'] : $field['value']['font'];
foreach( $list as $item ) {
$selected = ( $current == $item ) ? 'selected="selected"' : '';
$options[] = '<option ' . $selected . ' value="' . $item . '">' . $item . '</option>';
}
$list = implode( '', $options );
}
return $list;
}
/*
* Get Font Variants
*
* Finds the variants available for a specific font
*
*/
function get_font_variant_options( $field, $font = '' ) {
if( is_array( $field ) ) {
$font = ( empty( $field['value']['font'] ) ) ? $field['default_font'] : $field['value']['font'];
$name = $field['name'];
$selected_variants = ( empty( $field['value']['variants'] ) ) ? '' : $field['value']['variants'];
}
else {
$name = $field;
}
$font = ( !empty( $this->fonts[$font] ) ) ? $this->fonts[$font] : 'web-safe';
if( !is_array( $font ) ) {
return;
}
$output = array();
foreach( $font['variants'] as $variant ) {
$checked = ( !empty( $selected_variants ) && in_array( $variant, $selected_variants ) ) ? 'checked="checked"' : '';
$output[] = '<li><label><input ' . $checked . ' type="checkbox" class="checkbox" name="' . $name . '[variants][]" value="' . $variant . '">' . $variant . '</label></li>';
}
return implode( '', $output );
}
/*
* Get Font Charsets
*
* Finds the charsets available for a specific font
*
*/
function get_font_charset_options( $field, $font = '' ) {
if( is_array( $field ) ) {
$font = ( empty( $field['value']['font'] ) ) ? $field['default_font'] : $field['value']['font'];
$name = $field['name'];
$selected_subsets = ( empty( $field['value']['subsets'] ) ) ? '' : $field['value']['subsets'];
}
else {
$name = $field;
}
$font = ( !empty( $this->fonts[$font] ) ) ? $this->fonts[$font] : 'web-safe';
if( !is_array( $font ) ) {
return;
}
$output = array();
foreach( $font['subsets'] as $subset ) {
$checked = ( !empty( $selected_subsets ) && in_array( $subset, $selected_subsets ) ) ? 'checked="checked"' : '';
$output[] = '<li><label><input ' . $checked . ' type="checkbox" class="checkbox" name="' . $field['name'] . '[subsets][]" value="' . $subset . '">' . $subset . '</label></li>';
}
return implode( '', $output );
}
/*
* Set web safe fonts
*
* Sets all fonts which do not need to be pulled from Google
*
*/
function set_web_safe() {
$web_safe = array( 'Georgia', 'Palatino Linotype', 'Book Antiqua', 'Palatino', 'Times New Roman', 'Times', 'Arial', 'Helvetica', 'Arial Black', 'Gadget', 'Impact', 'Charcoal', 'Lucida Sans Unicode', 'Lucida Grande', 'Tahoma', 'Geneva', 'Trebuchet MS', 'Helvetica', 'Verdana', 'Geneva', 'Courier New', 'Courier', 'Lucida Console', 'Monaco' );
return $web_safe;
}
/*
* create_options()
*
* Create extra options for your field. This is rendered when editing a field.
* The value of $field['name'] can be used (like bellow) to save extra data to the $field
*
* @type action
* @since 3.6
* @date 23/01/13
*
* @param $field - an array holding all the field's data
*/
function create_options($field)
{
$field = array_merge($this->defaults, $field);
// key is needed in the field names to correctly save the data
$key = $field['name'];
// Create Field Options HTML
?>
<tr class="field_option field_option_<?php echo $this->name; ?>">
<td class="label">
<label><?php _e("Web Safe Fonts", 'acf'); ?></label>
</td>
<td>
<?php
do_action('acf/create_field', array(
'type' => 'true_false',
'name' => 'fields[' . $key . '][include_web_safe]',
'value' => $field['include_web_safe'],
'layout' => 'horizontal',
'message' => __( 'Include Web Safe Fonts?', 'acf' )
));
?>
</td>
</tr>
<tr class="field_option field_option_<?php echo $this->name; ?>">
<td class="label">
<label><?php _e("Default Font", 'acf'); ?></label>
</td>
<td>
<?php
do_action('acf/create_field', array(
'type' => 'select',
'name' => 'fields[' . $key . '][default_font]',
'value' => $field['default_font'],
'layout' => 'horizontal',
'choices' => $this->get_font_select_list( $field )
));
?>
</td>
</tr>
<tr class="field_option field_option_<?php echo $this->name; ?>">
<td class="label">
<label><?php _e("Interface", 'acf'); ?></label>
<p class="description"><?php _e("The advanced interface allows users to set allowed font variants and character sets. If set to simple the most common options are loaded.", 'acf'); ?></p>
</td>
<td>
<?php
do_action('acf/create_field', array(
'type' => 'radio',
'name' => 'fields[' . $key . '][interface]',
'value' => $field['interface'],
'layout' => 'horizontal',
'choices' => array(
'advanced' => 'Advanced',
'simple' => 'Simple'
)
));
?>
</td>
</tr>
<?php
}
/*
* create_field()
*
* Create the HTML interface for your field
*
* @param $field - an array holding all the field's data
*
* @type action
* @since 3.6
* @date 23/01/13
*/
function create_field( $field )
{
// defaults?
/*
$field = array_merge($this->defaults, $field);
*/
// perhaps use $field['preview_size'] to alter the markup?
// create Field HTML
$current = ( empty( $field['value']['font'] ) ) ? $field['default_font'] : $field['value']['font'];
?>
<div>
<table class='acf-google-font-table'>
<tr>
<td>
<div class='label'><?php _e( 'Font Family', 'acf' ) ?></div>
<select data-field_name='<?php echo $field['name'] ?>' class='acfgfs-font-select' name='<?php echo $field['name'] ?>[font]'>
<?php echo $this->get_font_select_list( $field, 'options' ) ?>
</select>
</td>
<?php if( !empty( $field['interface'] ) && 'advanced' == $field['interface'] ) : ?>
<td class='acfgfs-font-variants'>
<div class='label'><?php _e( 'Font Variants', 'acf' ) ?></div>
<ul class="acf-checkbox-list checkbox vertical">
<?php echo $this->get_font_variant_options( $field ) ?>
</ul>
</td>
<td class='acfgfs-font-charsets'>
<div class='label'><?php _e( 'Character Sets', 'acf' ) ?></div>
<ul class="acf-checkbox-list checkbox vertical">
<?php echo $this->get_font_charset_options( $field ) ?>
</ul>
</td>
<?php endif ?>
</tr>
</table>
</div>
<?php
}
/*
* input_admin_enqueue_scripts()
*
* This action is called in the admin_enqueue_scripts action on the edit screen where your field is created.
* Use this action to add css + javascript to assist your create_field() action.
*
* $info http://codex.wordpress.org/Plugin_API/Action_Reference/admin_enqueue_scripts
* @type action
* @since 3.6
* @date 23/01/13
*/
function input_admin_enqueue_scripts()
{
// Note: This function can be removed if not used
// register acf scripts
wp_register_script('acf-input-google_font_selector', $this->settings['dir'] . 'js/input.js', array('acf-input'), $this->settings['version']);
wp_register_style('acf-input-google_font_selector', $this->settings['dir'] . 'css/input.css', array('acf-input'), $this->settings['version']);
// scripts
wp_enqueue_script(array(
'acf-input-google_font_selector',
));
wp_localize_script( 'acf-input-google_font_selector', 'acfgfs', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'loading' => 'LOADING...' ) );
// styles
wp_enqueue_style(array(
'acf-input-google_font_selector',
));
}
}
// create field
new acf_field_google_font_selector();
?>