-
Notifications
You must be signed in to change notification settings - Fork 142
/
dev.php
420 lines (374 loc) · 14.9 KB
/
dev.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
<?php
/**
* Plugin Name: Shortcode UI Example
* Version: 1.0.0
* Description: Adds [shortcake_dev] and [shortcake-no-attributes] example shortcodes to see Shortcode UI in action.
* Author: Fusion Engineering and community
* Author URI: http://next.fusion.net/tag/shortcode-ui/
* Text Domain: shortcode-ui-example
* License: GPL v2 or later
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
/*
* This plugin handles the registration of two shortcodes, and the related Shortcode UI:
* a. [shortcake-no-attributes] - a shortcode with a minimal UI example that has no user inputs.
* b. [shortcake_dev] - a shortcode with a selection of user inputs.
*
* The plugin is broken down into four stages:
* 0. Check to see if Shortcake is running, with an admin notice if not.
* 1. Register the shortcodes - this is standard WP behaviour, nothing new here.
* 2. Register the Shortcode UI setup for shortcodes.
* 3. Define the callback for the advanced shortcode - fairly standard WP behaviour, nothing new here.
*/
/*
* 0. Check to see if Shortcake is running, with an admin notice if not.
*/
add_action( 'init', 'shortcode_ui_detection' );
/**
* If Shortcake isn't active, then add an administration notice.
*
* This check is optional. The addition of the shortcode UI is via an action hook that is only called in Shortcake.
* So if Shortcake isn't active, you won't be presented with errors.
*
* Here, we choose to tell users that Shortcake isn't active, but equally you could let it be silent.
*
* Why not just self-deactivate this plugin? Because then the shortcodes would not be registered either.
*
* @since 1.0.0
*/
function shortcode_ui_detection() {
if ( ! function_exists( 'shortcode_ui_register_for_shortcode' ) ) {
add_action( 'admin_notices', 'shortcode_ui_dev_example_notices' );
}
}
/**
* Display an administration notice if the user can activate plugins.
*
* If the user can't activate plugins, then it's poor UX to show a notice they can't do anything to fix.
*
* @since 1.0.0
*/
function shortcode_ui_dev_example_notices() {
if ( current_user_can( 'activate_plugins' ) ) {
?>
<div class="error message">
<p><?php esc_html_e( 'Shortcode UI plugin must be active for Shortcode UI Example plugin to function.', 'shortcode-ui-example', 'shortcode-ui' ); ?></p>
</div>
<?php
}
}
/*
* 1. Register the shortcodes.
*/
add_action( 'init', 'shortcode_ui_dev_register_shortcodes' );
/**
* Register two shortcodes, shortcake_dev and shortcake-no-attributes.
*
* This registration is done independently of any UI that might be associated with them, so it always happens, even if
* Shortcake is not active.
*
* @since 1.0.0
*/
function shortcode_ui_dev_register_shortcodes() {
// This shortcode doesn't actually do anything.
add_shortcode( 'shortcake-no-attributes', '__return_false' );
// This is a simple example for a pullquote with a citation.
add_shortcode( 'shortcake_dev', 'shortcode_ui_dev_shortcode' );
}
/*
* 2. Register the Shortcode UI setup for the shortcodes.
*/
add_action( 'register_shortcode_ui', 'shortcode_ui_dev_minimal_example' );
/**
* Shortcode UI setup for the shortcake-no-attributes shortcode.
*
* It is called when the Shortcake action hook `register_shortcode_ui` is called.
*
* This example shortcode has no attributes and minimal UI.
*
* @since 1.0.0
*/
function shortcode_ui_dev_minimal_example() {
shortcode_ui_register_for_shortcode(
'shortcake-no-attributes', // Shortcode tag this UI is for.
array( // Shortcode UI args.
'label' => esc_html__( 'Shortcake With No Attributes', 'shortcode-ui-example', 'shortcode-ui' ),
)
);
}
add_action( 'register_shortcode_ui', 'shortcode_ui_dev_advanced_example' );
/**
* Shortcode UI setup for the shortcake_dev shortcode.
*
* It is called when the Shortcake action hook `register_shortcode_ui` is called.
*
* This example shortcode has many editable attributes, and more complex UI.
*
* @since 1.0.0
*/
function shortcode_ui_dev_advanced_example() {
/*
* Define the UI for attributes of the shortcode. Optional.
*
* In this demo example, we register multiple fields related to showing a quotation
* - Attachment, Citation Source, Select Page, Background Color, Alignment and Year.
*
* If no UI is registered for an attribute, then the attribute will
* not be editable through Shortcake's UI. However, the value of any
* unregistered attributes will be preserved when editing.
*
* Each array must include 'attr', 'type', and 'label'.
* * 'attr' should be the name of the attribute.
* * 'type' options include: text, checkbox, textarea, radio, select, email,
* url, number, and date, post_select, attachment, color.
* * 'label' is the label text associated with that input field.
*
* Use 'meta' to add arbitrary attributes to the HTML of the field.
*
* Use 'encode' to encode attribute data. Requires customization in shortcode callback to decode.
*
* Depending on 'type', additional arguments may be available.
*/
$fields = array(
array(
'label' => esc_html__( 'Attachment', 'shortcode-ui-example', 'shortcode-ui' ),
'attr' => 'attachment',
'type' => 'attachment',
/*
* These arguments are passed to the instantiation of the media library:
* 'libraryType' - Type of media to make available.
* 'addButton' - Text for the button to open media library.
* 'frameTitle' - Title for the modal UI once the library is open.
*/
'libraryType' => array( 'image' ),
'addButton' => esc_html__( 'Select Image', 'shortcode-ui-example', 'shortcode-ui' ),
'frameTitle' => esc_html__( 'Select Image', 'shortcode-ui-example', 'shortcode-ui' ),
),
array(
'label' => 'Gallery',
'attr' => 'gallery',
'description' => esc_html__( 'You can select multiple images.', 'shortcode-ui' ),
'type' => 'attachment',
'libraryType' => array( 'image' ),
'multiple' => true,
'addButton' => 'Select Images',
'frameTitle' => 'Select Images',
),
array(
'label' => esc_html__( 'Citation Source', 'shortcode-ui-example', 'shortcode-ui' ),
'attr' => 'source',
'type' => 'text',
'encode' => true,
'meta' => array(
'placeholder' => esc_html__( 'Test placeholder', 'shortcode-ui-example', 'shortcode-ui' ),
'data-test' => 1,
),
),
array(
'label' => esc_html__( 'Select Page', 'shortcode-ui-example', 'shortcode-ui' ),
'attr' => 'page',
'type' => 'post_select',
'query' => array( 'post_type' => 'page' ),
'multiple' => true,
),
array(
'label' => __( 'Select Tag', 'shortcode-ui-example', 'shortcode-ui' ),
'attr' => 'tag',
'type' => 'term_select',
'taxonomy' => 'post_tag',
'multiple' => true,
),
array(
'label' => __( 'User Select', 'shortcode-ui-example', 'shortcode-ui' ),
'attr' => 'users',
'type' => 'user_select',
'multiple' => true,
),
array(
'label' => esc_html__( 'Color', 'shortcode-ui-example', 'shortcode-ui' ),
'attr' => 'color',
'type' => 'color',
'encode' => false,
'meta' => array(
'placeholder' => esc_html__( 'Hex color code', 'shortcode-ui-example', 'shortcode-ui' ),
),
),
array(
'label' => esc_html__( 'Alignment', 'shortcode-ui-example', 'shortcode-ui' ),
'description' => esc_html__( 'Whether the quotation should be displayed as pull-left, pull-right, or neither.', 'shortcode-ui-example', 'shortcode-ui' ),
'attr' => 'alignment',
'type' => 'select',
'options' => array(
array( 'value' => '', 'label' => esc_html__( 'None', 'shortcode-ui-example', 'shortcode-ui' ) ),
array( 'value' => 'left', 'label' => esc_html__( 'Pull Left', 'shortcode-ui-example', 'shortcode-ui' ) ),
array( 'value' => 'right', 'label' => esc_html__( 'Pull Right', 'shortcode-ui-example', 'shortcode-ui' ) ),
array(
'label' => 'Test Optgroup',
'options' => array(
array( 'value' => 'left-2', 'label' => esc_html__( 'Pull Left', 'shortcode-ui-example', 'shortcode-ui' ) ),
array( 'value' => 'right-2', 'label' => esc_html__( 'Pull Right', 'shortcode-ui-example', 'shortcode-ui' ) ),
)
),
),
),
array(
'label' => esc_html__( 'CSS Classes', 'shortcode-ui-example', 'shortcode-ui' ),
'description' => esc_html__( 'Which classes the shortcode should get.', 'shortcode-ui-example', 'shortcode-ui' ),
'attr' => 'classes',
'type' => 'select',
/**
* Use this to allow for multiple selections – similar to `'multiple' => true'`.
*/
'meta' => array( 'multiple' => true ),
'options' => array(
array( 'value' => '', 'label' => esc_html__( 'Default', 'shortcode-ui-example', 'shortcode-ui' ) ),
array( 'value' => 'bold', 'label' => esc_html__( 'Bold', 'shortcode-ui-example', 'shortcode-ui' ) ),
array( 'value' => 'italic', 'label' => esc_html__( 'Italic', 'shortcode-ui-example', 'shortcode-ui' ) ),
),
),
array(
'label' => esc_html__( 'Year', 'shortcode-ui-example', 'shortcode-ui' ),
'description' => esc_html__( 'Optional. The year the quotation is from.', 'shortcode-ui-example', 'shortcode-ui' ),
'attr' => 'year',
'type' => 'number',
'meta' => array(
'placeholder' => 'YYYY',
'min' => '1990',
'max' => date_i18n( 'Y' ),
'step' => '1',
),
),
);
/*
* Define the Shortcode UI arguments.
*/
$shortcode_ui_args = array(
/*
* How the shortcode should be labeled in the UI. Required argument.
*/
'label' => esc_html__( 'Shortcake Dev', 'shortcode-ui-example', 'shortcode-ui' ),
/*
* Include an icon with your shortcode. Optional.
* Use a dashicon, or full HTML (e.g. <img src="/path/to/your/icon" />).
*/
'listItemImage' => 'dashicons-editor-quote',
/*
* Limit this shortcode UI to specific posts. Optional.
*/
'post_type' => array( 'post' ),
/*
* Register UI for the "inner content" of the shortcode. Optional.
* If no UI is registered for the inner content, then any inner content
* data present will be backed-up during editing.
*/
'inner_content' => array(
'label' => esc_html__( 'Quote', 'shortcode-ui-example', 'shortcode-ui' ),
'description' => esc_html__( 'Include a statement from someone famous.', 'shortcode-ui-example', 'shortcode-ui' ),
),
/*
* Define the UI for attributes of the shortcode. Optional.
*
* See above, to where the the assignment to the $fields variable was made.
*/
'attrs' => $fields,
);
shortcode_ui_register_for_shortcode( 'shortcake_dev', $shortcode_ui_args );
}
/*
* 3. Define the callback for the advanced shortcode.
*/
/**
* Callback for the shortcake_dev shortcode.
*
* It renders the shortcode based on supplied attributes.
*/
function shortcode_ui_dev_shortcode( $attr, $content, $shortcode_tag ) {
$attr = shortcode_atts( array(
'source' => '',
'attachment' => 0,
'gallery' => '',
'page' => '',
'term' => '',
'users' => '',
'color' => '',
'alignment' => '',
'classes' => '',
'year' => '',
), $attr, $shortcode_tag );
$attr['page'] = array_map(
function( $post_id ) {
return get_the_title( $post_id );
},
array_filter( array_map( 'absint', explode( ',', $attr['page'] ) ) )
);
$attr['term'] = array_map(
function( $term_id ) {
$data = get_term( $term_id, 'post_tag' );
return $data->name;
},
array_filter( array_map( 'absint', explode( ',', $attr['term'] ) ) )
);
$attr['users'] = array_map(
function( $user_id ) {
$data = get_userdata( $user_id );
return $data->display_name;
},
array_filter( array_map( 'absint', explode( ',', $attr['users'] ) ) )
);
$attr['color'] = urldecode( $attr['color'] );
// Shortcode callbacks must return content, hence, output buffering here.
ob_start();
?>
<section class="pullquote" style="padding: 20px; background: rgba(0, 0, 0, 0.1);">
<p style="margin:0; padding: 0;">
<?php if ( ! empty( $content ) ) : ?>
<b><?php esc_html_e( 'Content:', 'shortcode-ui-example', 'shortcode-ui' ); ?></b> <?php echo wpautop( wp_kses_post( $content ) ); ?></br>
<?php endif; ?>
<?php if ( ! empty( $attr['source'] ) ) : ?>
<b><?php esc_html_e( 'Source:', 'shortcode-ui-example', 'shortcode-ui' ); ?></b> <?php echo wp_kses_post( $attr['source'] ); ?></br>
<?php endif; ?>
<?php if ( ! empty( $attr['attachment'] ) ) : ?>
<b><?php esc_html_e( 'Image:', 'shortcode-ui-example', 'shortcode-ui' ); ?></b> <?php echo wp_kses_post( wp_get_attachment_image( $attr['attachment'], array( 50, 50 ) ) ); ?></br>
<?php endif; ?>
<?php if ( ! empty( $attr['gallery'] ) ) : ?>
<b><?php esc_html_e( 'Gallery:', 'shortcode-ui-example', 'shortcode-ui' ); ?></b>
<?php foreach ( explode( ',', $attr['gallery'] ) as $attachment ) : ?>
<?php echo wp_kses_post( wp_get_attachment_image( $attachment, array( 50, 50 ) ) ); ?>
<?php endforeach; ?>
<br />
<?php endif; ?>
<?php if ( ! empty( $attr['page'] ) ) : ?>
<b><?php esc_html_e( 'Pages:', 'shortcode-ui-example', 'shortcode-ui' ); ?></b> <?php echo esc_html( implode( ', ', $attr['page'] ) ); ?></br>
<?php endif; ?>
<?php if ( ! empty( $attr['term'] ) ) : ?>
<b><?php esc_html_e( 'Terms:', 'shortcode-ui-example', 'shortcode-ui' ); ?></b> <?php echo esc_html( implode( ', ', $attr['term'] ) ); ?></br>
<?php endif; ?>
<?php if ( ! empty( $attr['users'] ) ) : ?>
<b><?php esc_html_e( 'Users:', 'shortcode-ui-example', 'shortcode-ui' ); ?></b> <?php echo esc_html( implode( ', ', $attr['users'] ) ); ?></br>
<?php endif; ?>
<?php if ( ! empty( $attr['color'] ) ) : ?>
<b><?php esc_html_e( 'Color:', 'shortcode-ui-example', 'shortcode-ui' ); ?></b> <span style="display: inline-block; width: 1.5em; height: 1.5em; vertical-align: bottom; background-color: <?php echo esc_html( $attr['color'] ); ?>"></span></br>
<?php endif; ?>
<?php if ( ! empty( $attr['alignment'] ) ) : ?>
<b><?php esc_html_e( 'Alignment:', 'shortcode-ui-example', 'shortcode-ui' ); ?></b> <?php echo esc_html( $attr['alignment'] ); ?></br>
<?php endif; ?>
<?php if ( ! empty( $attr['classes'] ) ) : ?>
<b><?php esc_html_e( 'Classes:', 'shortcode-ui-example', 'shortcode-ui' ); ?></b> <?php echo esc_html( $attr['classes'] ); ?></br>
<?php endif; ?>
<?php if ( ! empty( $attr['year'] ) ) : ?>
<b><?php esc_html_e( 'Year:', 'shortcode-ui-example', 'shortcode-ui' ); ?></b> <?php echo esc_html( $attr['year'] ); ?></br>
<?php endif; ?>
</p>
</section>
<?php
return ob_get_clean();
}