| 1 |
<?php |
| 2 |
/** |
| 3 |
* Slideshare shortcode |
| 4 |
* |
| 5 |
* Formats: |
| 6 |
* Old style (still compatible): [slideshare id=5342235&doc=camprock-101002163655-phpapp01&w=300&h=200] |
| 7 |
* New style: [slideshare id=5342235&w=300&h=200&fb=0&mw=0&mh=0&sc=no] |
| 8 |
* |
| 9 |
* Legend: |
| 10 |
* id = Document ID provided by Slideshare |
| 11 |
* w = Width of iFrame (int) |
| 12 |
* h = Height of iFrame (int) |
| 13 |
* fb = iFrame frameborder (int) |
| 14 |
* mw = iFrame marginwidth (int) |
| 15 |
* mh = iFrame marginheight (int) |
| 16 |
* sc = iFrame Scrollbar (yes/no) |
| 17 |
* pro = Slideshare Pro (yes/no) |
| 18 |
* style = Inline CSS (string) |
| 19 |
* |
| 20 |
* @package Jetpack |
| 21 |
*/ |
| 22 |
|
| 23 |
/** |
| 24 |
* Register and display shortcode. |
| 25 |
* |
| 26 |
* @param array $atts Shortcode attributes. |
| 27 |
*/ |
| 28 |
function slideshare_shortcode( $atts ) { |
| 29 |
global $content_width; |
| 30 |
|
| 31 |
$params = shortcode_new_to_old_params( $atts ); |
| 32 |
parse_str( $params, $arguments ); |
| 33 |
|
| 34 |
if ( empty( $arguments ) ) { |
| 35 |
return '<!-- SlideShare error: no arguments -->'; |
| 36 |
} |
| 37 |
|
| 38 |
$attr = shortcode_atts( |
| 39 |
array( |
| 40 |
'id' => '', |
| 41 |
'w' => '', |
| 42 |
'h' => '', |
| 43 |
'fb' => '', |
| 44 |
'mw' => '', |
| 45 |
'mh' => '', |
| 46 |
'sc' => '', |
| 47 |
'pro' => '', |
| 48 |
'style' => '', |
| 49 |
), |
| 50 |
$arguments |
| 51 |
); |
| 52 |
|
| 53 |
// check that the Slideshare ID contains letters, numbers and query strings. |
| 54 |
$pattern = '/[^-_a-zA-Z0-9?=&]/'; |
| 55 |
if ( empty( $attr['id'] ) || preg_match( $pattern, $attr['id'] ) ) { |
| 56 |
return '<!-- SlideShare error: id is missing or has illegal characters -->'; |
| 57 |
} |
| 58 |
|
| 59 |
// check the width/height. |
| 60 |
$w = intval( $attr['w'] ); |
| 61 |
|
| 62 |
// If no width was specified (or uses the wrong format), and if we have a $content_width, use that. |
| 63 |
if ( empty( $w ) && ! empty( $content_width ) ) { |
| 64 |
$w = intval( $content_width ); |
| 65 |
} elseif ( $w < 300 || $w > 1600 ) { // If width was specified, but is too small/large, set default value. |
| 66 |
$w = 425; |
| 67 |
} else { |
| 68 |
$w = intval( $w ); |
| 69 |
} |
| 70 |
|
| 71 |
$h = ceil( $w * 348 / 425 ); // Note: user-supplied height is ignored. |
| 72 |
|
| 73 |
if ( ! empty( $attr['pro'] ) ) { |
| 74 |
$source = 'https://www.slideshare.net/slidesharepro/' . $attr['id']; |
| 75 |
} else { |
| 76 |
$source = 'https://www.slideshare.net/slideshow/embed_code/' . $attr['id']; |
| 77 |
} |
| 78 |
|
| 79 |
if ( isset( $attr['rel'] ) ) { |
| 80 |
$source = add_query_arg( 'rel', intval( $attr['rel'] ), $source ); |
| 81 |
} |
| 82 |
|
| 83 |
if ( ! empty( $attr['startSlide'] ) ) { |
| 84 |
$source = add_query_arg( 'startSlide', intval( $attr['startSlide'] ), $source ); |
| 85 |
} |
| 86 |
|
| 87 |
$player = sprintf( "<iframe src='%s' width='%d' height='%d'", esc_url( $source ), $w, $h ); |
| 88 |
|
| 89 |
// check the frameborder. |
| 90 |
if ( ! empty( $attr['fb'] ) || '0' === $attr['fb'] ) { |
| 91 |
$player .= " frameborder='" . intval( $attr['fb'] ) . "'"; |
| 92 |
} |
| 93 |
|
| 94 |
// check the margin width; if not empty, cast as int. |
| 95 |
if ( ! empty( $attr['mw'] ) || '0' === $attr['mw'] ) { |
| 96 |
$player .= " marginwidth='" . intval( $attr['mw'] ) . "'"; |
| 97 |
} |
| 98 |
|
| 99 |
// check the margin height, if not empty, cast as int. |
| 100 |
if ( ! empty( $attr['mh'] ) || '0' === $attr['mh'] ) { |
| 101 |
$player .= " marginheight='" . intval( $attr['mh'] ) . "'"; |
| 102 |
} |
| 103 |
|
| 104 |
if ( ! empty( $attr['style'] ) ) { |
| 105 |
$player .= " style='" . esc_attr( $attr['style'] ) . "'"; |
| 106 |
} |
| 107 |
|
| 108 |
// check the scrollbar; cast as a lowercase string for comparison. |
| 109 |
if ( ! empty( $attr['sc'] ) ) { |
| 110 |
$sc = strtolower( $attr['sc'] ); |
| 111 |
|
| 112 |
if ( in_array( $sc, array( 'yes', 'no' ), true ) ) { |
| 113 |
$player .= " scrolling='" . $sc . "'"; |
| 114 |
} |
| 115 |
} |
| 116 |
|
| 117 |
$player .= ' allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe>'; |
| 118 |
|
| 119 |
/** |
| 120 |
* Filter the returned SlideShare shortcode. |
| 121 |
* |
| 122 |
* @module shortcodes |
| 123 |
* |
| 124 |
* @since 4.7.0 |
| 125 |
* |
| 126 |
* @param string $player The iframe to return. |
| 127 |
* @param array $atts The attributes specified in the shortcode. |
| 128 |
*/ |
| 129 |
return apply_filters( 'jetpack_slideshare_shortcode', $player, $atts ); |
| 130 |
} |
| 131 |
add_shortcode( 'slideshare', 'slideshare_shortcode' ); |
| 132 |
|