| 1 |
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 |
/** |
| 3 |
* Module Name: Image Widget |
| 4 |
* Module Description: Easily add images to your theme's sidebar. |
| 5 |
* Sort Order: 20 |
| 6 |
* First Introduced: 1.2 |
| 7 |
*/ |
| 8 |
|
| 9 |
// phpcs:disable Universal.Files.SeparateFunctionsFromOO.Mixed -- TODO: Move classes to appropriately-named class files. |
| 10 |
|
| 11 |
add_action( 'widgets_init', 'jetpack_image_widget_init', 11 ); |
| 12 |
/** |
| 13 |
* Register the widget for use in Appearance -> Widgets |
| 14 |
*/ |
| 15 |
function jetpack_image_widget_init() { |
| 16 |
if ( class_exists( 'WP_Widget_Media_Image' ) && Jetpack_Options::get_option( 'image_widget_migration' ) ) { |
| 17 |
return; |
| 18 |
} |
| 19 |
register_widget( 'Jetpack_Image_Widget' ); |
| 20 |
} |
| 21 |
|
| 22 |
/** |
| 23 |
* Jetpack_Image_Widget main class. |
| 24 |
*/ |
| 25 |
class Jetpack_Image_Widget extends WP_Widget { |
| 26 |
/** |
| 27 |
* Register widget with WordPress. |
| 28 |
*/ |
| 29 |
public function __construct() { |
| 30 |
parent::__construct( |
| 31 |
'image', |
| 32 |
/** This filter is documented in modules/widgets/facebook-likebox.php */ |
| 33 |
apply_filters( 'jetpack_widget_name', esc_html__( 'Image', 'jetpack' ) ), |
| 34 |
array( |
| 35 |
'classname' => 'widget_image', |
| 36 |
'description' => __( 'Display an image in your sidebar', 'jetpack' ), |
| 37 |
'customize_selective_refresh' => true, |
| 38 |
) |
| 39 |
); |
| 40 |
|
| 41 |
if ( is_active_widget( false, false, $this->id_base ) || is_active_widget( false, false, 'monster' ) || is_customize_preview() ) { |
| 42 |
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ) ); |
| 43 |
} |
| 44 |
} |
| 45 |
|
| 46 |
/** |
| 47 |
* Loads file for front-end widget style. |
| 48 |
* |
| 49 |
* @uses wp_enqueue_style(), plugins_url() |
| 50 |
*/ |
| 51 |
public function enqueue_style() { |
| 52 |
wp_enqueue_style( 'jetpack_image_widget', plugins_url( 'image-widget/style.css', __FILE__ ), array(), '20140808' ); |
| 53 |
} |
| 54 |
|
| 55 |
/** |
| 56 |
* Front-end display of widget. |
| 57 |
* |
| 58 |
* @see WP_Widget::widget() |
| 59 |
* |
| 60 |
* @param array $args Widget arguments. |
| 61 |
* @param array $instance Saved values from database. |
| 62 |
*/ |
| 63 |
public function widget( $args, $instance ) { |
| 64 |
echo $args['before_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 65 |
|
| 66 |
$instance = wp_parse_args( |
| 67 |
$instance, |
| 68 |
array( |
| 69 |
'title' => '', |
| 70 |
'img_url' => '', |
| 71 |
) |
| 72 |
); |
| 73 |
|
| 74 |
/** This filter is documented in core/src/wp-includes/default-widgets.php */ |
| 75 |
$title = apply_filters( 'widget_title', $instance['title'] ); |
| 76 |
if ( $title ) { |
| 77 |
echo $args['before_title'] . $title . $args['after_title']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 78 |
} |
| 79 |
|
| 80 |
if ( $instance['img_url'] ) { |
| 81 |
|
| 82 |
$output = '<img src="' . esc_url( $instance['img_url'] ) . '" '; |
| 83 |
|
| 84 |
if ( '' !== (string) $instance['alt_text'] ) { |
| 85 |
$output .= 'alt="' . esc_attr( $instance['alt_text'] ) . '" '; |
| 86 |
} |
| 87 |
if ( '' !== (string) $instance['img_title'] ) { |
| 88 |
$output .= 'title="' . esc_attr( $instance['img_title'] ) . '" '; |
| 89 |
} |
| 90 |
if ( '' !== (string) $instance['caption'] ) { |
| 91 |
$output .= 'class="align' . esc_attr( $instance['align'] ) . '" '; |
| 92 |
} |
| 93 |
if ( '' !== (string) $instance['img_width'] ) { |
| 94 |
$output .= 'width="' . esc_attr( $instance['img_width'] ) . '" '; |
| 95 |
} |
| 96 |
if ( '' !== (string) $instance['img_height'] ) { |
| 97 |
$output .= 'height="' . esc_attr( $instance['img_height'] ) . '" '; |
| 98 |
} |
| 99 |
$output .= '/>'; |
| 100 |
|
| 101 |
$output = apply_filters( 'jetpack_image_cdn_content', $output ); |
| 102 |
|
| 103 |
if ( $instance['link'] ) { |
| 104 |
$target = ! empty( $instance['link_target_blank'] ) |
| 105 |
? 'target="_blank"' |
| 106 |
: ''; |
| 107 |
$output = '<a ' . $target . ' href="' . esc_url( $instance['link'] ) . '">' . $output . '</a>'; |
| 108 |
} |
| 109 |
if ( '' !== (string) $instance['caption'] ) { |
| 110 |
/** This filter is documented in core/src/wp-includes/default-widgets.php */ |
| 111 |
$caption = apply_filters( 'widget_text', $instance['caption'] ); |
| 112 |
$img_width = ( ! empty( $instance['img_width'] ) ? 'style="width: ' . esc_attr( $instance['img_width'] ) . 'px"' : '' ); |
| 113 |
$output = '<figure ' . $img_width . ' class="wp-caption align' . esc_attr( $instance['align'] ) . '"> |
| 114 |
' . $output . ' |
| 115 |
<figcaption class="wp-caption-text">' . $caption . '</figcaption> |
| 116 |
</figure>'; // wp_kses_post caption on update. |
| 117 |
} |
| 118 |
echo '<div class="jetpack-image-container">' . do_shortcode( $output ) . '</div>'; |
| 119 |
} elseif ( current_user_can( 'edit_theme_options' ) ) { |
| 120 |
echo '<p>' . wp_kses( |
| 121 |
sprintf( |
| 122 |
/* translators: %s link to the widget settings page. */ |
| 123 |
__( 'Image missing or invalid URL. Please check the Image widget URL in your <a href="%s">widget settings</a>.', 'jetpack' ), |
| 124 |
admin_url( 'widgets.php' ) |
| 125 |
), |
| 126 |
array( |
| 127 |
'a' => array( |
| 128 |
'href' => array(), |
| 129 |
), |
| 130 |
) |
| 131 |
) . '</p>'; |
| 132 |
} |
| 133 |
|
| 134 |
echo "\n" . $args['after_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 135 |
|
| 136 |
/** This action is documented in modules/widgets/gravatar-profile.php */ |
| 137 |
do_action( 'jetpack_stats_extra', 'widget_view', 'image' ); |
| 138 |
} |
| 139 |
|
| 140 |
/** |
| 141 |
* Sanitize widget form values as they are saved. |
| 142 |
* |
| 143 |
* @see WP_Widget::update() |
| 144 |
* |
| 145 |
* @param array $new_instance Values just sent to be saved. |
| 146 |
* @param array $old_instance Previously saved values from database. |
| 147 |
* |
| 148 |
* @return array Updated safe values to be saved. |
| 149 |
*/ |
| 150 |
public function update( $new_instance, $old_instance ) { |
| 151 |
$allowed_caption_html = array( |
| 152 |
'a' => array( |
| 153 |
'href' => array(), |
| 154 |
'title' => array(), |
| 155 |
), |
| 156 |
'b' => array(), |
| 157 |
'em' => array(), |
| 158 |
'i' => array(), |
| 159 |
'p' => array(), |
| 160 |
'strong' => array(), |
| 161 |
); |
| 162 |
|
| 163 |
$instance = $old_instance; |
| 164 |
|
| 165 |
$instance['title'] = wp_strip_all_tags( $new_instance['title'] ); |
| 166 |
$instance['img_url'] = esc_url( trim( $new_instance['img_url'] ) ); |
| 167 |
$instance['alt_text'] = wp_strip_all_tags( $new_instance['alt_text'] ); |
| 168 |
$instance['img_title'] = wp_strip_all_tags( $new_instance['img_title'] ); |
| 169 |
$instance['caption'] = wp_kses( stripslashes( $new_instance['caption'] ), $allowed_caption_html ); |
| 170 |
$instance['align'] = $new_instance['align']; |
| 171 |
$instance['link'] = esc_url( trim( $new_instance['link'] ) ); |
| 172 |
$instance['link_target_blank'] = isset( $new_instance['link_target_blank'] ) ? (bool) $new_instance['link_target_blank'] : false; |
| 173 |
|
| 174 |
$new_img_width = absint( $new_instance['img_width'] ); |
| 175 |
$new_img_height = absint( $new_instance['img_height'] ); |
| 176 |
|
| 177 |
if ( ! empty( $instance['img_url'] ) && 0 === $new_img_width && 0 === $new_img_height ) { |
| 178 |
// Download the url to a local temp file and then process it with getimagesize so we can optimize browser layout. |
| 179 |
$tmp_file = download_url( $instance['img_url'], 10 ); |
| 180 |
if ( ! is_wp_error( $tmp_file ) ) { |
| 181 |
$size = getimagesize( $tmp_file ); |
| 182 |
|
| 183 |
$width = $size[0]; |
| 184 |
$instance['img_width'] = absint( $width ); |
| 185 |
|
| 186 |
$height = $size[1]; |
| 187 |
$instance['img_height'] = absint( $height ); |
| 188 |
|
| 189 |
wp_delete_file( $tmp_file ); |
| 190 |
} else { |
| 191 |
$instance['img_width'] = $new_img_width; |
| 192 |
$instance['img_height'] = $new_img_height; |
| 193 |
} |
| 194 |
} else { |
| 195 |
$instance['img_width'] = $new_img_width; |
| 196 |
$instance['img_height'] = $new_img_height; |
| 197 |
} |
| 198 |
|
| 199 |
return $instance; |
| 200 |
} |
| 201 |
|
| 202 |
/** |
| 203 |
* Back end widget form. |
| 204 |
* |
| 205 |
* @see WP_Widget::form() |
| 206 |
* |
| 207 |
* @param array $instance Previously saved values from database. |
| 208 |
*/ |
| 209 |
public function form( $instance ) { |
| 210 |
// Defaults. |
| 211 |
$instance = wp_parse_args( |
| 212 |
(array) $instance, |
| 213 |
array( |
| 214 |
'title' => '', |
| 215 |
'img_url' => '', |
| 216 |
'alt_text' => '', |
| 217 |
'img_title' => '', |
| 218 |
'caption' => '', |
| 219 |
'align' => 'none', |
| 220 |
'img_width' => '', |
| 221 |
'img_height' => '', |
| 222 |
'link' => '', |
| 223 |
'link_target_blank' => false, |
| 224 |
) |
| 225 |
); |
| 226 |
|
| 227 |
$title = esc_attr( $instance['title'] ); |
| 228 |
$img_url = esc_url( $instance['img_url'], null, 'display' ); |
| 229 |
$alt_text = esc_attr( $instance['alt_text'] ); |
| 230 |
$img_title = esc_attr( $instance['img_title'] ); |
| 231 |
$caption = esc_textarea( $instance['caption'] ); |
| 232 |
$align = esc_attr( $instance['align'] ); |
| 233 |
$img_width = esc_attr( $instance['img_width'] ); |
| 234 |
$img_height = esc_attr( $instance['img_height'] ); |
| 235 |
$link_target_blank = checked( $instance['link_target_blank'], true, false ); |
| 236 |
|
| 237 |
$link = esc_url( $instance['link'], null, 'display' ); |
| 238 |
|
| 239 |
echo '<p><label for="' . esc_attr( $this->get_field_id( 'title' ) ) . '">' . esc_html__( 'Widget title:', 'jetpack' ) . ' |
| 240 |
<input class="widefat" id="' . esc_attr( $this->get_field_id( 'title' ) ) . '" name="' . esc_attr( $this->get_field_name( 'title' ) ) . '" type="text" value="' . esc_attr( $title ) . '" /> |
| 241 |
</label></p> |
| 242 |
<p><label for="' . esc_attr( $this->get_field_id( 'img_url' ) ) . '">' . esc_html__( 'Image URL:', 'jetpack' ) . ' |
| 243 |
<input class="widefat" id="' . esc_attr( $this->get_field_id( 'img_url' ) ) . '" name="' . esc_attr( $this->get_field_name( 'img_url' ) ) . '" type="text" value="' . esc_attr( $img_url ) . '" /> |
| 244 |
</label></p> |
| 245 |
<p><label for="' . esc_attr( $this->get_field_id( 'alt_text' ) ) . '">' . esc_html__( 'Alternate text:', 'jetpack' ) . ' <a href="https://support.wordpress.com/widgets/image-widget/#image-widget-alt-text" target="_blank">( ? )</a> |
| 246 |
<input class="widefat" id="' . esc_attr( $this->get_field_id( 'alt_text' ) ) . '" name="' . esc_attr( $this->get_field_name( 'alt_text' ) ) . '" type="text" value="' . esc_attr( $alt_text ) . '" /> |
| 247 |
</label></p> |
| 248 |
<p><label for="' . esc_attr( $this->get_field_id( 'img_title' ) ) . '">' . esc_html__( 'Image title:', 'jetpack' ) . ' <a href="https://support.wordpress.com/widgets/image-widget/#image-widget-title" target="_blank">( ? )</a> |
| 249 |
<input class="widefat" id="' . esc_attr( $this->get_field_id( 'img_title' ) ) . '" name="' . esc_attr( $this->get_field_name( 'img_title' ) ) . '" type="text" value="' . esc_attr( $img_title ) . '" /> |
| 250 |
</label></p> |
| 251 |
<p><label for="' . esc_attr( $this->get_field_id( 'caption' ) ) . '">' . esc_html__( 'Caption:', 'jetpack' ) . ' <a href="https://support.wordpress.com/widgets/image-widget/#image-widget-caption" target="_blank">( ? )</a> |
| 252 |
<textarea class="widefat" id="' . esc_attr( $this->get_field_id( 'caption' ) ) . '" name="' . esc_attr( $this->get_field_name( 'caption' ) ) . '" rows="2" cols="20">' . esc_textarea( $caption ) . '</textarea> |
| 253 |
</label></p>'; |
| 254 |
|
| 255 |
$alignments = array( |
| 256 |
'none' => __( 'None', 'jetpack' ), |
| 257 |
'left' => __( 'Left', 'jetpack' ), |
| 258 |
'center' => __( 'Center', 'jetpack' ), |
| 259 |
'right' => __( 'Right', 'jetpack' ), |
| 260 |
); |
| 261 |
echo '<p><label for="' . esc_attr( $this->get_field_id( 'align' ) ) . '">' . esc_html__( 'Image Alignment:', 'jetpack' ) . ' |
| 262 |
<select id="' . esc_attr( $this->get_field_id( 'align' ) ) . '" name="' . esc_attr( $this->get_field_name( 'align' ) ) . '">'; |
| 263 |
foreach ( $alignments as $alignment => $alignment_name ) { |
| 264 |
echo '<option value="' . esc_attr( $alignment ) . '" '; |
| 265 |
if ( $alignment === $align ) { |
| 266 |
echo 'selected="selected" '; |
| 267 |
} |
| 268 |
echo '>' . esc_html( $alignment_name ) . "</option>\n"; |
| 269 |
} |
| 270 |
echo '</select></label></p>'; |
| 271 |
|
| 272 |
echo '<p><label for="' . esc_attr( $this->get_field_id( 'img_width' ) ) . '">' . esc_html__( 'Width in pixels:', 'jetpack' ) . ' |
| 273 |
<input size="3" id="' . esc_attr( $this->get_field_id( 'img_width' ) ) . '" name="' . esc_attr( $this->get_field_name( 'img_width' ) ) . '" type="text" value="' . esc_attr( $img_width ) . '" /> |
| 274 |
</label> |
| 275 |
<label for="' . esc_attr( $this->get_field_id( 'img_height' ) ) . '">' . esc_html__( 'Height in pixels:', 'jetpack' ) . ' |
| 276 |
<input size="3" id="' . esc_attr( $this->get_field_id( 'img_height' ) ) . '" name="' . esc_attr( $this->get_field_name( 'img_height' ) ) . '" type="text" value="' . esc_attr( $img_height ) . '" /> |
| 277 |
</label><br /> |
| 278 |
<small>' . esc_html__( 'If empty, we will attempt to determine the image size.', 'jetpack' ) . '</small></p> |
| 279 |
<p><label for="' . esc_attr( $this->get_field_id( 'link' ) ) . '">' . esc_html__( 'Link URL (when the image is clicked):', 'jetpack' ) . ' |
| 280 |
<input class="widefat" id="' . esc_attr( $this->get_field_id( 'link' ) ) . '" name="' . esc_attr( $this->get_field_name( 'link' ) ) . '" type="text" value="' . esc_attr( $link ) . '" /> |
| 281 |
</label> |
| 282 |
<label for="' . esc_attr( $this->get_field_id( 'link_target_blank' ) ) . '"> |
| 283 |
<input type="checkbox" name="' . esc_attr( $this->get_field_name( 'link_target_blank' ) ) . '" id="' . esc_attr( $this->get_field_id( 'link_target_blank' ) ) . '" value="1"' . esc_attr( $link_target_blank ) . '/> |
| 284 |
' . esc_html__( 'Open link in a new window/tab', 'jetpack' ) . ' |
| 285 |
</label></p>'; |
| 286 |
} |
| 287 |
} // Class Jetpack_Image_Widget |
| 288 |
|