PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.0
Jetpack – WP Security, Backup, Speed, & Growth v16.0
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / modules / shortcodes / slideshow.php

slideshow.php in Jetpack – WP Security, Backup, Speed, & Growth 16.0, at modules/shortcodes/slideshow.php

333 lines 9.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php //phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
2 /**
3 * Slideshow shortcode.
4 * Adds a new "slideshow" gallery type when adding a gallery using the classic editor.
5 *
6 * @package automattic/jetpack
7 */
8
9 use Automattic\Jetpack\Assets;
10 use Automattic\Jetpack\Extensions\Slideshow;
11
12 if ( ! defined( 'ABSPATH' ) ) {
13 exit( 0 );
14 }
15
16 /**
17 * Slideshow shortcode usage: [gallery type="slideshow"] or the older [slideshow]
18 *
19 * @phan-constructor-used-for-side-effects
20 */
21 class Jetpack_Slideshow_Shortcode {
22 /**
23 * Number of slideshows on a page.
24 *
25 * @var int
26 */
27 public $instance_count = 0;
28
29 /**
30 * Constructor
31 */
32 public function __construct() {
33 global $shortcode_tags;
34
35 // Only if the slideshow shortcode has not already been defined.
36 if ( ! array_key_exists( 'slideshow', $shortcode_tags ) ) {
37 add_shortcode( 'slideshow', array( $this, 'shortcode_callback' ) );
38 }
39
40 // Only if the gallery shortcode has not been redefined.
41 if ( isset( $shortcode_tags['gallery'] ) && 'gallery_shortcode' === $shortcode_tags['gallery'] ) {
42 add_filter( 'post_gallery', array( $this, 'post_gallery' ), 1002, 2 );
43 add_filter( 'jetpack_gallery_types', array( $this, 'add_gallery_type' ), 10 );
44 }
45 }
46
47 /**
48 * Responds to the [gallery] shortcode, but not an actual shortcode callback.
49 *
50 * @param string $value An empty string if nothing has modified the gallery output, the output html otherwise.
51 * @param array $attr The shortcode attributes array.
52 *
53 * @return string The (un)modified $value
54 */
55 public function post_gallery( $value, $attr ) {
56 // Bail if somebody else has done something.
57 if ( ! empty( $value ) ) {
58 return $value;
59 }
60
61 // If [gallery type="slideshow"] have it behave just like [slideshow].
62 if ( ! empty( $attr['type'] ) && 'slideshow' === $attr['type'] ) {
63 return $this->shortcode_callback( $attr );
64 }
65
66 return $value;
67 }
68
69 /**
70 * Add the Slideshow type to gallery settings
71 *
72 * @see Jetpack_Tiled_Gallery::media_ui_print_templates
73 *
74 * @param array $types An array of types where the key is the value, and the value is the caption.
75 *
76 * @return array
77 */
78 public function add_gallery_type( $types = array() ) {
79 $types['slideshow'] = esc_html__( 'Slideshow', 'jetpack' );
80
81 return $types;
82 }
83
84 /**
85 * Display shortcode.
86 *
87 * @param array $attr Shortcode attributes.
88 */
89 public function shortcode_callback( $attr ) {
90 $post_id = get_the_ID();
91
92 $attr = shortcode_atts(
93 array(
94 'trans' => 'fade',
95 'order' => 'ASC',
96 'orderby' => 'menu_order ID',
97 'id' => $post_id,
98 'include' => '',
99 'exclude' => '',
100 'autostart' => true,
101 'size' => '',
102 ),
103 $attr,
104 'slideshow'
105 );
106
107 if ( 'rand' === strtolower( $attr['order'] ) ) {
108 $attr['orderby'] = 'none';
109 }
110
111 $attr['orderby'] = sanitize_sql_orderby( $attr['orderby'] );
112 if ( ! $attr['orderby'] ) {
113 $attr['orderby'] = 'menu_order ID';
114 }
115
116 if ( ! $attr['size'] ) {
117 $attr['size'] = 'full';
118 }
119
120 // Don't restrict to the current post if include.
121 $post_parent = ( empty( $attr['include'] ) ) ? (int) $attr['id'] : null;
122
123 $attachments = get_posts(
124 array(
125 'post_status' => 'inherit',
126 'post_type' => 'attachment',
127 'post_mime_type' => 'image',
128 'posts_per_page' => - 1,
129 'post_parent' => $post_parent,
130 'order' => $attr['order'],
131 'orderby' => $attr['orderby'],
132 'include' => $attr['include'],
133 'exclude' => $attr['exclude'],
134 'suppress_filters' => false,
135 )
136 );
137
138 if ( ! is_countable( $attachments ) || count( $attachments ) < 1 ) {
139 return false;
140 }
141
142 $gallery_instance = sprintf( 'gallery-%d-%d', $attr['id'], ++$this->instance_count );
143
144 $gallery = array();
145 foreach ( $attachments as $attachment ) {
146 $attachment_image_src = wp_get_attachment_image_src( $attachment->ID, $attr['size'] );
147 $attachment_image_src = false !== $attachment_image_src ? $attachment_image_src[0] : ''; // [url, width, height].
148 $attachment_image_title = get_the_title( $attachment->ID );
149 $attachment_image_alt = get_post_meta( $attachment->ID, '_wp_attachment_image_alt', true );
150 /**
151 * Filters the Slideshow slide caption.
152 *
153 * @module shortcodes
154 *
155 * @since 2.3.0
156 *
157 * @param string wptexturize( strip_tags( $attachment->post_excerpt ) ) Post excerpt.
158 * @param string $attachment ->ID Attachment ID.
159 */
160 $caption = apply_filters( 'jetpack_slideshow_slide_caption', wptexturize( wp_strip_all_tags( $attachment->post_excerpt ) ), $attachment->ID );
161
162 $gallery[] = (object) array(
163 'src' => (string) esc_url_raw( $attachment_image_src ),
164 'id' => (string) $attachment->ID,
165 'title' => (string) esc_attr( $attachment_image_title ),
166 'alt' => (string) esc_attr( $attachment_image_alt ),
167 'caption' => (string) $caption,
168 'itemprop' => 'image',
169 );
170 }
171
172 $color = Jetpack_Options::get_option( 'slideshow_background_color', 'black' );
173 $autostart = $attr['autostart'] ? $attr['autostart'] : 'true';
174 $js_attr = array(
175 'gallery' => $gallery,
176 'selector' => $gallery_instance,
177 'trans' => $attr['trans'] ? $attr['trans'] : 'fade',
178 'autostart' => $autostart,
179 'color' => $color,
180 );
181
182 // Show a link to the gallery in feeds.
183 if ( is_feed() ) {
184 return sprintf(
185 '<a href="%s">%s</a>',
186 esc_url( get_permalink( $post_id ) . '#' . $gallery_instance . '-slideshow' ),
187 esc_html__( 'Click to view slideshow.', 'jetpack' )
188 );
189 }
190
191 if (
192 class_exists( 'Jetpack_AMP_Support' )
193 && Jetpack_AMP_Support::is_amp_request()
194 ) {
195 // Load the styles and use the rendering method from the Slideshow block.
196 Jetpack_Gutenberg::load_styles_as_required( 'slideshow' );
197
198 $amp_args = array(
199 'ids' => wp_list_pluck( $gallery, 'id' ),
200 );
201
202 if ( 'true' == $autostart ) { // phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual -- attribute can be stored as boolean or string.
203 $amp_args['autoplay'] = true;
204 }
205
206 /*
207 * Blocks can be disabled in Jetpack Settings.
208 * If that's the case, we need to include the slideshow block manually.
209 * render_amp() lives in the block's render.php, which is loaded lazily,
210 * so make sure it is available before calling it.
211 */
212 if ( ! function_exists( 'Automattic\Jetpack\Extensions\Slideshow\render_amp' ) ) {
213 require_once JETPACK__PLUGIN_DIR . 'extensions/blocks/slideshow/render.php';
214 }
215
216 return Slideshow\render_amp( $amp_args );
217 }
218
219 return $this->slideshow_js( $js_attr );
220 }
221
222 /**
223 * Render the slideshow js
224 *
225 * Returns the necessary markup and js to fire a slideshow.
226 *
227 * @param array $attr Attributes for the slideshow.
228 *
229 * @uses $this->enqueue_scripts()
230 *
231 * @return string HTML output.
232 */
233 public function slideshow_js( $attr ) {
234 // Enqueue scripts.
235 $this->enqueue_scripts();
236
237 $output = '<p class="jetpack-slideshow-noscript robots-nocontent">' . esc_html__( 'This slideshow requires JavaScript.', 'jetpack' ) . '</p>';
238
239 /*
240 * Checking for JSON_HEX_AMP and friends here allows us to get rid of
241 * '&quot;', that can sometimes be included in the JSON input in some languages like French.
242 */
243 $gallery_attributes = _wp_specialchars(
244 wp_check_invalid_utf8(
245 wp_json_encode( $attr['gallery'], JSON_HEX_TAG | JSON_HEX_AMP | JSON_HEX_APOS | JSON_HEX_QUOT )
246 ),
247 ENT_QUOTES,
248 false,
249 true
250 );
251
252 $output .= sprintf(
253 '<div id="%s" class="jetpack-slideshow-window jetpack-slideshow jetpack-slideshow-%s" data-trans="%s" data-autostart="%s" data-gallery="%s" itemscope itemtype="https://schema.org/ImageGallery"></div>',
254 esc_attr( $attr['selector'] . '-slideshow' ),
255 esc_attr( $attr['color'] ),
256 esc_attr( $attr['trans'] ),
257 esc_attr( $attr['autostart'] ),
258 $gallery_attributes
259 );
260
261 return $output;
262 }
263
264 /**
265 * Actually enqueues the scripts and styles.
266 */
267 public function enqueue_scripts() {
268
269 wp_register_script(
270 'jetpack-shortcode-deps',
271 plugins_url( '_inc/build/shortcodes/js/dependencies.min.js', JETPACK__PLUGIN_FILE ),
272 array( 'jquery' ),
273 '20250905',
274 true
275 );
276
277 wp_enqueue_script(
278 'jetpack-slideshow',
279 Assets::get_file_url_for_environment( '_inc/build/shortcodes/js/slideshow-shortcode.min.js', 'modules/shortcodes/js/slideshow-shortcode.js' ),
280 array( 'jquery', 'jetpack-shortcode-deps' ),
281 '20160119.1',
282 true
283 );
284 wp_enqueue_style(
285 'jetpack-slideshow',
286 plugins_url( '/css/slideshow-shortcode.css', __FILE__ ),
287 array(),
288 JETPACK__VERSION
289 );
290 wp_style_add_data( 'jetpack-slideshow', 'rtl', 'replace' );
291
292 require_once JETPACK__PLUGIN_DIR . '_inc/lib/class-jetpack-spinner.php';
293 wp_localize_script(
294 'jetpack-slideshow',
295 'jetpackSlideshowSettings',
296 /**
297 * Filters the slideshow JavaScript spinner.
298 *
299 * @module shortcodes
300 *
301 * @since 2.1.0
302 * @since 4.7.0 Added the `speed` option to the array of options.
303 *
304 * @param array $args
305 * - string - spinner - URL of the spinner image.
306 * - string - speed - Speed of the slideshow. Defaults to 4000.
307 * - string - label_prev - Aria label for slideshow's previous button
308 * - string - label_stop - Aria label for slideshow's pause button
309 * - string - label_next - Aria label for slideshow's next button
310 */
311 apply_filters(
312 'jetpack_js_slideshow_settings',
313 array(
314 'spinner' => 'data:image/svg+xml,' . rawurlencode( Jetpack_Spinner::render( 24 ) ),
315 'speed' => '4000',
316 'label_prev' => __( 'Previous Slide', 'jetpack' ),
317 'label_stop' => __( 'Pause Slideshow', 'jetpack' ),
318 'label_next' => __( 'Next Slide', 'jetpack' ),
319 )
320 )
321 );
322 }
323
324 /**
325 * Instantiate shortcode.
326 */
327 public static function init() {
328 new Jetpack_Slideshow_Shortcode();
329 }
330 }
331
332 Jetpack_Slideshow_Shortcode::init();
333