classes/class-importer.php 1 location
|
@@ 192-194 (lines=3) @@
|
189 |
|
$height = $this->options['height']; |
190 |
|
} |
191 |
|
$cropping = 'raw'; |
192 |
|
if (isset($this->options['cropping']) && '' !== $this->options['cropping']) { |
193 |
|
$cropping = $this->options['cropping']; |
194 |
|
} |
195 |
|
$this->image_scaling_url = 'https://wetu.com/ImageHandler/' . $cropping . $width . 'x' . $height . '/'; |
196 |
|
} |
197 |
|
} |
classes/class-accommodation.php 1 location
|
@@ 121-123 (lines=3) @@
|
118 |
|
$defaults['height'] = $this->options['height']; |
119 |
|
} |
120 |
|
|
121 |
|
if(isset($this->options['cropping']) && '' !== $this->options['cropping']){ |
122 |
|
$defaults['cropping'] = $this->options['cropping']; |
123 |
|
} |
124 |
|
} |
125 |
|
$args = wp_parse_args($args,$defaults); |
126 |
|
|