Completed
Branch develop (040f4e)
by
unknown
29:09
created
htdocs/includes/odtphp/odf.php 3 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -499,7 +499,7 @@
 block discarded – undo
499 499
 		$height *= self::PIXEL_TO_CM;
500 500
 		$xml = <<<IMG
501 501
 			<draw:frame draw:style-name="fr1" draw:name="$filename" text:anchor-type="aschar" svg:width="{$width}cm" svg:height="{$height}cm" draw:z-index="3"><draw:image xlink:href="Pictures/$file" xlink:type="simple" xlink:show="embed" xlink:actuate="onLoad"/></draw:frame>
502
-IMG;
502
+img;
503 503
 		$this->images[$value] = $file;
504 504
 		$this->setVars($key, $xml, false);
505 505
 		return $this;
Please login to merge, or discard this patch.
Braces   +31 added lines, -11 removed lines patch added patch discarded remove patch
@@ -78,7 +78,10 @@  discard block
 block discarded – undo
78 78
 		}
79 79
 
80 80
 		$md5uniqid = md5(uniqid());
81
-		if ($this->config['PATH_TO_TMP']) $this->tmpdir = preg_replace('|[\/]$|', '', $this->config['PATH_TO_TMP']);	// Remove last \ or /
81
+		if ($this->config['PATH_TO_TMP']) {
82
+			$this->tmpdir = preg_replace('|[\/]$|', '', $this->config['PATH_TO_TMP']);
83
+		}
84
+		// Remove last \ or /
82 85
 		$this->tmpdir .= ($this->tmpdir?'/':'').$md5uniqid;
83 86
 		$this->tmpfile = $this->tmpdir.'/'.$md5uniqid.'.odt';	// We keep .odt extension to allow OpenOffice usage during debug.
84 87
 
@@ -94,7 +97,9 @@  discard block
 block discarded – undo
94 97
 
95 98
 		// Load zip proxy
96 99
 		$zipHandler = $this->config['ZIP_PROXY'];
97
-		if (!defined('PCLZIP_TEMPORARY_DIR')) define('PCLZIP_TEMPORARY_DIR', $this->tmpdir);
100
+		if (!defined('PCLZIP_TEMPORARY_DIR')) {
101
+			define('PCLZIP_TEMPORARY_DIR', $this->tmpdir);
102
+		}
98 103
 		include_once 'zip/'.$zipHandler.'.php';
99 104
 		if (! class_exists($this->config['ZIP_PROXY'])) {
100 105
 			throw new OdfException($this->config['ZIP_PROXY'] . ' class not found - check your php settings');
@@ -236,8 +241,12 @@  discard block
 block discarded – undo
236 241
 	 */
237 242
 	private function _replaceHtmlWithOdtTag($tags, &$customStyles, &$fontDeclarations, $encode = false, $charset = '')
238 243
 	{
239
-		if ($customStyles == null) $customStyles = array();
240
-		if ($fontDeclarations == null) $fontDeclarations = array();
244
+		if ($customStyles == null) {
245
+			$customStyles = array();
246
+		}
247
+		if ($fontDeclarations == null) {
248
+			$fontDeclarations = array();
249
+		}
241 250
 
242 251
 		$odtResult = '';
243 252
 
@@ -556,10 +565,15 @@  discard block
 block discarded – undo
556 565
 	 */
557 566
 	private function _parse($type = 'content')
558 567
 	{
559
-		if ($type == 'content') $xml = &$this->contentXml;
560
-		elseif ($type == 'styles') $xml = &$this->stylesXml;
561
-		elseif ($type == 'meta') $xml = &$this->metaXml;
562
-		else return;
568
+		if ($type == 'content') {
569
+			$xml = &$this->contentXml;
570
+		} elseif ($type == 'styles') {
571
+			$xml = &$this->stylesXml;
572
+		} elseif ($type == 'meta') {
573
+			$xml = &$this->metaXml;
574
+		} else {
575
+			return;
576
+		}
563 577
 
564 578
 		// Search all tags found into condition to complete $this->vars, so we will proceed all tests even if not defined
565 579
 		$reg='@\[!--\sIF\s([\[\]{}a-zA-Z0-9\.\,_]+)\s--\]@smU';
@@ -600,7 +614,9 @@  discard block
 block discarded – undo
600 614
 				$reg = '@\[!--\sIF\s' . preg_quote($key, '@') . '\s--\](.*)(\[!--\sELSE\s' . preg_quote($key, '@') . '\s--\](.*))?\[!--\sENDIF\s' . preg_quote($key, '@') . '\s--\]@smU'; // U modifier = all quantifiers are non-greedy
601 615
 				preg_match_all($reg, $xml, $matches, PREG_SET_ORDER);
602 616
 				foreach ($matches as $match) { // For each match, if there is an ELSE clause, we replace the whole block by the value in the ELSE clause
603
-					if (!empty($match[3])) $xml = str_replace($match[0], $match[3], $xml);
617
+					if (!empty($match[3])) {
618
+						$xml = str_replace($match[0], $match[3], $xml);
619
+					}
604 620
 				}
605 621
 				// Cleanup the other conditional blocks (all the others where there were no ELSE clause, we can just remove them altogether)
606 622
 				$xml = preg_replace($reg, '', $xml);
@@ -754,7 +770,9 @@  discard block
 block discarded – undo
754 770
 	 */
755 771
 	public function setMetaData()
756 772
 	{
757
-		if (empty($this->creator)) $this->creator='';
773
+		if (empty($this->creator)) {
774
+			$this->creator='';
775
+		}
758 776
 
759 777
 		$this->metaXml = preg_replace('/<dc:date>.*<\/dc:date>/', '<dc:date>'.gmdate("Y-m-d\TH:i:s").'</dc:date>', $this->metaXml);
760 778
 		$this->metaXml = preg_replace('/<dc:creator>.*<\/dc:creator>/', '<dc:creator>'.htmlspecialchars($this->creator).'</dc:creator>', $this->metaXml);
@@ -822,7 +840,9 @@  discard block
 block discarded – undo
822 840
 	{
823 841
 		global $conf;
824 842
 
825
-		if ( $name == "" ) $name = "temp".md5(uniqid());
843
+		if ( $name == "" ) {
844
+			$name = "temp".md5(uniqid());
845
+		}
826 846
 
827 847
 		dol_syslog(get_class($this).'::exportAsAttachedPDF $name='.$name, LOG_DEBUG);
828 848
 		$this->saveToDisk($name);
Please login to merge, or discard this patch.
Spacing   +78 added lines, -78 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 class Odf
32 32
 {
33 33
 	protected $config = array(
34
-		'ZIP_PROXY' => 'PclZipProxy',	// PclZipProxy, PhpZipProxy
34
+		'ZIP_PROXY' => 'PclZipProxy', // PclZipProxy, PhpZipProxy
35 35
 		'DELIMITER_LEFT' => '{',
36 36
 		'DELIMITER_RIGHT' => '}',
37 37
 		'PATH_TO_TMP' => '/tmp'
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 	{
107 107
 		clearstatcache();
108 108
 
109
-		if (! is_array($config)) {
109
+		if (!is_array($config)) {
110 110
 			throw new OdfException('Configuration data must be provided as array');
111 111
 		}
112 112
 		foreach ($config as $configKey => $configValue) {
@@ -116,12 +116,12 @@  discard block
 block discarded – undo
116 116
 		}
117 117
 
118 118
 		$md5uniqid = md5(uniqid());
119
-		if ($this->config['PATH_TO_TMP']) $this->tmpdir = preg_replace('|[\/]$|', '', $this->config['PATH_TO_TMP']);	// Remove last \ or /
120
-		$this->tmpdir .= ($this->tmpdir?'/':'').$md5uniqid;
121
-		$this->tmpfile = $this->tmpdir.'/'.$md5uniqid.'.odt';	// We keep .odt extension to allow OpenOffice usage during debug.
119
+		if ($this->config['PATH_TO_TMP']) $this->tmpdir = preg_replace('|[\/]$|', '', $this->config['PATH_TO_TMP']); // Remove last \ or /
120
+		$this->tmpdir .= ($this->tmpdir ? '/' : '').$md5uniqid;
121
+		$this->tmpfile = $this->tmpdir.'/'.$md5uniqid.'.odt'; // We keep .odt extension to allow OpenOffice usage during debug.
122 122
 
123 123
 		// A working directory is required for some zip proxy like PclZipProxy
124
-		if (in_array($this->config['ZIP_PROXY'], array('PclZipProxy')) && ! is_dir($this->config['PATH_TO_TMP'])) {
124
+		if (in_array($this->config['ZIP_PROXY'], array('PclZipProxy')) && !is_dir($this->config['PATH_TO_TMP'])) {
125 125
 			throw new OdfException('Temporary directory '.$this->config['PATH_TO_TMP'].' must exists');
126 126
 		}
127 127
 
@@ -134,8 +134,8 @@  discard block
 block discarded – undo
134 134
 		$zipHandler = $this->config['ZIP_PROXY'];
135 135
 		if (!defined('PCLZIP_TEMPORARY_DIR')) define('PCLZIP_TEMPORARY_DIR', $this->tmpdir);
136 136
 		include_once 'zip/'.$zipHandler.'.php';
137
-		if (! class_exists($this->config['ZIP_PROXY'])) {
138
-			throw new OdfException($this->config['ZIP_PROXY'] . ' class not found - check your php settings');
137
+		if (!class_exists($this->config['ZIP_PROXY'])) {
138
+			throw new OdfException($this->config['ZIP_PROXY'].' class not found - check your php settings');
139 139
 		}
140 140
 		$this->file = new $zipHandler($this->tmpdir);
141 141
 
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
 	 */
183 183
 	public function setVars($key, $value, $encode = true, $charset = 'ISO-8859')
184 184
 	{
185
-		$tag = $this->config['DELIMITER_LEFT'] . $key . $this->config['DELIMITER_RIGHT'];
185
+		$tag = $this->config['DELIMITER_LEFT'].$key.$this->config['DELIMITER_RIGHT'];
186 186
 
187 187
 		// TODO Warning string may be:
188 188
 		// <text:span text:style-name="T13">{</text:span><text:span text:style-name="T12">aaa</text:span><text:span text:style-name="T13">}</text:span>
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 
218 218
 		// Check if the value includes html tags
219 219
 		if ($this->_hasHtmlTag($value) === true) {
220
-			$value = strip_tags($value, '<br><strong><b><i><em><u><s><sub><sup><span>');	// remove html tags except the one into the list in second parameter
220
+			$value = strip_tags($value, '<br><strong><b><i><em><u><s><sub><sup><span>'); // remove html tags except the one into the list in second parameter
221 221
 
222 222
 			// Default styles for strong/b, i/em, u, s, sub & sup
223 223
 			$automaticStyles = array(
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 			$convertedValue = $this->_replaceHtmlWithOdtTag($this->_getDataFromHtml($value), $customStyles, $fontDeclarations, $encode, $charset);
236 236
 
237 237
 			foreach ($customStyles as $key => $val) {
238
-				array_push($automaticStyles, '<style:style style:name="customStyle' . $key . '" style:family="text">' . $val . '</style:style>');
238
+				array_push($automaticStyles, '<style:style style:name="customStyle'.$key.'" style:family="text">'.$val.'</style:style>');
239 239
 			}
240 240
 
241 241
 			// Join the styles and add them to the content xml
@@ -245,16 +245,16 @@  discard block
 block discarded – undo
245 245
 					$styles .= $style;
246 246
 				}
247 247
 			}
248
-			$this->contentXml = str_replace('</office:automatic-styles>', $styles . '</office:automatic-styles>', $this->contentXml);
248
+			$this->contentXml = str_replace('</office:automatic-styles>', $styles.'</office:automatic-styles>', $this->contentXml);
249 249
 
250 250
 			// Join the font declarations and add them to the content xml
251 251
 			$fonts = '';
252 252
 			foreach ($fontDeclarations as $font) {
253
-				if (strpos($this->contentXml, 'style:name="' . $font . '"') === false) {
254
-					$fonts .= '<style:font-face style:name="' . $font . '" svg:font-family="\'' . $font . '\'" />';
253
+				if (strpos($this->contentXml, 'style:name="'.$font.'"') === false) {
254
+					$fonts .= '<style:font-face style:name="'.$font.'" svg:font-family="\''.$font.'\'" />';
255 255
 				}
256 256
 			}
257
-			$this->contentXml = str_replace('</office:font-face-decls>', $fonts . '</office:font-face-decls>', $this->contentXml);
257
+			$this->contentXml = str_replace('</office:font-face-decls>', $fonts.'</office:font-face-decls>', $this->contentXml);
258 258
 		} else {
259 259
 			$convertedValue = $this->encode_chars($convertedValue, $encode, $charset);
260 260
 			$convertedValue = preg_replace('/(\r\n|\r|\n)/i', "<text:line-break/>", $convertedValue);
@@ -291,23 +291,23 @@  discard block
 block discarded – undo
291 291
 						break;
292 292
 					case 'strong':
293 293
 					case 'b':
294
-						$odtResult .= '<text:span text:style-name="boldText">' . ($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)) . '</text:span>';
294
+						$odtResult .= '<text:span text:style-name="boldText">'.($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)).'</text:span>';
295 295
 						break;
296 296
 					case 'i':
297 297
 					case 'em':
298
-						$odtResult .= '<text:span text:style-name="italicText">' . ($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)) . '</text:span>';
298
+						$odtResult .= '<text:span text:style-name="italicText">'.($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)).'</text:span>';
299 299
 						break;
300 300
 					case 'u':
301
-						$odtResult .= '<text:span text:style-name="underlineText">' . ($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)) . '</text:span>';
301
+						$odtResult .= '<text:span text:style-name="underlineText">'.($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)).'</text:span>';
302 302
 						break;
303 303
 					case 's':
304
-						$odtResult .= '<text:span text:style-name="strikethroughText">' . ($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)) . '</text:span>';
304
+						$odtResult .= '<text:span text:style-name="strikethroughText">'.($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)).'</text:span>';
305 305
 						break;
306 306
 					case 'sub':
307
-						$odtResult .= '<text:span text:style-name="subText">' . ($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)) . '</text:span>';
307
+						$odtResult .= '<text:span text:style-name="subText">'.($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)).'</text:span>';
308 308
 						break;
309 309
 					case 'sup':
310
-						$odtResult .= '<text:span text:style-name="supText">' . ($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)) . '</text:span>';
310
+						$odtResult .= '<text:span text:style-name="supText">'.($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)).'</text:span>';
311 311
 						break;
312 312
 					case 'span':
313 313
 						if (isset($tag['attributes']['style'])) {
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
 										if (!in_array($fontName, $fontDeclarations)) {
323 323
 											array_push($fontDeclarations, $fontName);
324 324
 										}
325
-										$odtStyles .= '<style:text-properties style:font-name="' . $fontName . '" />';
325
+										$odtStyles .= '<style:text-properties style:font-name="'.$fontName.'" />';
326 326
 										break;
327 327
 									case 'font-size':
328 328
 										if (preg_match('/([0-9]+)\s?(px|pt)/', $styleValue, $matches)) {
@@ -330,21 +330,21 @@  discard block
 block discarded – undo
330 330
 											if ($matches[2] == 'px') {
331 331
 												$fontSize = round($fontSize * 0.75);
332 332
 											}
333
-											$odtStyles .= '<style:text-properties fo:font-size="' . $fontSize . 'pt" style:font-size-asian="' . $fontSize . 'pt" style:font-size-complex="' . $fontSize . 'pt" />';
333
+											$odtStyles .= '<style:text-properties fo:font-size="'.$fontSize.'pt" style:font-size-asian="'.$fontSize.'pt" style:font-size-complex="'.$fontSize.'pt" />';
334 334
 										}
335 335
 										break;
336 336
 									case 'color':
337 337
 										if (preg_match('/#[0-9A-Fa-f]{3}(?:[0-9A-Fa-f]{3})?/', $styleValue)) {
338
-											$odtStyles .= '<style:text-properties fo:color="' . $styleValue . '" />';
338
+											$odtStyles .= '<style:text-properties fo:color="'.$styleValue.'" />';
339 339
 										}
340 340
 										break;
341 341
 								}
342 342
 							}
343 343
 							if (strlen($odtStyles) > 0) {
344 344
 								// Generate a unique id for the style (using microtime and random because some CPUs are really fast...)
345
-								$key = str_replace('.', '', (string) microtime(true)) . uniqid(mt_rand());
345
+								$key = str_replace('.', '', (string) microtime(true)).uniqid(mt_rand());
346 346
 								$customStyles[$key] = $odtStyles;
347
-								$odtResult .= '<text:span text:style-name="customStyle' . $key . '">' . ($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)) . '</text:span>';
347
+								$odtResult .= '<text:span text:style-name="customStyle'.$key.'">'.($tag['children'] != null ? $this->_replaceHtmlWithOdtTag($tag['children'], $customStyles, $fontDeclarations, $encode) : $this->encode_chars($tag['innerText'], $encode, $charset)).'</text:span>';
348 348
 							}
349 349
 						}
350 350
 						break;
@@ -481,24 +481,24 @@  discard block
 block discarded – undo
481 481
 	public function htmlToUTFAndPreOdf($value)
482 482
 	{
483 483
 		// We decode into utf8, entities
484
-		$value=dol_html_entity_decode($value, ENT_QUOTES|ENT_HTML5);
484
+		$value = dol_html_entity_decode($value, ENT_QUOTES | ENT_HTML5);
485 485
 
486 486
 		// We convert html tags
487
-		$ishtml=dol_textishtml($value);
487
+		$ishtml = dol_textishtml($value);
488 488
 		if ($ishtml) {
489 489
 			// If string is "MYPODUCT - Desc <strong>bold</strong> with &eacute; accent<br />\n<br />\nUn texto en espa&ntilde;ol ?"
490 490
 			// Result after clean must be "MYPODUCT - Desc bold with é accent\n\nUn texto en espa&ntilde;ol ?"
491 491
 
492 492
 			// We want to ignore \n and we want all <br> to be \n
493
-			$value=preg_replace('/(\r\n|\r|\n)/i', '', $value);
494
-			$value=preg_replace('/<br>/i', "\n", $value);
495
-			$value=preg_replace('/<br\s+[^<>\/]*>/i', "\n", $value);
496
-			$value=preg_replace('/<br\s+[^<>\/]*\/>/i', "\n", $value);
493
+			$value = preg_replace('/(\r\n|\r|\n)/i', '', $value);
494
+			$value = preg_replace('/<br>/i', "\n", $value);
495
+			$value = preg_replace('/<br\s+[^<>\/]*>/i', "\n", $value);
496
+			$value = preg_replace('/<br\s+[^<>\/]*\/>/i', "\n", $value);
497 497
 
498 498
 			//$value=preg_replace('/<strong>/','__lt__text:p text:style-name=__quot__bold__quot____gt__',$value);
499 499
 			//$value=preg_replace('/<\/strong>/','__lt__/text:p__gt__',$value);
500 500
 
501
-			$value=dol_string_nohtmltag($value, 0);
501
+			$value = dol_string_nohtmltag($value, 0);
502 502
 		}
503 503
 
504 504
 		return $value;
@@ -574,10 +574,10 @@  discard block
 block discarded – undo
574 574
 				$balise = str_replace('row.', '', $matches2[1]);
575 575
 				// Move segment tags around the row
576 576
 				$replace = array(
577
-					'[!-- BEGIN ' . $matches2[1] . ' --]'	=> '',
578
-					'[!-- END ' . $matches2[1] . ' --]'		=> '',
579
-					'<table:table-row'							=> '[!-- BEGIN ' . $balise . ' --]<table:table-row',
580
-					'</table:table-row>'						=> '</table:table-row>[!-- END ' . $balise . ' --]'
577
+					'[!-- BEGIN '.$matches2[1].' --]'	=> '',
578
+					'[!-- END '.$matches2[1].' --]'		=> '',
579
+					'<table:table-row'							=> '[!-- BEGIN '.$balise.' --]<table:table-row',
580
+					'</table:table-row>'						=> '</table:table-row>[!-- END '.$balise.' --]'
581 581
 				);
582 582
 				$replacedXML = str_replace(array_keys($replace), array_values($replace), $matches[0][$i]);
583 583
 				$this->contentXml = str_replace($matches[0][$i], $replacedXML, $this->contentXml);
@@ -600,13 +600,13 @@  discard block
 block discarded – undo
600 600
 		else return;
601 601
 
602 602
 		// Search all tags found into condition to complete $this->vars, so we will proceed all tests even if not defined
603
-		$reg='@\[!--\sIF\s([\[\]{}a-zA-Z0-9\.\,_]+)\s--\]@smU';
603
+		$reg = '@\[!--\sIF\s([\[\]{}a-zA-Z0-9\.\,_]+)\s--\]@smU';
604 604
 		$matches = array();
605 605
 		preg_match_all($reg, $xml, $matches, PREG_SET_ORDER);
606 606
 
607 607
 		foreach ($matches as $match) {   // For each match, if there is no entry into this->vars, we add it
608
-			if (! empty($match[1]) && ! isset($this->vars[$match[1]])) {
609
-				$this->vars[$match[1]] = '';     // Not defined, so we set it to '', we just need entry into this->vars for next loop
608
+			if (!empty($match[1]) && !isset($this->vars[$match[1]])) {
609
+				$this->vars[$match[1]] = ''; // Not defined, so we set it to '', we just need entry into this->vars for next loop
610 610
 			}
611 611
 		}
612 612
 
@@ -620,7 +620,7 @@  discard block
 block discarded – undo
620 620
 				// Remove the IF tag
621 621
 				$xml = str_replace('[!-- IF '.$key.' --]', '', $xml);
622 622
 				// Remove everything between the ELSE tag (if it exists) and the ENDIF tag
623
-				$reg = '@(\[!--\sELSE\s' . preg_quote($key, '@') . '\s--\](.*))?\[!--\sENDIF\s' . preg_quote($key, '@') . '\s--\]@smU'; // U modifier = all quantifiers are non-greedy
623
+				$reg = '@(\[!--\sELSE\s'.preg_quote($key, '@').'\s--\](.*))?\[!--\sENDIF\s'.preg_quote($key, '@').'\s--\]@smU'; // U modifier = all quantifiers are non-greedy
624 624
 				$xml = preg_replace($reg, '', $xml);
625 625
 				/*if ($sav != $xml)
626 626
 				 {
@@ -633,7 +633,7 @@  discard block
 block discarded – undo
633 633
 				//dol_syslog("Var ".$key." is not defined, we remove the IF, ELSE and ENDIF ");
634 634
 				//$sav=$xml;
635 635
 				// Find all conditional blocks for this variable: from IF to ELSE and to ENDIF
636
-				$reg = '@\[!--\sIF\s' . preg_quote($key, '@') . '\s--\](.*)(\[!--\sELSE\s' . preg_quote($key, '@') . '\s--\](.*))?\[!--\sENDIF\s' . preg_quote($key, '@') . '\s--\]@smU'; // U modifier = all quantifiers are non-greedy
636
+				$reg = '@\[!--\sIF\s'.preg_quote($key, '@').'\s--\](.*)(\[!--\sELSE\s'.preg_quote($key, '@').'\s--\](.*))?\[!--\sENDIF\s'.preg_quote($key, '@').'\s--\]@smU'; // U modifier = all quantifiers are non-greedy
637 637
 				preg_match_all($reg, $xml, $matches, PREG_SET_ORDER);
638 638
 				foreach ($matches as $match) { // For each match, if there is an ELSE clause, we replace the whole block by the value in the ELSE clause
639 639
 					if (!empty($match[3])) $xml = str_replace($match[0], $match[3], $xml);
@@ -661,12 +661,12 @@  discard block
 block discarded – undo
661 661
 	 */
662 662
 	public function mergeSegment(Segment $segment)
663 663
 	{
664
-		if (! array_key_exists($segment->getName(), $this->segments)) {
665
-			throw new OdfException($segment->getName() . 'cannot be parsed, has it been set yet ?');
664
+		if (!array_key_exists($segment->getName(), $this->segments)) {
665
+			throw new OdfException($segment->getName().'cannot be parsed, has it been set yet ?');
666 666
 		}
667 667
 		$string = $segment->getName();
668 668
 		// $reg = '@<text:p[^>]*>\[!--\sBEGIN\s' . $string . '\s--\](.*)\[!--.+END\s' . $string . '\s--\]<\/text:p>@smU';
669
-		$reg = '@\[!--\sBEGIN\s' . $string . '\s--\](.*)\[!--.+END\s' . $string . '\s--\]@smU';
669
+		$reg = '@\[!--\sBEGIN\s'.$string.'\s--\](.*)\[!--.+END\s'.$string.'\s--\]@smU';
670 670
 		$this->contentXml = preg_replace($reg, $segment->getXmlParsed(), $this->contentXml);
671 671
 		return $this;
672 672
 	}
@@ -678,7 +678,7 @@  discard block
 block discarded – undo
678 678
 	 */
679 679
 	public function printVars()
680 680
 	{
681
-		return print_r('<pre>' . print_r($this->vars, true) . '</pre>', true);
681
+		return print_r('<pre>'.print_r($this->vars, true).'</pre>', true);
682 682
 	}
683 683
 
684 684
 	/**
@@ -699,7 +699,7 @@  discard block
 block discarded – undo
699 699
 	 */
700 700
 	public function printDeclaredSegments()
701 701
 	{
702
-		return '<pre>' . print_r(implode(' ', array_keys($this->segments)), true) . '</pre>';
702
+		return '<pre>'.print_r(implode(' ', array_keys($this->segments)), true).'</pre>';
703 703
 	}
704 704
 
705 705
 	/**
@@ -735,7 +735,7 @@  discard block
 block discarded – undo
735 735
 	{
736 736
 		if ($file !== null && is_string($file)) {
737 737
 			if (file_exists($file) && !(is_file($file) && is_writable($file))) {
738
-				throw new OdfException('Permission denied : can\'t create ' . $file);
738
+				throw new OdfException('Permission denied : can\'t create '.$file);
739 739
 			}
740 740
 			$this->_save();
741 741
 			copy($this->tmpfile, $file);
@@ -752,7 +752,7 @@  discard block
 block discarded – undo
752 752
 	 */
753 753
 	private function _save()
754 754
 	{
755
-		$res=$this->file->open($this->tmpfile);    // tmpfile is odt template
755
+		$res = $this->file->open($this->tmpfile); // tmpfile is odt template
756 756
 		$this->_parse('content');
757 757
 		$this->_parse('styles');
758 758
 		$this->_parse('meta');
@@ -760,23 +760,23 @@  discard block
 block discarded – undo
760 760
 		$this->setMetaData();
761 761
 		//print $this->metaXml;exit;
762 762
 
763
-		if (! $this->file->addFromString('content.xml', $this->contentXml)) {
763
+		if (!$this->file->addFromString('content.xml', $this->contentXml)) {
764 764
 			throw new OdfException('Error during file export addFromString content');
765 765
 		}
766
-		if (! $this->file->addFromString('meta.xml', $this->metaXml)) {
766
+		if (!$this->file->addFromString('meta.xml', $this->metaXml)) {
767 767
 			throw new OdfException('Error during file export addFromString meta');
768 768
 		}
769
-		if (! $this->file->addFromString('styles.xml', $this->stylesXml)) {
769
+		if (!$this->file->addFromString('styles.xml', $this->stylesXml)) {
770 770
 			throw new OdfException('Error during file export addFromString styles');
771 771
 		}
772 772
 
773 773
 		foreach ($this->images as $imageKey => $imageValue) {
774 774
 			// Add the image inside the ODT document
775
-			$this->file->addFile($imageKey, 'Pictures/' . $imageValue);
775
+			$this->file->addFile($imageKey, 'Pictures/'.$imageValue);
776 776
 			// Add the image to the Manifest (which maintains a list of images, necessary to avoid "Corrupt ODT file. Repair?" when opening the file with LibreOffice)
777 777
 			$this->addImageToManifest($imageValue);
778 778
 		}
779
-		if (! $this->file->addFromString('META-INF/manifest.xml', $this->manifestXml)) {
779
+		if (!$this->file->addFromString('META-INF/manifest.xml', $this->manifestXml)) {
780 780
 			throw new OdfException('Error during file export: manifest.xml');
781 781
 		}
782 782
 		$this->file->close();
@@ -790,7 +790,7 @@  discard block
 block discarded – undo
790 790
 	 */
791 791
 	public function setMetaData()
792 792
 	{
793
-		if (empty($this->creator)) $this->creator='';
793
+		if (empty($this->creator)) $this->creator = '';
794 794
 
795 795
 		$this->metaXml = preg_replace('/<dc:date>.*<\/dc:date>/', '<dc:date>'.gmdate("Y-m-d\TH:i:s").'</dc:date>', $this->metaXml);
796 796
 		$this->metaXml = preg_replace('/<dc:creator>.*<\/dc:creator>/', '<dc:creator>'.htmlspecialchars($this->creator).'</dc:creator>', $this->metaXml);
@@ -836,8 +836,8 @@  discard block
 block discarded – undo
836 836
 			throw new OdfException("headers already sent ($filename at $linenum)");
837 837
 		}
838 838
 
839
-		if ( $name == "" ) {
840
-			$name = md5(uniqid()) . ".odt";
839
+		if ($name == "") {
840
+			$name = md5(uniqid()).".odt";
841 841
 		}
842 842
 
843 843
 		header('Content-type: application/vnd.oasis.opendocument.text');
@@ -858,18 +858,18 @@  discard block
 block discarded – undo
858 858
 	{
859 859
 		global $conf;
860 860
 
861
-		if ( $name == "" ) $name = "temp".md5(uniqid());
861
+		if ($name == "") $name = "temp".md5(uniqid());
862 862
 
863 863
 		dol_syslog(get_class($this).'::exportAsAttachedPDF $name='.$name, LOG_DEBUG);
864 864
 		$this->saveToDisk($name);
865 865
 
866
-		$execmethod=(empty($conf->global->MAIN_EXEC_USE_POPEN)?1:2);	// 1 or 2
866
+		$execmethod = (empty($conf->global->MAIN_EXEC_USE_POPEN) ? 1 : 2); // 1 or 2
867 867
 		// Method 1 sometimes hang the server.
868 868
 
869 869
 
870 870
 		// Export to PDF using LibreOffice
871 871
 		if (getDolGlobalString('MAIN_ODT_AS_PDF') == 'libreoffice') {
872
-			dol_mkdir($conf->user->dir_temp);	// We must be sure the directory exists and is writable
872
+			dol_mkdir($conf->user->dir_temp); // We must be sure the directory exists and is writable
873 873
 
874 874
 			// We delete and recreate a subdir because the soffice may have change pemrissions on it
875 875
 			$countdeleted = 0;
@@ -880,7 +880,7 @@  discard block
 block discarded – undo
880 880
 			// using windows libreoffice that must be in path
881 881
 			// using linux/mac libreoffice that must be in path
882 882
 			// Note PHP Config "fastcgi.impersonate=0" must set to 0 - Default is 1
883
-			$command ='soffice --headless -env:UserInstallation=file:'.(getDolGlobalString('MAIN_ODT_ADD_SLASH_FOR_WINDOWS') ? '///' : '').'\''.$conf->user->dir_temp.'/odtaspdf\' --convert-to pdf --outdir '. escapeshellarg(dirname($name)). " ".escapeshellarg($name);
883
+			$command = 'soffice --headless -env:UserInstallation=file:'.(getDolGlobalString('MAIN_ODT_ADD_SLASH_FOR_WINDOWS') ? '///' : '').'\''.$conf->user->dir_temp.'/odtaspdf\' --convert-to pdf --outdir '.escapeshellarg(dirname($name))." ".escapeshellarg($name);
884 884
 		} elseif (preg_match('/unoconv/', getDolGlobalString('MAIN_ODT_AS_PDF'))) {
885 885
 			// If issue with unoconv, see https://github.com/dagwieers/unoconv/issues/87
886 886
 
@@ -910,13 +910,13 @@  discard block
 block discarded – undo
910 910
 			//$command = '/usr/bin/unoconv -vvv '.escapeshellcmd($name);
911 911
 		} else {
912 912
 			// deprecated old method using odt2pdf.sh (native, jodconverter, ...)
913
-			$tmpname=preg_replace('/\.odt/i', '', $name);
913
+			$tmpname = preg_replace('/\.odt/i', '', $name);
914 914
 
915 915
 			if (getDolGlobalString('MAIN_DOL_SCRIPTS_ROOT')) {
916
-				$command = getDolGlobalString('MAIN_DOL_SCRIPTS_ROOT').'/scripts/odt2pdf/odt2pdf.sh '.escapeshellcmd($tmpname).' '.(is_numeric(getDolGlobalString('MAIN_ODT_AS_PDF'))?'jodconverter':getDolGlobalString('MAIN_ODT_AS_PDF'));
916
+				$command = getDolGlobalString('MAIN_DOL_SCRIPTS_ROOT').'/scripts/odt2pdf/odt2pdf.sh '.escapeshellcmd($tmpname).' '.(is_numeric(getDolGlobalString('MAIN_ODT_AS_PDF')) ? 'jodconverter' : getDolGlobalString('MAIN_ODT_AS_PDF'));
917 917
 			} else {
918 918
 				dol_syslog(get_class($this).'::exportAsAttachedPDF is used but the constant MAIN_DOL_SCRIPTS_ROOT with path to script directory was not defined.', LOG_WARNING);
919
-				$command = '../../scripts/odt2pdf/odt2pdf.sh '.escapeshellcmd($tmpname).' '.(is_numeric(getDolGlobalString('MAIN_ODT_AS_PDF'))?'jodconverter':getDolGlobalString('MAIN_ODT_AS_PDF'));
919
+				$command = '../../scripts/odt2pdf/odt2pdf.sh '.escapeshellcmd($tmpname).' '.(is_numeric(getDolGlobalString('MAIN_ODT_AS_PDF')) ? 'jodconverter' : getDolGlobalString('MAIN_ODT_AS_PDF'));
920 920
 			}
921 921
 		}
922 922
 
@@ -929,14 +929,14 @@  discard block
 block discarded – undo
929 929
 		// $result = $utils->executeCLI($command, $outputfile);  and replace test on $execmethod.
930 930
 		// $retval will be $result['result']
931 931
 		// $errorstring will be $result['output']
932
-		$retval=0; $output_arr=array();
932
+		$retval = 0; $output_arr = array();
933 933
 		if ($execmethod == 1) {
934 934
 			exec($command, $output_arr, $retval);
935 935
 		}
936 936
 		if ($execmethod == 2) {
937 937
 			$outputfile = DOL_DATA_ROOT.'/odt2pdf.log';
938 938
 
939
-			$ok=0;
939
+			$ok = 0;
940 940
 			$handle = fopen($outputfile, 'w');
941 941
 			if ($handle) {
942 942
 				dol_syslog(get_class($this)."Run command ".$command, LOG_DEBUG);
@@ -945,7 +945,7 @@  discard block
 block discarded – undo
945 945
 				while (!feof($handlein)) {
946 946
 					$read = fgets($handlein);
947 947
 					fwrite($handle, $read);
948
-					$output_arr[]=$read;
948
+					$output_arr[] = $read;
949 949
 				}
950 950
 				pclose($handlein);
951 951
 				fclose($handle);
@@ -955,7 +955,7 @@  discard block
 block discarded – undo
955 955
 
956 956
 		if ($retval == 0) {
957 957
 			dol_syslog(get_class($this).'::exportAsAttachedPDF $ret_val='.$retval, LOG_DEBUG);
958
-			$filename=''; $linenum=0;
958
+			$filename = ''; $linenum = 0;
959 959
 
960 960
 			if (php_sapi_name() != 'cli') {	// If we are in a web context (not into CLI context)
961 961
 				if (headers_sent($filename, $linenum)) {
@@ -963,7 +963,7 @@  discard block
 block discarded – undo
963 963
 				}
964 964
 
965 965
 				if (getDolGlobalString('MAIN_DISABLE_PDF_AUTOUPDATE')) {
966
-					$name=preg_replace('/\.od(x|t)/i', '', $name);
966
+					$name = preg_replace('/\.od(x|t)/i', '', $name);
967 967
 					header('Content-type: application/pdf');
968 968
 					header('Content-Disposition: attachment; filename="'.basename($name).'.pdf"');
969 969
 					readfile($name.".pdf");
@@ -978,13 +978,13 @@  discard block
 block discarded – undo
978 978
 			dol_syslog(get_class($this).'::exportAsAttachedPDF $output_arr='.var_export($output_arr, true), LOG_DEBUG);
979 979
 
980 980
 			if ($retval == 126) {
981
-				throw new OdfException('Permission execute convert script : ' . $command);
981
+				throw new OdfException('Permission execute convert script : '.$command);
982 982
 			} else {
983
-				$errorstring='';
983
+				$errorstring = '';
984 984
 				foreach ($output_arr as $line) {
985
-					$errorstring.= $line."<br>";
985
+					$errorstring .= $line."<br>";
986 986
 				}
987
-				throw new OdfException('ODT to PDF convert fail (option MAIN_ODT_AS_PDF is '.$conf->global->MAIN_ODT_AS_PDF.', command was '.$command.', retval='.$retval.') : ' . $errorstring);
987
+				throw new OdfException('ODT to PDF convert fail (option MAIN_ODT_AS_PDF is '.$conf->global->MAIN_ODT_AS_PDF.', command was '.$command.', retval='.$retval.') : '.$errorstring);
988 988
 			}
989 989
 		}
990 990
 	}
@@ -1038,11 +1038,11 @@  discard block
 block discarded – undo
1038 1038
 		if ($handle = opendir($dir)) {
1039 1039
 			while (($file = readdir($handle)) !== false) {
1040 1040
 				if ($file != '.' && $file != '..') {
1041
-					if (is_dir($dir . '/' . $file)) {
1042
-						$this->_rrmdir($dir . '/' . $file);
1043
-						rmdir($dir . '/' . $file);
1041
+					if (is_dir($dir.'/'.$file)) {
1042
+						$this->_rrmdir($dir.'/'.$file);
1043
+						rmdir($dir.'/'.$file);
1044 1044
 					} else {
1045
-						unlink($dir . '/' . $file);
1045
+						unlink($dir.'/'.$file);
1046 1046
 					}
1047 1047
 				}
1048 1048
 			}
@@ -1058,7 +1058,7 @@  discard block
 block discarded – undo
1058 1058
 	 */
1059 1059
 	public function getvalue($valuename)
1060 1060
 	{
1061
-		$searchreg="/\\[".$valuename."\\](.*)\\[\\/".$valuename."\\]/";
1061
+		$searchreg = "/\\[".$valuename."\\](.*)\\[\\/".$valuename."\\]/";
1062 1062
 		$matches = array();
1063 1063
 		preg_match($searchreg, $this->contentXml, $matches);
1064 1064
 		$this->contentXml = preg_replace($searchreg, "", $this->contentXml);
Please login to merge, or discard this patch.
htdocs/includes/odtphp/Segment.php 4 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -260,7 +260,7 @@
 block discarded – undo
260 260
 
261 261
 		$xml = <<<IMG
262 262
 <draw:frame draw:style-name="fr1" draw:name="$filename" text:anchor-type="aschar" svg:width="{$width}cm" svg:height="{$height}cm" draw:z-index="3"><draw:image xlink:href="Pictures/$file" xlink:type="simple" xlink:show="embed" xlink:actuate="onLoad"/></draw:frame>
263
-IMG;
263
+img;
264 264
 		$this->images[$value] = $file;
265 265
 		$this->setVars($key, $xml, false);
266 266
 		return $this;
Please login to merge, or discard this patch.
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -88,21 +88,21 @@  discard block
 block discarded – undo
88 88
 	{
89 89
 		// To provide debug information on line number processed
90 90
 		global $count;
91
-		if (empty($count)) $count=1;
91
+		if (empty($count)) $count = 1;
92 92
 		else $count++;
93 93
 
94
-		if (empty($this->savxml)) $this->savxml = $this->xml;       // Sav content of line at first line merged, so we will reuse original for next steps
94
+		if (empty($this->savxml)) $this->savxml = $this->xml; // Sav content of line at first line merged, so we will reuse original for next steps
95 95
 		$this->xml = $this->savxml;
96
-		$tmpvars = $this->vars;                                     // Store into $tmpvars so we won't modify this->vars when completing data with empty values
96
+		$tmpvars = $this->vars; // Store into $tmpvars so we won't modify this->vars when completing data with empty values
97 97
 
98 98
 		// Search all tags fou into condition to complete $tmpvars, so we will proceed all tests even if not defined
99
-		$reg='@\[!--\sIF\s([{}a-zA-Z0-9\.\,_]+)\s--\]@smU';
99
+		$reg = '@\[!--\sIF\s([{}a-zA-Z0-9\.\,_]+)\s--\]@smU';
100 100
 		$matches = array();
101 101
 		preg_match_all($reg, $this->xml, $matches, PREG_SET_ORDER);
102 102
 		//var_dump($tmpvars);exit;
103 103
 		foreach ($matches as $match) {   // For each match, if there is no entry into this->vars, we add it
104
-			if (! empty($match[1]) && ! isset($tmpvars[$match[1]])) {
105
-				$tmpvars[$match[1]] = '';     // Not defined, so we set it to '', we just need entry into this->vars for next loop
104
+			if (!empty($match[1]) && !isset($tmpvars[$match[1]])) {
105
+				$tmpvars[$match[1]] = ''; // Not defined, so we set it to '', we just need entry into this->vars for next loop
106 106
 			}
107 107
 		}
108 108
 
@@ -114,13 +114,13 @@  discard block
 block discarded – undo
114 114
 				// Remove the IF tag
115 115
 				$this->xml = str_replace('[!-- IF '.$key.' --]', '', $this->xml);
116 116
 				// Remove everything between the ELSE tag (if it exists) and the ENDIF tag
117
-				$reg = '@(\[!--\sELSE\s' . preg_quote($key, '@') . '\s--\](.*))?\[!--\sENDIF\s' . preg_quote($key, '@') . '\s--\]@smU'; // U modifier = all quantifiers are non-greedy
117
+				$reg = '@(\[!--\sELSE\s'.preg_quote($key, '@').'\s--\](.*))?\[!--\sENDIF\s'.preg_quote($key, '@').'\s--\]@smU'; // U modifier = all quantifiers are non-greedy
118 118
 				$this->xml = preg_replace($reg, '', $this->xml);
119 119
 			}
120 120
 			// Else the value is false, then two cases: no ELSE and we're done, or there is at least one place where there is an ELSE clause, then we replace it
121 121
 			else {
122 122
 				// Find all conditional blocks for this variable: from IF to ELSE and to ENDIF
123
-				$reg = '@\[!--\sIF\s' . preg_quote($key, '@') . '\s--\](.*)(\[!--\sELSE\s' . preg_quote($key, '@') . '\s--\](.*))?\[!--\sENDIF\s' . preg_quote($key, '@') . '\s--\]@smU'; // U modifier = all quantifiers are non-greedy
123
+				$reg = '@\[!--\sIF\s'.preg_quote($key, '@').'\s--\](.*)(\[!--\sELSE\s'.preg_quote($key, '@').'\s--\](.*))?\[!--\sENDIF\s'.preg_quote($key, '@').'\s--\]@smU'; // U modifier = all quantifiers are non-greedy
124 124
 				preg_match_all($reg, $this->xml, $matches, PREG_SET_ORDER);
125 125
 				foreach ($matches as $match) { // For each match, if there is an ELSE clause, we replace the whole block by the value in the ELSE clause
126 126
 					if (!empty($match[3])) $this->xml = str_replace($match[0], $match[3], $this->xml);
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 		$this->xmlParsed .= str_replace(array_keys($tmpvars), array_values($tmpvars), $this->xml);
134 134
 		if ($this->hasChildren()) {
135 135
 			foreach ($this->children as $child) {
136
-				$this->xmlParsed = str_replace($child->xml, ($child->xmlParsed=="")?$child->merge():$child->xmlParsed, $this->xmlParsed);
136
+				$this->xmlParsed = str_replace($child->xml, ($child->xmlParsed == "") ? $child->merge() : $child->xmlParsed, $this->xmlParsed);
137 137
 				$child->xmlParsed = '';
138 138
 			}
139 139
 		}
@@ -143,9 +143,9 @@  discard block
 block discarded – undo
143 143
 		$this->xmlParsed = $this->macroReplace($this->xmlParsed);
144 144
 		$this->file->open($this->odf->getTmpfile());
145 145
 		foreach ($this->images as $imageKey => $imageValue) {
146
-			if ($this->file->getFromName('Pictures/' . $imageValue) === false) {
146
+			if ($this->file->getFromName('Pictures/'.$imageValue) === false) {
147 147
 				// Add the image inside the ODT document
148
-				$this->file->addFile($imageKey, 'Pictures/' . $imageValue);
148
+				$this->file->addFile($imageKey, 'Pictures/'.$imageValue);
149 149
 				// Add the image to the Manifest (which maintains a list of images, necessary to avoid "Corrupt ODT file. Repair?" when opening the file with LibreOffice)
150 150
 				$this->odf->addImageToManifest($imageValue);
151 151
 			}
@@ -176,16 +176,16 @@  discard block
 block discarded – undo
176 176
 		$dateinonemontharray = dol_get_next_month($hoy['mon'], $hoy['year']);
177 177
 		$nextMonth = $dateinonemontharray['month'];
178 178
 
179
-		$patterns=array( '/__CURRENTDAY__/u','/__CURENTWEEKDAY__/u',
180
-						 '/__CURRENTMONTH__/u','/__CURRENTMONTHLONG__/u',
181
-						 '/__NEXTMONTH__/u','/__NEXTMONTHLONG__/u',
182
-						 '/__CURRENTYEAR__/u','/__NEXTYEAR__/u' );
183
-		$values=array( $hoy['mday'], $langs->transnoentitiesnoconv($hoy['wday']),
179
+		$patterns = array('/__CURRENTDAY__/u', '/__CURENTWEEKDAY__/u',
180
+						 '/__CURRENTMONTH__/u', '/__CURRENTMONTHLONG__/u',
181
+						 '/__NEXTMONTH__/u', '/__NEXTMONTHLONG__/u',
182
+						 '/__CURRENTYEAR__/u', '/__NEXTYEAR__/u');
183
+		$values = array($hoy['mday'], $langs->transnoentitiesnoconv($hoy['wday']),
184 184
 					   $hoy['mon'], monthArray($langs)[$hoy['mon']],
185 185
 					   $nextMonth, monthArray($langs)[$nextMonth],
186
-					   $hoy['year'], $hoy['year']+1 );
186
+					   $hoy['year'], $hoy['year'] + 1);
187 187
 
188
-		$text=preg_replace($patterns, $values, $text);
188
+		$text = preg_replace($patterns, $values, $text);
189 189
 
190 190
 		return $text;
191 191
 	}
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
 	 */
224 224
 	public function setVars($key, $value, $encode = true, $charset = 'ISO-8859')
225 225
 	{
226
-		$tag = $this->odf->getConfig('DELIMITER_LEFT') . $key . $this->odf->getConfig('DELIMITER_RIGHT');
226
+		$tag = $this->odf->getConfig('DELIMITER_LEFT').$key.$this->odf->getConfig('DELIMITER_RIGHT');
227 227
 
228 228
 		if (strpos($this->xml, $tag) === false) {
229 229
 			//throw new SegmentException("var $key not found in {$this->getName()}");
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
 		if (array_key_exists($prop, $this->children)) {
278 278
 			return $this->children[$prop];
279 279
 		} else {
280
-			throw new SegmentException('child ' . $prop . ' does not exist');
280
+			throw new SegmentException('child '.$prop.' does not exist');
281 281
 		}
282 282
 	}
283 283
 	/**
Please login to merge, or discard this patch.
Braces   +12 added lines, -4 removed lines patch added patch discarded remove patch
@@ -88,10 +88,16 @@  discard block
 block discarded – undo
88 88
 	{
89 89
 		// To provide debug information on line number processed
90 90
 		global $count;
91
-		if (empty($count)) $count=1;
92
-		else $count++;
91
+		if (empty($count)) {
92
+			$count=1;
93
+		} else {
94
+			$count++;
95
+		}
93 96
 
94
-		if (empty($this->savxml)) $this->savxml = $this->xml;       // Sav content of line at first line merged, so we will reuse original for next steps
97
+		if (empty($this->savxml)) {
98
+			$this->savxml = $this->xml;
99
+		}
100
+		// Sav content of line at first line merged, so we will reuse original for next steps
95 101
 		$this->xml = $this->savxml;
96 102
 		$tmpvars = $this->vars;                                     // Store into $tmpvars so we won't modify this->vars when completing data with empty values
97 103
 
@@ -123,7 +129,9 @@  discard block
 block discarded – undo
123 129
 				$reg = '@\[!--\sIF\s' . preg_quote($key, '@') . '\s--\](.*)(\[!--\sELSE\s' . preg_quote($key, '@') . '\s--\](.*))?\[!--\sENDIF\s' . preg_quote($key, '@') . '\s--\]@smU'; // U modifier = all quantifiers are non-greedy
124 130
 				preg_match_all($reg, $this->xml, $matches, PREG_SET_ORDER);
125 131
 				foreach ($matches as $match) { // For each match, if there is an ELSE clause, we replace the whole block by the value in the ELSE clause
126
-					if (!empty($match[3])) $this->xml = str_replace($match[0], $match[3], $this->xml);
132
+					if (!empty($match[3])) {
133
+						$this->xml = str_replace($match[0], $match[3], $this->xml);
134
+					}
127 135
 				}
128 136
 				// Cleanup the other conditional blocks (all the others where there were no ELSE clause, we can just remove them altogether)
129 137
 				$this->xml = preg_replace($reg, '', $this->xml);
Please login to merge, or discard this patch.
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -158,17 +158,17 @@
 block discarded – undo
158 158
 	}
159 159
 
160 160
 	/**
161
-	* Function to replace macros for invoice short and long month, invoice year
162
-	*
163
-	* Substitution occur when the invoice is generated, not considering the invoice date
164
-	* so do not (re)generate in a diferent date than the one that the invoice belongs to
165
-	* Perhaps it would be better to use the invoice issued date but I still do not know
166
-	* how to get it here
167
-	*
168
-	* Miguel Erill 09/04/2017
169
-	*
170
-	* @param	string	$text	String to convert
171
-	*/
161
+	 * Function to replace macros for invoice short and long month, invoice year
162
+	 *
163
+	 * Substitution occur when the invoice is generated, not considering the invoice date
164
+	 * so do not (re)generate in a diferent date than the one that the invoice belongs to
165
+	 * Perhaps it would be better to use the invoice issued date but I still do not know
166
+	 * how to get it here
167
+	 *
168
+	 * Miguel Erill 09/04/2017
169
+	 *
170
+	 * @param	string	$text	String to convert
171
+	 */
172 172
 	public function macroReplace($text)
173 173
 	{
174 174
 		include_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
Please login to merge, or discard this patch.
htdocs/includes/swiftmailer/lib/preferences.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,5 +15,5 @@
 block discarded – undo
15 15
 // If possible, use a disk cache to enable attaching large attachments etc.
16 16
 // You can override the default temporary directory by setting the TMPDIR environment variable.
17 17
 if (@is_writable($tmpDir = sys_get_temp_dir())) {
18
-    $preferences->setTempDir($tmpDir)->setCacheType('disk');
18
+	$preferences->setTempDir($tmpDir)->setCacheType('disk');
19 19
 }
Please login to merge, or discard this patch.
htdocs/includes/swiftmailer/lib/swiftmailer_generate_mimes_config.php 1 patch
Indentation   +171 added lines, -171 removed lines patch added patch discarded remove patch
@@ -6,177 +6,177 @@
 block discarded – undo
6 6
 
7 7
 function generateUpToDateMimeArray()
8 8
 {
9
-    $preamble = "<?php\n\n";
10
-    $preamble .= "/*\n";
11
-    $preamble .= " * This file is part of SwiftMailer.\n";
12
-    $preamble .= " * (c) 2004-2009 Chris Corbyn\n *\n";
13
-    $preamble .= " * For the full copyright and license information, please view the LICENSE\n";
14
-    $preamble .= " * file that was distributed with this source code.\n *\n";
15
-    $preamble .= " * autogenerated using https://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types\n";
16
-    $preamble .= " * and https://raw.github.com/minad/mimemagic/master/script/freedesktop.org.xml\n";
17
-    $preamble .= " */\n\n";
18
-    $preamble .= "/*\n";
19
-    $preamble .= " * List of MIME type automatically detected in Swift Mailer.\n";
20
-    $preamble .= " */\n\n";
21
-    $preamble .= "// You may add or take away what you like (lowercase required)\n\n";
22
-
23
-    // get current mime types files
24
-    $mime_types = @file_get_contents(APACHE_MIME_TYPES_URL);
25
-    $mime_xml = @file_get_contents(FREEDESKTOP_XML_URL);
26
-
27
-    // prepare valid mime types
28
-    $valid_mime_types = [];
29
-
30
-    // split mime type and extensions eg. "video/x-matroska        mkv mk3d mks"
31
-    if (false !== preg_match_all('/^#?([a-z0-9\-\+\/\.]+)[\t]+(.*)$/miu', $mime_types, $matches)) {
32
-        // collection of predefined mimetypes (bugfix for wrong resolved or missing mime types)
33
-        $valid_mime_types_preset = [
34
-            'php' => 'application/x-php',
35
-            'php3' => 'application/x-php',
36
-            'php4' => 'application/x-php',
37
-            'php5' => 'application/x-php',
38
-            'zip' => 'application/zip',
39
-            'gif' => 'image/gif',
40
-            'png' => 'image/png',
41
-            'css' => 'text/css',
42
-            'js' => 'text/javascript',
43
-            'txt' => 'text/plain',
44
-            'aif' => 'audio/x-aiff',
45
-            'aiff' => 'audio/x-aiff',
46
-            'avi' => 'video/avi',
47
-            'bmp' => 'image/bmp',
48
-            'bz2' => 'application/x-bz2',
49
-            'csv' => 'text/csv',
50
-            'dmg' => 'application/x-apple-diskimage',
51
-            'doc' => 'application/msword',
52
-            'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
53
-            'eml' => 'message/rfc822',
54
-            'aps' => 'application/postscript',
55
-            'exe' => 'application/x-ms-dos-executable',
56
-            'flv' => 'video/x-flv',
57
-            'gz' => 'application/x-gzip',
58
-            'hqx' => 'application/stuffit',
59
-            'htm' => 'text/html',
60
-            'html' => 'text/html',
61
-            'jar' => 'application/x-java-archive',
62
-            'jpeg' => 'image/jpeg',
63
-            'jpg' => 'image/jpeg',
64
-            'm3u' => 'audio/x-mpegurl',
65
-            'm4a' => 'audio/mp4',
66
-            'mdb' => 'application/x-msaccess',
67
-            'mid' => 'audio/midi',
68
-            'midi' => 'audio/midi',
69
-            'mov' => 'video/quicktime',
70
-            'mp3' => 'audio/mpeg',
71
-            'mp4' => 'video/mp4',
72
-            'mpeg' => 'video/mpeg',
73
-            'mpg' => 'video/mpeg',
74
-            'odg' => 'vnd.oasis.opendocument.graphics',
75
-            'odp' => 'vnd.oasis.opendocument.presentation',
76
-            'odt' => 'vnd.oasis.opendocument.text',
77
-            'ods' => 'vnd.oasis.opendocument.spreadsheet',
78
-            'ogg' => 'audio/ogg',
79
-            'pdf' => 'application/pdf',
80
-            'ppt' => 'application/vnd.ms-powerpoint',
81
-            'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
82
-            'ps' => 'application/postscript',
83
-            'rar' => 'application/x-rar-compressed',
84
-            'rtf' => 'application/rtf',
85
-            'tar' => 'application/x-tar',
86
-            'sit' => 'application/x-stuffit',
87
-            'svg' => 'image/svg+xml',
88
-            'tif' => 'image/tiff',
89
-            'tiff' => 'image/tiff',
90
-            'ttf' => 'application/x-font-truetype',
91
-            'vcf' => 'text/x-vcard',
92
-            'wav' => 'audio/wav',
93
-            'wma' => 'audio/x-ms-wma',
94
-            'wmv' => 'audio/x-ms-wmv',
95
-            'xls' => 'application/vnd.ms-excel',
96
-            'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
97
-            'xml' => 'application/xml',
98
-        ];
99
-
100
-        // wrap array for generating file
101
-        foreach ($valid_mime_types_preset as $extension => $mime_type) {
102
-            // generate array for mimetype to extension resolver (only first match)
103
-            $valid_mime_types[$extension] = "'{$extension}' => '{$mime_type}'";
104
-        }
105
-
106
-        // all extensions from second match
107
-        foreach ($matches[2] as $i => $extensions) {
108
-            // explode multiple extensions from string
109
-            $extensions = explode(' ', strtolower($extensions ?? ''));
110
-
111
-            // force array for foreach
112
-            if (!\is_array($extensions)) {
113
-                $extensions = [$extensions];
114
-            }
115
-
116
-            foreach ($extensions as $extension) {
117
-                // get mime type
118
-                $mime_type = $matches[1][$i];
119
-
120
-                // check if string length lower than 10
121
-                if (\strlen($extension) < 10) {
122
-                    if (!isset($valid_mime_types[$mime_type])) {
123
-                        // generate array for mimetype to extension resolver (only first match)
124
-                        $valid_mime_types[$extension] = "'{$extension}' => '{$mime_type}'";
125
-                    }
126
-                }
127
-            }
128
-        }
129
-    }
130
-
131
-    $xml = simplexml_load_string($mime_xml);
132
-
133
-    foreach ($xml as $node) {
134
-        // check if there is no pattern
135
-        if (!isset($node->glob['pattern'])) {
136
-            continue;
137
-        }
138
-
139
-        // get all matching extensions from match
140
-        foreach ((array) $node->glob['pattern'] as $extension) {
141
-            // skip none glob extensions
142
-            if (false === strpos($extension ?? '', '.')) {
143
-                continue;
144
-            }
145
-
146
-            // remove get only last part
147
-            $extension = explode('.', strtolower($extension ?? ''));
148
-            $extension = end($extension);
149
-        }
150
-
151
-        if (isset($node->glob['pattern'][0])) {
152
-            // mime type
153
-            $mime_type = strtolower((string) $node['type'] ?? '');
154
-
155
-            // get first extension
156
-            $extension = strtolower(trim($node->glob['ddpattern'][0] ?? '', '*.'));
157
-
158
-            // skip none glob extensions and check if string length between 1 and 10
159
-            if (false !== strpos($extension, '.') || \strlen($extension) < 1 || \strlen($extension) > 9) {
160
-                continue;
161
-            }
162
-
163
-            // check if string length lower than 10
164
-            if (!isset($valid_mime_types[$mime_type])) {
165
-                // generate array for mimetype to extension resolver (only first match)
166
-                $valid_mime_types[$extension] = "'{$extension}' => '{$mime_type}'";
167
-            }
168
-        }
169
-    }
170
-
171
-    // full list of valid extensions only
172
-    $valid_mime_types = array_unique($valid_mime_types);
173
-    ksort($valid_mime_types);
174
-
175
-    // combine mime types and extensions array
176
-    $output = "$preamble\$swift_mime_types = array(\n    ".implode(",\n    ", $valid_mime_types)."\n);";
177
-
178
-    // write mime_types.php config file
179
-    @file_put_contents('./mime_types.php', $output);
9
+	$preamble = "<?php\n\n";
10
+	$preamble .= "/*\n";
11
+	$preamble .= " * This file is part of SwiftMailer.\n";
12
+	$preamble .= " * (c) 2004-2009 Chris Corbyn\n *\n";
13
+	$preamble .= " * For the full copyright and license information, please view the LICENSE\n";
14
+	$preamble .= " * file that was distributed with this source code.\n *\n";
15
+	$preamble .= " * autogenerated using https://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types\n";
16
+	$preamble .= " * and https://raw.github.com/minad/mimemagic/master/script/freedesktop.org.xml\n";
17
+	$preamble .= " */\n\n";
18
+	$preamble .= "/*\n";
19
+	$preamble .= " * List of MIME type automatically detected in Swift Mailer.\n";
20
+	$preamble .= " */\n\n";
21
+	$preamble .= "// You may add or take away what you like (lowercase required)\n\n";
22
+
23
+	// get current mime types files
24
+	$mime_types = @file_get_contents(APACHE_MIME_TYPES_URL);
25
+	$mime_xml = @file_get_contents(FREEDESKTOP_XML_URL);
26
+
27
+	// prepare valid mime types
28
+	$valid_mime_types = [];
29
+
30
+	// split mime type and extensions eg. "video/x-matroska        mkv mk3d mks"
31
+	if (false !== preg_match_all('/^#?([a-z0-9\-\+\/\.]+)[\t]+(.*)$/miu', $mime_types, $matches)) {
32
+		// collection of predefined mimetypes (bugfix for wrong resolved or missing mime types)
33
+		$valid_mime_types_preset = [
34
+			'php' => 'application/x-php',
35
+			'php3' => 'application/x-php',
36
+			'php4' => 'application/x-php',
37
+			'php5' => 'application/x-php',
38
+			'zip' => 'application/zip',
39
+			'gif' => 'image/gif',
40
+			'png' => 'image/png',
41
+			'css' => 'text/css',
42
+			'js' => 'text/javascript',
43
+			'txt' => 'text/plain',
44
+			'aif' => 'audio/x-aiff',
45
+			'aiff' => 'audio/x-aiff',
46
+			'avi' => 'video/avi',
47
+			'bmp' => 'image/bmp',
48
+			'bz2' => 'application/x-bz2',
49
+			'csv' => 'text/csv',
50
+			'dmg' => 'application/x-apple-diskimage',
51
+			'doc' => 'application/msword',
52
+			'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
53
+			'eml' => 'message/rfc822',
54
+			'aps' => 'application/postscript',
55
+			'exe' => 'application/x-ms-dos-executable',
56
+			'flv' => 'video/x-flv',
57
+			'gz' => 'application/x-gzip',
58
+			'hqx' => 'application/stuffit',
59
+			'htm' => 'text/html',
60
+			'html' => 'text/html',
61
+			'jar' => 'application/x-java-archive',
62
+			'jpeg' => 'image/jpeg',
63
+			'jpg' => 'image/jpeg',
64
+			'm3u' => 'audio/x-mpegurl',
65
+			'm4a' => 'audio/mp4',
66
+			'mdb' => 'application/x-msaccess',
67
+			'mid' => 'audio/midi',
68
+			'midi' => 'audio/midi',
69
+			'mov' => 'video/quicktime',
70
+			'mp3' => 'audio/mpeg',
71
+			'mp4' => 'video/mp4',
72
+			'mpeg' => 'video/mpeg',
73
+			'mpg' => 'video/mpeg',
74
+			'odg' => 'vnd.oasis.opendocument.graphics',
75
+			'odp' => 'vnd.oasis.opendocument.presentation',
76
+			'odt' => 'vnd.oasis.opendocument.text',
77
+			'ods' => 'vnd.oasis.opendocument.spreadsheet',
78
+			'ogg' => 'audio/ogg',
79
+			'pdf' => 'application/pdf',
80
+			'ppt' => 'application/vnd.ms-powerpoint',
81
+			'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
82
+			'ps' => 'application/postscript',
83
+			'rar' => 'application/x-rar-compressed',
84
+			'rtf' => 'application/rtf',
85
+			'tar' => 'application/x-tar',
86
+			'sit' => 'application/x-stuffit',
87
+			'svg' => 'image/svg+xml',
88
+			'tif' => 'image/tiff',
89
+			'tiff' => 'image/tiff',
90
+			'ttf' => 'application/x-font-truetype',
91
+			'vcf' => 'text/x-vcard',
92
+			'wav' => 'audio/wav',
93
+			'wma' => 'audio/x-ms-wma',
94
+			'wmv' => 'audio/x-ms-wmv',
95
+			'xls' => 'application/vnd.ms-excel',
96
+			'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
97
+			'xml' => 'application/xml',
98
+		];
99
+
100
+		// wrap array for generating file
101
+		foreach ($valid_mime_types_preset as $extension => $mime_type) {
102
+			// generate array for mimetype to extension resolver (only first match)
103
+			$valid_mime_types[$extension] = "'{$extension}' => '{$mime_type}'";
104
+		}
105
+
106
+		// all extensions from second match
107
+		foreach ($matches[2] as $i => $extensions) {
108
+			// explode multiple extensions from string
109
+			$extensions = explode(' ', strtolower($extensions ?? ''));
110
+
111
+			// force array for foreach
112
+			if (!\is_array($extensions)) {
113
+				$extensions = [$extensions];
114
+			}
115
+
116
+			foreach ($extensions as $extension) {
117
+				// get mime type
118
+				$mime_type = $matches[1][$i];
119
+
120
+				// check if string length lower than 10
121
+				if (\strlen($extension) < 10) {
122
+					if (!isset($valid_mime_types[$mime_type])) {
123
+						// generate array for mimetype to extension resolver (only first match)
124
+						$valid_mime_types[$extension] = "'{$extension}' => '{$mime_type}'";
125
+					}
126
+				}
127
+			}
128
+		}
129
+	}
130
+
131
+	$xml = simplexml_load_string($mime_xml);
132
+
133
+	foreach ($xml as $node) {
134
+		// check if there is no pattern
135
+		if (!isset($node->glob['pattern'])) {
136
+			continue;
137
+		}
138
+
139
+		// get all matching extensions from match
140
+		foreach ((array) $node->glob['pattern'] as $extension) {
141
+			// skip none glob extensions
142
+			if (false === strpos($extension ?? '', '.')) {
143
+				continue;
144
+			}
145
+
146
+			// remove get only last part
147
+			$extension = explode('.', strtolower($extension ?? ''));
148
+			$extension = end($extension);
149
+		}
150
+
151
+		if (isset($node->glob['pattern'][0])) {
152
+			// mime type
153
+			$mime_type = strtolower((string) $node['type'] ?? '');
154
+
155
+			// get first extension
156
+			$extension = strtolower(trim($node->glob['ddpattern'][0] ?? '', '*.'));
157
+
158
+			// skip none glob extensions and check if string length between 1 and 10
159
+			if (false !== strpos($extension, '.') || \strlen($extension) < 1 || \strlen($extension) > 9) {
160
+				continue;
161
+			}
162
+
163
+			// check if string length lower than 10
164
+			if (!isset($valid_mime_types[$mime_type])) {
165
+				// generate array for mimetype to extension resolver (only first match)
166
+				$valid_mime_types[$extension] = "'{$extension}' => '{$mime_type}'";
167
+			}
168
+		}
169
+	}
170
+
171
+	// full list of valid extensions only
172
+	$valid_mime_types = array_unique($valid_mime_types);
173
+	ksort($valid_mime_types);
174
+
175
+	// combine mime types and extensions array
176
+	$output = "$preamble\$swift_mime_types = array(\n    ".implode(",\n    ", $valid_mime_types)."\n);";
177
+
178
+	// write mime_types.php config file
179
+	@file_put_contents('./mime_types.php', $output);
180 180
 }
181 181
 
182 182
 generateUpToDateMimeArray();
Please login to merge, or discard this patch.
htdocs/includes/swiftmailer/lib/dependency_maps/cache_deps.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,23 +1,23 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 Swift_DependencyContainer::getInstance()
4
-    ->register('cache')
5
-    ->asAliasOf('cache.array')
4
+	->register('cache')
5
+	->asAliasOf('cache.array')
6 6
 
7
-    ->register('tempdir')
8
-    ->asValue('/tmp')
7
+	->register('tempdir')
8
+	->asValue('/tmp')
9 9
 
10
-    ->register('cache.null')
11
-    ->asSharedInstanceOf('Swift_KeyCache_NullKeyCache')
10
+	->register('cache.null')
11
+	->asSharedInstanceOf('Swift_KeyCache_NullKeyCache')
12 12
 
13
-    ->register('cache.array')
14
-    ->asSharedInstanceOf('Swift_KeyCache_ArrayKeyCache')
15
-    ->withDependencies(['cache.inputstream'])
13
+	->register('cache.array')
14
+	->asSharedInstanceOf('Swift_KeyCache_ArrayKeyCache')
15
+	->withDependencies(['cache.inputstream'])
16 16
 
17
-    ->register('cache.disk')
18
-    ->asSharedInstanceOf('Swift_KeyCache_DiskKeyCache')
19
-    ->withDependencies(['cache.inputstream', 'tempdir'])
17
+	->register('cache.disk')
18
+	->asSharedInstanceOf('Swift_KeyCache_DiskKeyCache')
19
+	->withDependencies(['cache.inputstream', 'tempdir'])
20 20
 
21
-    ->register('cache.inputstream')
22
-    ->asNewInstanceOf('Swift_KeyCache_SimpleKeyCacheInputStream')
21
+	->register('cache.inputstream')
22
+	->asNewInstanceOf('Swift_KeyCache_SimpleKeyCacheInputStream')
23 23
 ;
Please login to merge, or discard this patch.
htdocs/includes/swiftmailer/lib/dependency_maps/mime_deps.php 1 patch
Indentation   +126 added lines, -126 removed lines patch added patch discarded remove patch
@@ -3,132 +3,132 @@
 block discarded – undo
3 3
 require __DIR__.'/../mime_types.php';
4 4
 
5 5
 Swift_DependencyContainer::getInstance()
6
-    ->register('properties.charset')
7
-    ->asValue('utf-8')
8
-
9
-    ->register('email.validator')
10
-    ->asSharedInstanceOf('Egulias\EmailValidator\EmailValidator')
11
-
12
-    ->register('mime.idgenerator.idright')
13
-    // As SERVER_NAME can come from the user in certain configurations, check that
14
-    // it does not contain forbidden characters (see RFC 952 and RFC 2181). Use
15
-    // preg_replace() instead of preg_match() to prevent DoS attacks with long host names.
16
-    ->asValue(!empty($_SERVER['SERVER_NAME']) && '' === preg_replace('/(?:^\[)?[a-zA-Z0-9-:\]_]+\.?/', '', $_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'swift.generated')
17
-
18
-    ->register('mime.idgenerator')
19
-    ->asSharedInstanceOf('Swift_Mime_IdGenerator')
20
-    ->withDependencies([
21
-        'mime.idgenerator.idright',
22
-    ])
23
-
24
-    ->register('mime.message')
25
-    ->asNewInstanceOf('Swift_Mime_SimpleMessage')
26
-    ->withDependencies([
27
-        'mime.headerset',
28
-        'mime.textcontentencoder',
29
-        'cache',
30
-        'mime.idgenerator',
31
-        'properties.charset',
32
-    ])
33
-
34
-    ->register('mime.part')
35
-    ->asNewInstanceOf('Swift_Mime_MimePart')
36
-    ->withDependencies([
37
-        'mime.headerset',
38
-        'mime.textcontentencoder',
39
-        'cache',
40
-        'mime.idgenerator',
41
-        'properties.charset',
42
-    ])
43
-
44
-    ->register('mime.attachment')
45
-    ->asNewInstanceOf('Swift_Mime_Attachment')
46
-    ->withDependencies([
47
-        'mime.headerset',
48
-        'mime.base64contentencoder',
49
-        'cache',
50
-        'mime.idgenerator',
51
-    ])
52
-    ->addConstructorValue($swift_mime_types)
53
-
54
-    ->register('mime.embeddedfile')
55
-    ->asNewInstanceOf('Swift_Mime_EmbeddedFile')
56
-    ->withDependencies([
57
-        'mime.headerset',
58
-        'mime.base64contentencoder',
59
-        'cache',
60
-        'mime.idgenerator',
61
-    ])
62
-    ->addConstructorValue($swift_mime_types)
63
-
64
-    ->register('mime.headerfactory')
65
-    ->asNewInstanceOf('Swift_Mime_SimpleHeaderFactory')
66
-    ->withDependencies([
67
-        'mime.qpheaderencoder',
68
-        'mime.rfc2231encoder',
69
-        'email.validator',
70
-        'properties.charset',
71
-        'address.idnaddressencoder',
72
-    ])
73
-
74
-    ->register('mime.headerset')
75
-    ->asNewInstanceOf('Swift_Mime_SimpleHeaderSet')
76
-    ->withDependencies(['mime.headerfactory', 'properties.charset'])
77
-
78
-    ->register('mime.qpheaderencoder')
79
-    ->asNewInstanceOf('Swift_Mime_HeaderEncoder_QpHeaderEncoder')
80
-    ->withDependencies(['mime.charstream'])
81
-
82
-    ->register('mime.base64headerencoder')
83
-    ->asNewInstanceOf('Swift_Mime_HeaderEncoder_Base64HeaderEncoder')
84
-    ->withDependencies(['mime.charstream'])
85
-
86
-    ->register('mime.charstream')
87
-    ->asNewInstanceOf('Swift_CharacterStream_NgCharacterStream')
88
-    ->withDependencies(['mime.characterreaderfactory', 'properties.charset'])
89
-
90
-    ->register('mime.bytecanonicalizer')
91
-    ->asSharedInstanceOf('Swift_StreamFilters_ByteArrayReplacementFilter')
92
-    ->addConstructorValue([[0x0D, 0x0A], [0x0D], [0x0A]])
93
-    ->addConstructorValue([[0x0A], [0x0A], [0x0D, 0x0A]])
94
-
95
-    ->register('mime.characterreaderfactory')
96
-    ->asSharedInstanceOf('Swift_CharacterReaderFactory_SimpleCharacterReaderFactory')
97
-
98
-    ->register('mime.textcontentencoder')
99
-    ->asAliasOf('mime.qpcontentencoder')
100
-
101
-    ->register('mime.safeqpcontentencoder')
102
-    ->asNewInstanceOf('Swift_Mime_ContentEncoder_QpContentEncoder')
103
-    ->withDependencies(['mime.charstream', 'mime.bytecanonicalizer'])
104
-
105
-    ->register('mime.rawcontentencoder')
106
-    ->asNewInstanceOf('Swift_Mime_ContentEncoder_RawContentEncoder')
107
-
108
-    ->register('mime.nativeqpcontentencoder')
109
-    ->withDependencies(['properties.charset'])
110
-    ->asNewInstanceOf('Swift_Mime_ContentEncoder_NativeQpContentEncoder')
111
-
112
-    ->register('mime.qpcontentencoder')
113
-    ->asNewInstanceOf('Swift_Mime_ContentEncoder_QpContentEncoderProxy')
114
-    ->withDependencies(['mime.safeqpcontentencoder', 'mime.nativeqpcontentencoder', 'properties.charset'])
115
-
116
-    ->register('mime.7bitcontentencoder')
117
-    ->asNewInstanceOf('Swift_Mime_ContentEncoder_PlainContentEncoder')
118
-    ->addConstructorValue('7bit')
119
-    ->addConstructorValue(true)
120
-
121
-    ->register('mime.8bitcontentencoder')
122
-    ->asNewInstanceOf('Swift_Mime_ContentEncoder_PlainContentEncoder')
123
-    ->addConstructorValue('8bit')
124
-    ->addConstructorValue(true)
125
-
126
-    ->register('mime.base64contentencoder')
127
-    ->asSharedInstanceOf('Swift_Mime_ContentEncoder_Base64ContentEncoder')
128
-
129
-    ->register('mime.rfc2231encoder')
130
-    ->asNewInstanceOf('Swift_Encoder_Rfc2231Encoder')
131
-    ->withDependencies(['mime.charstream'])
6
+	->register('properties.charset')
7
+	->asValue('utf-8')
8
+
9
+	->register('email.validator')
10
+	->asSharedInstanceOf('Egulias\EmailValidator\EmailValidator')
11
+
12
+	->register('mime.idgenerator.idright')
13
+	// As SERVER_NAME can come from the user in certain configurations, check that
14
+	// it does not contain forbidden characters (see RFC 952 and RFC 2181). Use
15
+	// preg_replace() instead of preg_match() to prevent DoS attacks with long host names.
16
+	->asValue(!empty($_SERVER['SERVER_NAME']) && '' === preg_replace('/(?:^\[)?[a-zA-Z0-9-:\]_]+\.?/', '', $_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'swift.generated')
17
+
18
+	->register('mime.idgenerator')
19
+	->asSharedInstanceOf('Swift_Mime_IdGenerator')
20
+	->withDependencies([
21
+		'mime.idgenerator.idright',
22
+	])
23
+
24
+	->register('mime.message')
25
+	->asNewInstanceOf('Swift_Mime_SimpleMessage')
26
+	->withDependencies([
27
+		'mime.headerset',
28
+		'mime.textcontentencoder',
29
+		'cache',
30
+		'mime.idgenerator',
31
+		'properties.charset',
32
+	])
33
+
34
+	->register('mime.part')
35
+	->asNewInstanceOf('Swift_Mime_MimePart')
36
+	->withDependencies([
37
+		'mime.headerset',
38
+		'mime.textcontentencoder',
39
+		'cache',
40
+		'mime.idgenerator',
41
+		'properties.charset',
42
+	])
43
+
44
+	->register('mime.attachment')
45
+	->asNewInstanceOf('Swift_Mime_Attachment')
46
+	->withDependencies([
47
+		'mime.headerset',
48
+		'mime.base64contentencoder',
49
+		'cache',
50
+		'mime.idgenerator',
51
+	])
52
+	->addConstructorValue($swift_mime_types)
53
+
54
+	->register('mime.embeddedfile')
55
+	->asNewInstanceOf('Swift_Mime_EmbeddedFile')
56
+	->withDependencies([
57
+		'mime.headerset',
58
+		'mime.base64contentencoder',
59
+		'cache',
60
+		'mime.idgenerator',
61
+	])
62
+	->addConstructorValue($swift_mime_types)
63
+
64
+	->register('mime.headerfactory')
65
+	->asNewInstanceOf('Swift_Mime_SimpleHeaderFactory')
66
+	->withDependencies([
67
+		'mime.qpheaderencoder',
68
+		'mime.rfc2231encoder',
69
+		'email.validator',
70
+		'properties.charset',
71
+		'address.idnaddressencoder',
72
+	])
73
+
74
+	->register('mime.headerset')
75
+	->asNewInstanceOf('Swift_Mime_SimpleHeaderSet')
76
+	->withDependencies(['mime.headerfactory', 'properties.charset'])
77
+
78
+	->register('mime.qpheaderencoder')
79
+	->asNewInstanceOf('Swift_Mime_HeaderEncoder_QpHeaderEncoder')
80
+	->withDependencies(['mime.charstream'])
81
+
82
+	->register('mime.base64headerencoder')
83
+	->asNewInstanceOf('Swift_Mime_HeaderEncoder_Base64HeaderEncoder')
84
+	->withDependencies(['mime.charstream'])
85
+
86
+	->register('mime.charstream')
87
+	->asNewInstanceOf('Swift_CharacterStream_NgCharacterStream')
88
+	->withDependencies(['mime.characterreaderfactory', 'properties.charset'])
89
+
90
+	->register('mime.bytecanonicalizer')
91
+	->asSharedInstanceOf('Swift_StreamFilters_ByteArrayReplacementFilter')
92
+	->addConstructorValue([[0x0D, 0x0A], [0x0D], [0x0A]])
93
+	->addConstructorValue([[0x0A], [0x0A], [0x0D, 0x0A]])
94
+
95
+	->register('mime.characterreaderfactory')
96
+	->asSharedInstanceOf('Swift_CharacterReaderFactory_SimpleCharacterReaderFactory')
97
+
98
+	->register('mime.textcontentencoder')
99
+	->asAliasOf('mime.qpcontentencoder')
100
+
101
+	->register('mime.safeqpcontentencoder')
102
+	->asNewInstanceOf('Swift_Mime_ContentEncoder_QpContentEncoder')
103
+	->withDependencies(['mime.charstream', 'mime.bytecanonicalizer'])
104
+
105
+	->register('mime.rawcontentencoder')
106
+	->asNewInstanceOf('Swift_Mime_ContentEncoder_RawContentEncoder')
107
+
108
+	->register('mime.nativeqpcontentencoder')
109
+	->withDependencies(['properties.charset'])
110
+	->asNewInstanceOf('Swift_Mime_ContentEncoder_NativeQpContentEncoder')
111
+
112
+	->register('mime.qpcontentencoder')
113
+	->asNewInstanceOf('Swift_Mime_ContentEncoder_QpContentEncoderProxy')
114
+	->withDependencies(['mime.safeqpcontentencoder', 'mime.nativeqpcontentencoder', 'properties.charset'])
115
+
116
+	->register('mime.7bitcontentencoder')
117
+	->asNewInstanceOf('Swift_Mime_ContentEncoder_PlainContentEncoder')
118
+	->addConstructorValue('7bit')
119
+	->addConstructorValue(true)
120
+
121
+	->register('mime.8bitcontentencoder')
122
+	->asNewInstanceOf('Swift_Mime_ContentEncoder_PlainContentEncoder')
123
+	->addConstructorValue('8bit')
124
+	->addConstructorValue(true)
125
+
126
+	->register('mime.base64contentencoder')
127
+	->asSharedInstanceOf('Swift_Mime_ContentEncoder_Base64ContentEncoder')
128
+
129
+	->register('mime.rfc2231encoder')
130
+	->asNewInstanceOf('Swift_Encoder_Rfc2231Encoder')
131
+	->withDependencies(['mime.charstream'])
132 132
 ;
133 133
 
134 134
 unset($swift_mime_types);
Please login to merge, or discard this patch.
htdocs/includes/swiftmailer/lib/dependency_maps/message_deps.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 Swift_DependencyContainer::getInstance()
4
-    ->register('message.message')
5
-    ->asNewInstanceOf('Swift_Message')
4
+	->register('message.message')
5
+	->asNewInstanceOf('Swift_Message')
6 6
 
7
-    ->register('message.mimepart')
8
-    ->asNewInstanceOf('Swift_MimePart')
7
+	->register('message.mimepart')
8
+	->asNewInstanceOf('Swift_MimePart')
9 9
 ;
Please login to merge, or discard this patch.
htdocs/includes/swiftmailer/lib/dependency_maps/transport_deps.php 1 patch
Indentation   +93 added lines, -93 removed lines patch added patch discarded remove patch
@@ -1,97 +1,97 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 Swift_DependencyContainer::getInstance()
4
-    ->register('transport.localdomain')
5
-    // As SERVER_NAME can come from the user in certain configurations, check that
6
-    // it does not contain forbidden characters (see RFC 952 and RFC 2181). Use
7
-    // preg_replace() instead of preg_match() to prevent DoS attacks with long host names.
8
-    ->asValue(!empty($_SERVER['SERVER_NAME']) && '' === preg_replace('/(?:^\[)?[a-zA-Z0-9-:\]_]+\.?/', '', $_SERVER['SERVER_NAME']) ? trim($_SERVER['SERVER_NAME'], '[]') : '127.0.0.1')
9
-
10
-    ->register('transport.smtp')
11
-    ->asNewInstanceOf('Swift_Transport_EsmtpTransport')
12
-    ->withDependencies([
13
-        'transport.buffer',
14
-        'transport.smtphandlers',
15
-        'transport.eventdispatcher',
16
-        'transport.localdomain',
17
-        'address.idnaddressencoder',
18
-    ])
19
-
20
-    ->register('transport.sendmail')
21
-    ->asNewInstanceOf('Swift_Transport_SendmailTransport')
22
-    ->withDependencies([
23
-        'transport.buffer',
24
-        'transport.eventdispatcher',
25
-        'transport.localdomain',
26
-    ])
27
-
28
-    ->register('transport.loadbalanced')
29
-    ->asNewInstanceOf('Swift_Transport_LoadBalancedTransport')
30
-
31
-    ->register('transport.failover')
32
-    ->asNewInstanceOf('Swift_Transport_FailoverTransport')
33
-
34
-    ->register('transport.spool')
35
-    ->asNewInstanceOf('Swift_Transport_SpoolTransport')
36
-    ->withDependencies(['transport.eventdispatcher'])
37
-
38
-    ->register('transport.null')
39
-    ->asNewInstanceOf('Swift_Transport_NullTransport')
40
-    ->withDependencies(['transport.eventdispatcher'])
41
-
42
-    ->register('transport.buffer')
43
-    ->asNewInstanceOf('Swift_Transport_StreamBuffer')
44
-    ->withDependencies(['transport.replacementfactory'])
45
-
46
-    ->register('transport.smtphandlers')
47
-    ->asArray()
48
-    ->withDependencies(['transport.authhandler'])
49
-
50
-    ->register('transport.authhandler')
51
-    ->asNewInstanceOf('Swift_Transport_Esmtp_AuthHandler')
52
-    ->withDependencies(['transport.authhandlers'])
53
-
54
-    ->register('transport.authhandlers')
55
-    ->asArray()
56
-    ->withDependencies([
57
-        'transport.crammd5auth',
58
-        'transport.loginauth',
59
-        'transport.plainauth',
60
-        'transport.ntlmauth',
61
-        'transport.xoauth2auth',
62
-    ])
63
-
64
-    ->register('transport.smtputf8handler')
65
-    ->asNewInstanceOf('Swift_Transport_Esmtp_SmtpUtf8Handler')
66
-
67
-    ->register('transport.8bitmimehandler')
68
-    ->asNewInstanceOf('Swift_Transport_Esmtp_EightBitMimeHandler')
69
-    ->addConstructorValue('8BITMIME')
70
-
71
-    ->register('transport.crammd5auth')
72
-    ->asNewInstanceOf('Swift_Transport_Esmtp_Auth_CramMd5Authenticator')
73
-
74
-    ->register('transport.loginauth')
75
-    ->asNewInstanceOf('Swift_Transport_Esmtp_Auth_LoginAuthenticator')
76
-
77
-    ->register('transport.plainauth')
78
-    ->asNewInstanceOf('Swift_Transport_Esmtp_Auth_PlainAuthenticator')
79
-
80
-    ->register('transport.xoauth2auth')
81
-    ->asNewInstanceOf('Swift_Transport_Esmtp_Auth_XOAuth2Authenticator')
82
-
83
-    ->register('transport.ntlmauth')
84
-    ->asNewInstanceOf('Swift_Transport_Esmtp_Auth_NTLMAuthenticator')
85
-
86
-    ->register('transport.eventdispatcher')
87
-    ->asNewInstanceOf('Swift_Events_SimpleEventDispatcher')
88
-
89
-    ->register('transport.replacementfactory')
90
-    ->asSharedInstanceOf('Swift_StreamFilters_StringReplacementFilterFactory')
91
-
92
-    ->register('address.idnaddressencoder')
93
-    ->asNewInstanceOf('Swift_AddressEncoder_IdnAddressEncoder')
94
-
95
-    ->register('address.utf8addressencoder')
96
-    ->asNewInstanceOf('Swift_AddressEncoder_Utf8AddressEncoder')
4
+	->register('transport.localdomain')
5
+	// As SERVER_NAME can come from the user in certain configurations, check that
6
+	// it does not contain forbidden characters (see RFC 952 and RFC 2181). Use
7
+	// preg_replace() instead of preg_match() to prevent DoS attacks with long host names.
8
+	->asValue(!empty($_SERVER['SERVER_NAME']) && '' === preg_replace('/(?:^\[)?[a-zA-Z0-9-:\]_]+\.?/', '', $_SERVER['SERVER_NAME']) ? trim($_SERVER['SERVER_NAME'], '[]') : '127.0.0.1')
9
+
10
+	->register('transport.smtp')
11
+	->asNewInstanceOf('Swift_Transport_EsmtpTransport')
12
+	->withDependencies([
13
+		'transport.buffer',
14
+		'transport.smtphandlers',
15
+		'transport.eventdispatcher',
16
+		'transport.localdomain',
17
+		'address.idnaddressencoder',
18
+	])
19
+
20
+	->register('transport.sendmail')
21
+	->asNewInstanceOf('Swift_Transport_SendmailTransport')
22
+	->withDependencies([
23
+		'transport.buffer',
24
+		'transport.eventdispatcher',
25
+		'transport.localdomain',
26
+	])
27
+
28
+	->register('transport.loadbalanced')
29
+	->asNewInstanceOf('Swift_Transport_LoadBalancedTransport')
30
+
31
+	->register('transport.failover')
32
+	->asNewInstanceOf('Swift_Transport_FailoverTransport')
33
+
34
+	->register('transport.spool')
35
+	->asNewInstanceOf('Swift_Transport_SpoolTransport')
36
+	->withDependencies(['transport.eventdispatcher'])
37
+
38
+	->register('transport.null')
39
+	->asNewInstanceOf('Swift_Transport_NullTransport')
40
+	->withDependencies(['transport.eventdispatcher'])
41
+
42
+	->register('transport.buffer')
43
+	->asNewInstanceOf('Swift_Transport_StreamBuffer')
44
+	->withDependencies(['transport.replacementfactory'])
45
+
46
+	->register('transport.smtphandlers')
47
+	->asArray()
48
+	->withDependencies(['transport.authhandler'])
49
+
50
+	->register('transport.authhandler')
51
+	->asNewInstanceOf('Swift_Transport_Esmtp_AuthHandler')
52
+	->withDependencies(['transport.authhandlers'])
53
+
54
+	->register('transport.authhandlers')
55
+	->asArray()
56
+	->withDependencies([
57
+		'transport.crammd5auth',
58
+		'transport.loginauth',
59
+		'transport.plainauth',
60
+		'transport.ntlmauth',
61
+		'transport.xoauth2auth',
62
+	])
63
+
64
+	->register('transport.smtputf8handler')
65
+	->asNewInstanceOf('Swift_Transport_Esmtp_SmtpUtf8Handler')
66
+
67
+	->register('transport.8bitmimehandler')
68
+	->asNewInstanceOf('Swift_Transport_Esmtp_EightBitMimeHandler')
69
+	->addConstructorValue('8BITMIME')
70
+
71
+	->register('transport.crammd5auth')
72
+	->asNewInstanceOf('Swift_Transport_Esmtp_Auth_CramMd5Authenticator')
73
+
74
+	->register('transport.loginauth')
75
+	->asNewInstanceOf('Swift_Transport_Esmtp_Auth_LoginAuthenticator')
76
+
77
+	->register('transport.plainauth')
78
+	->asNewInstanceOf('Swift_Transport_Esmtp_Auth_PlainAuthenticator')
79
+
80
+	->register('transport.xoauth2auth')
81
+	->asNewInstanceOf('Swift_Transport_Esmtp_Auth_XOAuth2Authenticator')
82
+
83
+	->register('transport.ntlmauth')
84
+	->asNewInstanceOf('Swift_Transport_Esmtp_Auth_NTLMAuthenticator')
85
+
86
+	->register('transport.eventdispatcher')
87
+	->asNewInstanceOf('Swift_Events_SimpleEventDispatcher')
88
+
89
+	->register('transport.replacementfactory')
90
+	->asSharedInstanceOf('Swift_StreamFilters_StringReplacementFilterFactory')
91
+
92
+	->register('address.idnaddressencoder')
93
+	->asNewInstanceOf('Swift_AddressEncoder_IdnAddressEncoder')
94
+
95
+	->register('address.utf8addressencoder')
96
+	->asNewInstanceOf('Swift_AddressEncoder_Utf8AddressEncoder')
97 97
 ;
Please login to merge, or discard this patch.
htdocs/includes/swiftmailer/lib/classes/Swift/RfcComplianceException.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@
 block discarded – undo
15 15
  */
16 16
 class Swift_RfcComplianceException extends Swift_SwiftException
17 17
 {
18
-    /**
19
-     * Create a new RfcComplianceException with $message.
20
-     *
21
-     * @param string $message
22
-     */
23
-    public function __construct($message)
24
-    {
25
-        parent::__construct($message);
26
-    }
18
+	/**
19
+	 * Create a new RfcComplianceException with $message.
20
+	 *
21
+	 * @param string $message
22
+	 */
23
+	public function __construct($message)
24
+	{
25
+		parent::__construct($message);
26
+	}
27 27
 }
Please login to merge, or discard this patch.