@@ -343,36 +343,36 @@ |
||
343 | 343 | /** |
344 | 344 | * @param string $string |
345 | 345 | */ |
346 | - protected function AnalyseImgUrlString($string) |
|
347 | - { |
|
348 | - $start = '[IMG-REPLACE]'; |
|
349 | - $end = '[/IMG-REPLACE]'; |
|
350 | - |
|
351 | - if($string!=str_replace($start,'',$string) && $string==str_replace($start.$end,'',$string)) { |
|
352 | - $string = ' '.$string; |
|
353 | - $ini = strpos($string, $start); |
|
354 | - if ($ini == 0) { |
|
355 | - $url = ''; |
|
356 | - $rest = $string; |
|
357 | - } else { |
|
358 | - $ini += strlen($start); |
|
359 | - $len = ((strpos($string, $end, $ini)) - $ini); |
|
360 | - $url = substr($string, $ini, $len); |
|
361 | - |
|
362 | - $ini = strpos($string, $start); |
|
363 | - $len = strpos($string, $end, $ini + strlen($start)) + strlen($end); |
|
364 | - $rest = substr($string, 0, $ini).substr($string, $len); |
|
365 | - } |
|
366 | - } else { |
|
367 | - $url = ''; |
|
368 | - $rest = str_replace(array($start,$end),'',$string); |
|
369 | - } |
|
370 | - |
|
371 | - return [ |
|
372 | - 'url' => trim($url), |
|
373 | - 'rest' => trim($rest), |
|
374 | - ]; |
|
375 | - } |
|
346 | + protected function AnalyseImgUrlString($string) |
|
347 | + { |
|
348 | + $start = '[IMG-REPLACE]'; |
|
349 | + $end = '[/IMG-REPLACE]'; |
|
350 | + |
|
351 | + if($string!=str_replace($start,'',$string) && $string==str_replace($start.$end,'',$string)) { |
|
352 | + $string = ' '.$string; |
|
353 | + $ini = strpos($string, $start); |
|
354 | + if ($ini == 0) { |
|
355 | + $url = ''; |
|
356 | + $rest = $string; |
|
357 | + } else { |
|
358 | + $ini += strlen($start); |
|
359 | + $len = ((strpos($string, $end, $ini)) - $ini); |
|
360 | + $url = substr($string, $ini, $len); |
|
361 | + |
|
362 | + $ini = strpos($string, $start); |
|
363 | + $len = strpos($string, $end, $ini + strlen($start)) + strlen($end); |
|
364 | + $rest = substr($string, 0, $ini).substr($string, $len); |
|
365 | + } |
|
366 | + } else { |
|
367 | + $url = ''; |
|
368 | + $rest = str_replace(array($start,$end),'',$string); |
|
369 | + } |
|
370 | + |
|
371 | + return [ |
|
372 | + 'url' => trim($url), |
|
373 | + 'rest' => trim($rest), |
|
374 | + ]; |
|
375 | + } |
|
376 | 376 | |
377 | 377 | public function SaveAsPdf() |
378 | 378 | { |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | { |
168 | 168 | $ct_file = $this->ReadOpenXmlFile('[Content_Types].xml', 'object'); |
169 | 169 | |
170 | - if (! ($ct_file instanceof \Traversable)) { |
|
170 | + if (!($ct_file instanceof \Traversable)) { |
|
171 | 171 | throw new Exception('Cannot traverse through [Content_Types].xml.'); |
172 | 172 | } |
173 | 173 | |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | |
184 | 184 | //if content type for jpg has not been set, add it to xml |
185 | 185 | // and save xml to file and add it to the archive |
186 | - if (! $ct_already_set) { |
|
186 | + if (!$ct_already_set) { |
|
187 | 187 | $sxe = $ct_file->addChild('Default'); |
188 | 188 | $sxe->addAttribute('Extension', $imageCt); |
189 | 189 | $sxe->addAttribute('ContentType', 'image/'.$imageCt); |
@@ -348,7 +348,7 @@ discard block |
||
348 | 348 | $start = '[IMG-REPLACE]'; |
349 | 349 | $end = '[/IMG-REPLACE]'; |
350 | 350 | |
351 | - if($string!=str_replace($start,'',$string) && $string==str_replace($start.$end,'',$string)) { |
|
351 | + if ($string != str_replace($start, '', $string) && $string == str_replace($start.$end, '', $string)) { |
|
352 | 352 | $string = ' '.$string; |
353 | 353 | $ini = strpos($string, $start); |
354 | 354 | if ($ini == 0) { |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | } |
366 | 366 | } else { |
367 | 367 | $url = ''; |
368 | - $rest = str_replace(array($start,$end),'',$string); |
|
368 | + $rest = str_replace(array($start, $end), '', $string); |
|
369 | 369 | } |
370 | 370 | |
371 | 371 | return [ |
@@ -385,7 +385,7 @@ discard block |
||
385 | 385 | //wait until process is ready |
386 | 386 | } |
387 | 387 | // executes after the command finishes |
388 | - if (! $process->isSuccessful()) { |
|
388 | + if (!$process->isSuccessful()) { |
|
389 | 389 | throw new \Symfony\Component\Process\Exception\ProcessFailedException($process); |
390 | 390 | } else { |
391 | 391 | $path_parts = pathinfo($this->StoragePath($this->local_path.$this->template_file_name)); |
@@ -55,14 +55,14 @@ |
||
55 | 55 | $w = (($imgWidth / $imgHeight) * $h); |
56 | 56 | |
57 | 57 | //if height based resize has too large width, do width based resize |
58 | - if($h > $availableHeight) { |
|
58 | + if ($h > $availableHeight) { |
|
59 | 59 | $w = (($imgWidth / $imgHeight) * $availableHeight); |
60 | 60 | $h = (($imgHeight / $imgWidth) * $w); |
61 | 61 | } |
62 | 62 | |
63 | 63 | $h = null; |
64 | 64 | |
65 | - $img_rework->resize($w, $h, function ($constraint) { |
|
65 | + $img_rework->resize($w, $h, function($constraint) { |
|
66 | 66 | $constraint->aspectRatio(); |
67 | 67 | $constraint->upsize(); |
68 | 68 | }); |