Completed
Pull Request — master (#28)
by Rasmus
01:27
created
imgix.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -16,17 +16,17 @@
 block discarded – undo
16 16
  * Author URI:  http://github.com/imgix-wordpress
17 17
  */
18 18
 
19
-include( 'includes/compability.php' );
20
-include( 'includes/class-images-via-imgix.php' );
21
-include( 'includes/options-page.php' );
19
+include('includes/compability.php');
20
+include('includes/class-images-via-imgix.php');
21
+include('includes/options-page.php');
22 22
 
23
-function imgix_plugin_admin_action_links( $links, $file ) {
24
-	if ( $file === plugin_basename( __FILE__ ) ) {
23
+function imgix_plugin_admin_action_links($links, $file) {
24
+	if ($file === plugin_basename(__FILE__)) {
25 25
 		$settings_link = '<a href="options-general.php?page=imgix-options">Settings</a>';
26
-		array_unshift( $links, $settings_link );
26
+		array_unshift($links, $settings_link);
27 27
 	}
28 28
 
29 29
 	return $links;
30 30
 }
31 31
 
32
-add_filter( 'plugin_action_links', 'imgix_plugin_admin_action_links', 10, 2 );
32
+add_filter('plugin_action_links', 'imgix_plugin_admin_action_links', 10, 2);
Please login to merge, or discard this patch.
includes/compability.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  * @package imgix
6 6
  */
7 7
 
8
-if ( ! function_exists( 'http_build_url' ) ) {
8
+if ( ! function_exists('http_build_url')) {
9 9
 	/**
10 10
 	 * This is a simplified version of http_build_url if pecl_http is missing
11 11
 	 *
@@ -13,22 +13,22 @@  discard block
 block discarded – undo
13 13
 	 *
14 14
 	 * @return string
15 15
 	 */
16
-	function http_build_url( $parsed_url ) {
17
-		$scheme   = isset( $parsed_url['scheme'] ) ? $parsed_url['scheme'] . '://' : '';
18
-		$host     = isset( $parsed_url['host'] ) ? $parsed_url['host'] : '';
19
-		$port     = isset( $parsed_url['port'] ) ? ':' . $parsed_url['port'] : '';
20
-		$user     = isset( $parsed_url['user'] ) ? $parsed_url['user'] : '';
21
-		$pass     = isset( $parsed_url['pass'] ) ? ':' . $parsed_url['pass'] : '';
22
-		$pass     = ( $user || $pass ) ? "$pass@" : '';
23
-		$path     = isset( $parsed_url['path'] ) ? $parsed_url['path'] : '';
24
-		$query    = isset( $parsed_url['query'] ) ? '?' . $parsed_url['query'] : '';
25
-		$fragment = isset( $parsed_url['fragment'] ) ? '#' . $parsed_url['fragment'] : '';
16
+	function http_build_url($parsed_url) {
17
+		$scheme   = isset($parsed_url['scheme']) ? $parsed_url['scheme'] . '://' : '';
18
+		$host     = isset($parsed_url['host']) ? $parsed_url['host'] : '';
19
+		$port     = isset($parsed_url['port']) ? ':' . $parsed_url['port'] : '';
20
+		$user     = isset($parsed_url['user']) ? $parsed_url['user'] : '';
21
+		$pass     = isset($parsed_url['pass']) ? ':' . $parsed_url['pass'] : '';
22
+		$pass     = ($user || $pass) ? "$pass@" : '';
23
+		$path     = isset($parsed_url['path']) ? $parsed_url['path'] : '';
24
+		$query    = isset($parsed_url['query']) ? '?' . $parsed_url['query'] : '';
25
+		$fragment = isset($parsed_url['fragment']) ? '#' . $parsed_url['fragment'] : '';
26 26
 
27 27
 		return "$scheme$user$pass$host$port$path$query$fragment";
28 28
 	}
29 29
 }
30 30
 
31
-if ( ! function_exists( 'wp_get_additional_image_sizes' ) ) {
31
+if ( ! function_exists('wp_get_additional_image_sizes')) {
32 32
 	/**
33 33
 	 * Retrieve additional image sizes.
34 34
 	 *
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 	 */
41 41
 	function wp_get_additional_image_sizes() {
42 42
 		global $_wp_additional_image_sizes;
43
-		if ( ! $_wp_additional_image_sizes ) {
43
+		if ( ! $_wp_additional_image_sizes) {
44 44
 			$_wp_additional_image_sizes = [];
45 45
 		}
46 46
 
Please login to merge, or discard this patch.
includes/options-page.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@  discard block
 block discarded – undo
18 18
 
19 19
 
20 20
 	public function __construct() {
21
-		$this->options = get_option( 'imgix_settings', [] );
22
-		add_action( 'admin_init', [ $this, 'imgix_register_settings' ] );
23
-		add_action( 'admin_menu', [ $this, 'imgix_add_options_link' ] );
21
+		$this->options = get_option('imgix_settings', []);
22
+		add_action('admin_init', [$this, 'imgix_register_settings']);
23
+		add_action('admin_menu', [$this, 'imgix_add_options_link']);
24 24
 	}
25 25
 
26 26
 	/**
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 * @return Imgix_Options_page
30 30
 	 */
31 31
 	public static function instance() {
32
-		if ( ! isset( self::$instance ) ) {
32
+		if ( ! isset(self::$instance)) {
33 33
 			self::$instance = new self;
34 34
 		}
35 35
 
@@ -44,62 +44,62 @@  discard block
 block discarded – undo
44 44
 		<div class="wrap">
45 45
 
46 46
 			<h1>
47
-				<img src="<?php echo plugins_url( 'assets/images/imgix-logo.png', __DIR__ ); ?>" alt="imgix Logo">
47
+				<img src="<?php echo plugins_url('assets/images/imgix-logo.png', __DIR__); ?>" alt="imgix Logo">
48 48
 			</h1>
49 49
 
50 50
 			<p><strong>Need help getting started?</strong> It's easy! Check out our
51 51
 				<a href="https://github.com/imgix-wordpress/imgix-wordpress#getting-started" target="_blank">instructions.</a>
52 52
 			</p>
53 53
 
54
-			<form method="post" action="<?php echo admin_url( 'options.php' ); ?>">
55
-				<?php settings_fields( 'imgix_settings_group' ); ?>
54
+			<form method="post" action="<?php echo admin_url('options.php'); ?>">
55
+				<?php settings_fields('imgix_settings_group'); ?>
56 56
 				<table class="form-table">
57 57
 					<tbody>
58 58
 						<tr>
59 59
 							<th>
60
-								<label class="description" for="imgix_settings[cdn_link]"><?php esc_html_e( 'imgix Source', 'imgix' ); ?>
60
+								<label class="description" for="imgix_settings[cdn_link]"><?php esc_html_e('imgix Source', 'imgix'); ?>
61 61
 							</th>
62 62
 							<td>
63
-								<input id="imgix_settings[cdn_link]" type="url" name="imgix_settings[cdn_link]" placeholder="https://yourcompany.imgix.net" value="<?php echo $this->get_option( 'cdn_link' ); ?>" class="regular-text code"/>
63
+								<input id="imgix_settings[cdn_link]" type="url" name="imgix_settings[cdn_link]" placeholder="https://yourcompany.imgix.net" value="<?php echo $this->get_option('cdn_link'); ?>" class="regular-text code"/>
64 64
 							</td>
65 65
 						</tr>
66 66
 						<tr>
67 67
 							<th>
68
-								<label class="description" for="imgix_settings[auto_format]"><?php esc_html_e( 'Auto Format Images', 'imgix' ); ?></label>
68
+								<label class="description" for="imgix_settings[auto_format]"><?php esc_html_e('Auto Format Images', 'imgix'); ?></label>
69 69
 							</th>
70 70
 							<td>
71
-								<input id="imgix_settings[auto_format]" type="checkbox" name="imgix_settings[auto_format]" value="1" <?php checked( $this->get_option( 'auto_format' ) ) ?> />
71
+								<input id="imgix_settings[auto_format]" type="checkbox" name="imgix_settings[auto_format]" value="1" <?php checked($this->get_option('auto_format')) ?> />
72 72
 							</td>
73 73
 						</tr>
74 74
 						<tr>
75 75
 							<th>
76
-								<label class="description" for="imgix_settings[auto_enhance]"><?php esc_html_e( 'Auto Enhance Images', 'imgix' ); ?></label>
76
+								<label class="description" for="imgix_settings[auto_enhance]"><?php esc_html_e('Auto Enhance Images', 'imgix'); ?></label>
77 77
 							</th>
78 78
 							<td>
79
-								<input id="imgix_settings[auto_enhance]" type="checkbox" name="imgix_settings[auto_enhance]" value="1" <?php checked( $this->get_option( 'auto_enhance' ) ) ?> />
79
+								<input id="imgix_settings[auto_enhance]" type="checkbox" name="imgix_settings[auto_enhance]" value="1" <?php checked($this->get_option('auto_enhance')) ?> />
80 80
 							</td>
81 81
 						</tr>
82 82
 						<tr>
83 83
 							<th>
84
-								<label class="description" for="imgix_settings[auto_compress]"><?php esc_html_e( 'Auto Compress Images', 'imgix' ); ?></label>
84
+								<label class="description" for="imgix_settings[auto_compress]"><?php esc_html_e('Auto Compress Images', 'imgix'); ?></label>
85 85
 							</th>
86 86
 							<td>
87
-								<input id="imgix_settings[auto_compress]" type="checkbox" name="imgix_settings[auto_compress]" value="1" <?php checked( $this->get_option( 'auto_compress' ) ) ?> />
87
+								<input id="imgix_settings[auto_compress]" type="checkbox" name="imgix_settings[auto_compress]" value="1" <?php checked($this->get_option('auto_compress')) ?> />
88 88
 							</td>
89 89
 						</tr>
90 90
 						<tr>
91 91
 							<th>
92
-								<label class="description" for="imgix_settings[add_dpi2_srcset]"><?php esc_html_e( 'Automatically add retina images using srcset', 'imgix' ); ?></label>
92
+								<label class="description" for="imgix_settings[add_dpi2_srcset]"><?php esc_html_e('Automatically add retina images using srcset', 'imgix'); ?></label>
93 93
 							</th>
94 94
 							<td>
95
-								<input id="imgix_settings[add_dpi2_srcset]" type="checkbox" name="imgix_settings[add_dpi2_srcset]" value="1" <?php checked( $this->get_option( 'add_dpi2_srcset' ) ) ?> />
95
+								<input id="imgix_settings[add_dpi2_srcset]" type="checkbox" name="imgix_settings[add_dpi2_srcset]" value="1" <?php checked($this->get_option('add_dpi2_srcset')) ?> />
96 96
 							</td>
97 97
 						</tr>
98 98
 					</tbody>
99 99
 				</table>
100 100
 
101 101
 				<p class="submit">
102
-					<input type="submit" class="button-primary" value="<?php esc_html_e( 'Save Options', 'imgix' ); ?>"/>
102
+					<input type="submit" class="button-primary" value="<?php esc_html_e('Save Options', 'imgix'); ?>"/>
103 103
 				</p>
104 104
 			</form>
105 105
 
@@ -116,14 +116,14 @@  discard block
 block discarded – undo
116 116
 	 *  Adds link to options page in Admin > Settings menu.
117 117
 	 */
118 118
 	public function imgix_add_options_link() {
119
-		add_options_page( 'imgix', 'imgix', 'manage_options', 'imgix-options', [ $this, 'imgix_options_page' ] );
119
+		add_options_page('imgix', 'imgix', 'manage_options', 'imgix-options', [$this, 'imgix_options_page']);
120 120
 	}
121 121
 
122 122
 	/**
123 123
 	 *  Creates our settings in the options table.
124 124
 	 */
125 125
 	public function imgix_register_settings() {
126
-		register_setting( 'imgix_settings_group', 'imgix_settings' );
126
+		register_setting('imgix_settings_group', 'imgix_settings');
127 127
 	}
128 128
 
129 129
 	/**
@@ -133,8 +133,8 @@  discard block
 block discarded – undo
133 133
 	 *
134 134
 	 * @return mixed
135 135
 	 */
136
-	protected function get_option( $key ) {
137
-		return isset( $this->options[ $key ] ) ? $this->options[ $key ] : '';
136
+	protected function get_option($key) {
137
+		return isset($this->options[$key]) ? $this->options[$key] : '';
138 138
 	}
139 139
 }
140 140
 
Please login to merge, or discard this patch.
includes/class-images-via-imgix.php 1 patch
Spacing   +85 added lines, -85 removed lines patch added patch discarded remove patch
@@ -27,20 +27,20 @@  discard block
 block discarded – undo
27 27
 	 * ImagesViaImgix constructor.
28 28
 	 */
29 29
 	public function __construct() {
30
-		$this->options = get_option( 'imgix_settings', [] );
30
+		$this->options = get_option('imgix_settings', []);
31 31
 
32
-		add_filter( 'wp_get_attachment_url', [ $this, 'replace_image_url' ] );
33
-		add_filter( 'imgix/add-image-url', [ $this, 'replace_image_url' ] );
32
+		add_filter('wp_get_attachment_url', [$this, 'replace_image_url']);
33
+		add_filter('imgix/add-image-url', [$this, 'replace_image_url']);
34 34
 
35
-		add_filter( 'image_downsize', [ $this, 'image_downsize' ], 10, 3 );
35
+		add_filter('image_downsize', [$this, 'image_downsize'], 10, 3);
36 36
 
37
-		add_filter( 'wp_calculate_image_srcset', [ $this, 'calculate_image_srcset' ], 10, 5 );
37
+		add_filter('wp_calculate_image_srcset', [$this, 'calculate_image_srcset'], 10, 5);
38 38
 
39
-		add_filter( 'the_content', [ $this, 'replace_images_in_content' ] );
40
-		add_action( 'wp_head', [ $this, 'prefetch_cdn' ], 1 );
39
+		add_filter('the_content', [$this, 'replace_images_in_content']);
40
+		add_action('wp_head', [$this, 'prefetch_cdn'], 1);
41 41
 
42
-		add_action( 'after_setup_theme', [ $this, 'buffer_start_for_retina' ] );
43
-		add_action( 'shutdown', [ $this, 'buffer_end_for_retina' ] );
42
+		add_action('after_setup_theme', [$this, 'buffer_start_for_retina']);
43
+		add_action('shutdown', [$this, 'buffer_end_for_retina']);
44 44
 	}
45 45
 
46 46
 	/**
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	 * @return Images_Via_Imgix
50 50
 	 */
51 51
 	public static function instance() {
52
-		if ( ! isset( self::$instance ) ) {
52
+		if ( ! isset(self::$instance)) {
53 53
 			self::$instance = new self;
54 54
 		}
55 55
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	 *
63 63
 	 * @param array $options
64 64
 	 */
65
-	public function set_options( $options ) {
65
+	public function set_options($options) {
66 66
 		$this->options = $options;
67 67
 	}
68 68
 
@@ -75,13 +75,13 @@  discard block
 block discarded – undo
75 75
 	 *
76 76
 	 * @return string Content with retina-enriched image tags.
77 77
 	 */
78
-	public function add_retina( $content ) {
78
+	public function add_retina($content) {
79 79
 		$pattern = '/<img((?![^>]+srcset )([^>]*)';
80 80
 		$pattern .= 'src=[\'"]([^\'"]*imgix.net[^\'"]*\?[^\'"]*w=[^\'"]*)[\'"]([^>]*)*?)>/i';
81 81
 		$repl    = '<img$2src="$3" srcset="${3}, ${3}&amp;dpr=2 2x, ${3}&amp;dpr=3 3x,"$4>';
82
-		$content = preg_replace( $pattern, $repl, $content );
82
+		$content = preg_replace($pattern, $repl, $content);
83 83
 
84
-		return preg_replace( $pattern, $repl, $content );
84
+		return preg_replace($pattern, $repl, $content);
85 85
 	}
86 86
 
87 87
 	/**
@@ -91,22 +91,22 @@  discard block
 block discarded – undo
91 91
 	 *
92 92
 	 * @return string
93 93
 	 */
94
-	public function replace_image_url( $url ) {
95
-		if ( ! empty ( $this->options['cdn_link'] ) ) {
96
-			$parsed_url = parse_url( $url );
97
-
98
-			if ( isset( $parsed_url['host'], $parsed_url['path'] ) && $parsed_url['host'] === parse_url( home_url( '/' ), PHP_URL_HOST ) && preg_match( '/\.(jpg|jpeg|gif|png)$/', $parsed_url['path'] ) ) {
99
-				$cdn = parse_url( $this->options['cdn_link'] );
100
-				foreach ( [ 'scheme', 'host', 'port' ] as $url_part ) {
101
-					if ( isset( $cdn[ $url_part ] ) ) {
102
-						$parsed_url[ $url_part ] = $cdn[ $url_part ];
94
+	public function replace_image_url($url) {
95
+		if ( ! empty ($this->options['cdn_link'])) {
96
+			$parsed_url = parse_url($url);
97
+
98
+			if (isset($parsed_url['host'], $parsed_url['path']) && $parsed_url['host'] === parse_url(home_url('/'), PHP_URL_HOST) && preg_match('/\.(jpg|jpeg|gif|png)$/', $parsed_url['path'])) {
99
+				$cdn = parse_url($this->options['cdn_link']);
100
+				foreach (['scheme', 'host', 'port'] as $url_part) {
101
+					if (isset($cdn[$url_part])) {
102
+						$parsed_url[$url_part] = $cdn[$url_part];
103 103
 					} else {
104
-						unset( $parsed_url[ $url_part ] );
104
+						unset($parsed_url[$url_part]);
105 105
 					}
106 106
 				}
107
-				$url = http_build_url( $parsed_url );
107
+				$url = http_build_url($parsed_url);
108 108
 
109
-				$url = add_query_arg( $this->get_global_params(), $url );
109
+				$url = add_query_arg($this->get_global_params(), $url);
110 110
 			}
111 111
 		}
112 112
 
@@ -122,35 +122,35 @@  discard block
 block discarded – undo
122 122
 	 *
123 123
 	 * @return false|array
124 124
 	 */
125
-	public function image_downsize( $return, $attachment_id, $size ) {
126
-		if ( ! empty ( $this->options['cdn_link'] ) ) {
127
-			$img_url = wp_get_attachment_url( $attachment_id );
125
+	public function image_downsize($return, $attachment_id, $size) {
126
+		if ( ! empty ($this->options['cdn_link'])) {
127
+			$img_url = wp_get_attachment_url($attachment_id);
128 128
 
129 129
 			$params = [];
130
-			if ( is_array( $size ) ) {
131
-				$params['w'] = $width = isset( $size[0] ) ? $size[0] : 0;
132
-				$params['h'] = $height = isset( $size[1] ) ? $size[1] : 0;
130
+			if (is_array($size)) {
131
+				$params['w'] = $width = isset($size[0]) ? $size[0] : 0;
132
+				$params['h'] = $height = isset($size[1]) ? $size[1] : 0;
133 133
 			} else {
134 134
 				$available_sizes = $this->get_all_defined_sizes();
135
-				if ( isset( $available_sizes[ $size ] ) ) {
136
-					$size        = $available_sizes[ $size ];
135
+				if (isset($available_sizes[$size])) {
136
+					$size        = $available_sizes[$size];
137 137
 					$params['w'] = $width = $size['width'];
138 138
 					$params['h'] = $height = $size['height'];
139 139
 				}
140 140
 			}
141 141
 
142
-			$params = array_filter( $params );
142
+			$params = array_filter($params);
143 143
 
144
-			$img_url = add_query_arg( $params, $img_url );
144
+			$img_url = add_query_arg($params, $img_url);
145 145
 
146
-			if ( ! isset( $width ) || ! isset( $height ) ) {
146
+			if ( ! isset($width) || ! isset($height)) {
147 147
 				// any other type: use the real image
148
-				$meta   = wp_get_attachment_metadata( $attachment_id );
149
-				$width  = isset( $width ) ? $width : $meta['width'];
150
-				$height = isset( $height ) ? $height : $meta['height'];
148
+				$meta   = wp_get_attachment_metadata($attachment_id);
149
+				$width  = isset($width) ? $width : $meta['width'];
150
+				$height = isset($height) ? $height : $meta['height'];
151 151
 			}
152 152
 
153
-			$return = [ $img_url, $width, $height, true ];
153
+			$return = [$img_url, $width, $height, true];
154 154
 		}
155 155
 
156 156
 		return $return;
@@ -167,15 +167,15 @@  discard block
 block discarded – undo
167 167
 	 *
168 168
 	 * @return array
169 169
 	 */
170
-	public function calculate_image_srcset( $sources, $size_array, $image_src, $image_meta, $attachment_id ) {
171
-		foreach ( $sources as $i => $image_size ) {
172
-			if ( $image_size['descriptor'] === 'w' ) {
173
-				if ( $attachment_id ) {
174
-					$image_src = wp_get_attachment_url( $attachment_id );
170
+	public function calculate_image_srcset($sources, $size_array, $image_src, $image_meta, $attachment_id) {
171
+		foreach ($sources as $i => $image_size) {
172
+			if ($image_size['descriptor'] === 'w') {
173
+				if ($attachment_id) {
174
+					$image_src = wp_get_attachment_url($attachment_id);
175 175
 				}
176 176
 
177
-				$image_src            = remove_query_arg( 'h', $image_src );
178
-				$sources[ $i ]['url'] = add_query_arg( 'w', $image_size['value'], $image_src );
177
+				$image_src            = remove_query_arg('h', $image_src);
178
+				$sources[$i]['url'] = add_query_arg('w', $image_size['value'], $image_src);
179 179
 			}
180 180
 		}
181 181
 
@@ -189,28 +189,28 @@  discard block
 block discarded – undo
189 189
 	 *
190 190
 	 * @return string
191 191
 	 */
192
-	public function replace_images_in_content( $content ) {
193
-		if ( ! empty ( $this->options['cdn_link'] ) ) {
194
-			if ( preg_match_all( '/<img\s[^>]*src=([\"\']??)([^\" >]*?)\1[^>]*>/iU', $content, $matches ) ) {
195
-				foreach ( $matches[2] as $image_src ) {
196
-					$content = str_replace( $image_src, apply_filters( 'wp_get_attachment_url', $image_src ), $content );
192
+	public function replace_images_in_content($content) {
193
+		if ( ! empty ($this->options['cdn_link'])) {
194
+			if (preg_match_all('/<img\s[^>]*src=([\"\']??)([^\" >]*?)\1[^>]*>/iU', $content, $matches)) {
195
+				foreach ($matches[2] as $image_src) {
196
+					$content = str_replace($image_src, apply_filters('wp_get_attachment_url', $image_src), $content);
197 197
 				}
198 198
 			}
199 199
 
200
-			if ( preg_match_all( '/<img\s[^>]*srcset=([\"\']??)([^\">]*?)\1[^>]*\/?>/iU', $content, $matches ) ) {
200
+			if (preg_match_all('/<img\s[^>]*srcset=([\"\']??)([^\">]*?)\1[^>]*\/?>/iU', $content, $matches)) {
201 201
 
202
-				foreach ( $matches[2] as $image_srcset ) {
203
-					$new_image_srcset = preg_replace_callback( '/(\S+)(\s\d+\w)/', function ( $srcset_matches ) {
204
-						return apply_filters( 'wp_get_attachment_url', $srcset_matches[1] ) . $srcset_matches[2];
205
-					}, $image_srcset );
202
+				foreach ($matches[2] as $image_srcset) {
203
+					$new_image_srcset = preg_replace_callback('/(\S+)(\s\d+\w)/', function($srcset_matches) {
204
+						return apply_filters('wp_get_attachment_url', $srcset_matches[1]) . $srcset_matches[2];
205
+					}, $image_srcset);
206 206
 
207
-					$content = str_replace( $image_srcset, $new_image_srcset, $content );
207
+					$content = str_replace($image_srcset, $new_image_srcset, $content);
208 208
 				}
209 209
 			}
210 210
 
211
-			if ( preg_match_all( '/<a\s[^>]*href=([\"\']??)([^\" >]*?)\1[^>]*>(.*)<\/a>/iU', $content, $matches ) ) {
212
-				foreach ( $matches[0] as $link ) {
213
-					$content = str_replace( $link[2], apply_filters( 'wp_get_attachment_url', $link[2] ), $content );
211
+			if (preg_match_all('/<a\s[^>]*href=([\"\']??)([^\" >]*?)\1[^>]*>(.*)<\/a>/iU', $content, $matches)) {
212
+				foreach ($matches[0] as $link) {
213
+					$content = str_replace($link[2], apply_filters('wp_get_attachment_url', $link[2]), $content);
214 214
 				}
215 215
 			}
216 216
 		}
@@ -222,12 +222,12 @@  discard block
 block discarded – undo
222 222
 	 * Add tag to dns prefetch cdn host
223 223
 	 */
224 224
 	public function prefetch_cdn() {
225
-		if ( ! empty ( $this->options['cdn_link'] ) ) {
226
-			$host = parse_url( $this->options['cdn_link'], PHP_URL_HOST );
225
+		if ( ! empty ($this->options['cdn_link'])) {
226
+			$host = parse_url($this->options['cdn_link'], PHP_URL_HOST);
227 227
 
228 228
 			printf(
229 229
 				'<link rel="dns-prefetch" href="%s"/>',
230
-				esc_attr( '//' . $host )
230
+				esc_attr('//' . $host)
231 231
 			);
232 232
 		}
233 233
 	}
@@ -236,9 +236,9 @@  discard block
 block discarded – undo
236 236
 	 * Start output buffer if auto retina is enabled
237 237
 	 */
238 238
 	public function buffer_start_for_retina() {
239
-		if ( ! empty ( $this->options['add_dpi2_srcset'] ) ) {
239
+		if ( ! empty ($this->options['add_dpi2_srcset'])) {
240 240
 			$this->buffer_started = true;
241
-			ob_start( [ $this, 'add_retina' ] );
241
+			ob_start([$this, 'add_retina']);
242 242
 		}
243 243
 	}
244 244
 
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
 	 * Stop output buffer if it was enabled by the plugin
247 247
 	 */
248 248
 	public function buffer_end_for_retina() {
249
-		if ( $this->buffer_started === true ) {
249
+		if ($this->buffer_started === true) {
250 250
 			ob_end_flush();
251 251
 		}
252 252
 	}
@@ -262,20 +262,20 @@  discard block
 block discarded – undo
262 262
 
263 263
 		// For now, only "auto" is supported.
264 264
 		$auto = [];
265
-		if ( ! empty ( $this->options['auto_format'] ) ) {
266
-			array_push( $auto, 'format' );
265
+		if ( ! empty ($this->options['auto_format'])) {
266
+			array_push($auto, 'format');
267 267
 		}
268 268
 
269
-		if ( ! empty ( $this->options['auto_enhance'] ) ) {
270
-			array_push( $auto, 'enhance' );
269
+		if ( ! empty ($this->options['auto_enhance'])) {
270
+			array_push($auto, 'enhance');
271 271
 		}
272 272
 
273
-		if ( ! empty ( $this->options['auto_compress'] ) ) {
274
-			array_push( $auto, 'compress' );
273
+		if ( ! empty ($this->options['auto_compress'])) {
274
+			array_push($auto, 'compress');
275 275
 		}
276 276
 
277
-		if ( ! empty( $auto ) ) {
278
-			$params['auto'] = implode( '%2C', $auto );
277
+		if ( ! empty($auto)) {
278
+			$params['auto'] = implode('%2C', $auto);
279 279
 		}
280 280
 
281 281
 		return $params;
@@ -291,18 +291,18 @@  discard block
 block discarded – undo
291 291
 		$theme_image_sizes = wp_get_additional_image_sizes();
292 292
 
293 293
 		$sizes = [];
294
-		foreach ( get_intermediate_image_sizes() as $s ) {
295
-			$sizes[ $s ] = [ 'width' => '', 'height' => '', 'crop' => false ];
296
-			if ( isset( $theme_image_sizes[ $s ] ) ) {
294
+		foreach (get_intermediate_image_sizes() as $s) {
295
+			$sizes[$s] = ['width' => '', 'height' => '', 'crop' => false];
296
+			if (isset($theme_image_sizes[$s])) {
297 297
 				// For theme-added sizes
298
-				$sizes[ $s ]['width']  = intval( $theme_image_sizes[ $s ]['width'] );
299
-				$sizes[ $s ]['height'] = intval( $theme_image_sizes[ $s ]['height'] );
300
-				$sizes[ $s ]['crop']   = $theme_image_sizes[ $s ]['crop'];
298
+				$sizes[$s]['width']  = intval($theme_image_sizes[$s]['width']);
299
+				$sizes[$s]['height'] = intval($theme_image_sizes[$s]['height']);
300
+				$sizes[$s]['crop']   = $theme_image_sizes[$s]['crop'];
301 301
 			} else {
302 302
 				// For default sizes set in options
303
-				$sizes[ $s ]['width']  = get_option( "{$s}_size_w" );
304
-				$sizes[ $s ]['height'] = get_option( "{$s}_size_h" );
305
-				$sizes[ $s ]['crop']   = get_option( "{$s}_crop" );
303
+				$sizes[$s]['width']  = get_option("{$s}_size_w");
304
+				$sizes[$s]['height'] = get_option("{$s}_size_h");
305
+				$sizes[$s]['crop']   = get_option("{$s}_crop");
306 306
 			}
307 307
 		}
308 308
 
Please login to merge, or discard this patch.