@@ -63,7 +63,7 @@ |
||
63 | 63 | |
64 | 64 | // Define the ratio and adjust the width and height |
65 | 65 | if ($this->_preserveAspectRatio) { |
66 | - $ratio = min($this->_width/$originalWidth, $this->_height/$originalHeight); |
|
66 | + $ratio = min($this->_width / $originalWidth, $this->_height / $originalHeight); |
|
67 | 67 | $this->_width = $originalWidth * $ratio; |
68 | 68 | $this->_height = $originalHeight * $ratio; |
69 | 69 | } |
@@ -26,14 +26,14 @@ |
||
26 | 26 | |
27 | 27 | // Define which ratio will be used, depending on which is the smallest side |
28 | 28 | $ratio = min($hRatio, $wRatio); |
29 | - if($ratio > 1) $ratio = 1; |
|
29 | + if ($ratio > 1) $ratio = 1; |
|
30 | 30 | |
31 | 31 | // Define sizes |
32 | 32 | $this->_destWidth = floor($originalWidth * $ratio); |
33 | 33 | $this->_destHeight = floor($originalHeight * $ratio); |
34 | 34 | |
35 | 35 | // Define margins |
36 | - $this->_destX = floor(($this->_width - $this->_destWidth) / 2); |
|
36 | + $this->_destX = floor(($this->_width - $this->_destWidth) / 2); |
|
37 | 37 | $this->_destY = floor(($this->_height - $this->_destHeight) / 2); |
38 | 38 | |
39 | 39 | // Execute the Crop method with the given parameters |
@@ -10,5 +10,5 @@ |
||
10 | 10 | |
11 | 11 | class DutchStopWords extends StopWordsFilter |
12 | 12 | { |
13 | - protected $stopWords = array('aan','af','al','alles','als','altijd','andere','ben','bij','daar','dan','dat','de','der','deze','die','dit','doch','doen','door','doorgaans','dus','een','eens','en','er','ge','geen','geweest','haar','had','heb','hebben','heeft','hem','het','hier','hij','hoe','hun','iemand','iets','ik','in','is','ja','je','kan','kon','kunnen','maar','me','meer','men','met','mij','mijn','moet','na','naar','niet','niets','nog','nu','of','om','omdat','ons','ook','op','over','reeds','te','tegen','toch','toen','tot','u','uit','uw','van','veel','voor','want','waren','was','wat','we','wel','werd','wezen','wie','wij','wil','worden','zal','ze','zei','zelf','zich','zij','zijn','zo','zodat','zonder','zou'); |
|
13 | + protected $stopWords = array('aan', 'af', 'al', 'alles', 'als', 'altijd', 'andere', 'ben', 'bij', 'daar', 'dan', 'dat', 'de', 'der', 'deze', 'die', 'dit', 'doch', 'doen', 'door', 'doorgaans', 'dus', 'een', 'eens', 'en', 'er', 'ge', 'geen', 'geweest', 'haar', 'had', 'heb', 'hebben', 'heeft', 'hem', 'het', 'hier', 'hij', 'hoe', 'hun', 'iemand', 'iets', 'ik', 'in', 'is', 'ja', 'je', 'kan', 'kon', 'kunnen', 'maar', 'me', 'meer', 'men', 'met', 'mij', 'mijn', 'moet', 'na', 'naar', 'niet', 'niets', 'nog', 'nu', 'of', 'om', 'omdat', 'ons', 'ook', 'op', 'over', 'reeds', 'te', 'tegen', 'toch', 'toen', 'tot', 'u', 'uit', 'uw', 'van', 'veel', 'voor', 'want', 'waren', 'was', 'wat', 'we', 'wel', 'werd', 'wezen', 'wie', 'wij', 'wil', 'worden', 'zal', 'ze', 'zei', 'zelf', 'zich', 'zij', 'zijn', 'zo', 'zodat', 'zonder', 'zou'); |
|
14 | 14 | } |
15 | 15 | \ No newline at end of file |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $string = strip_tags($string); |
49 | 49 | $string = trim($string); |
50 | 50 | $string = iconv('UTF-8', 'ASCII//TRANSLIT//IGNORE', $string); // Remove special alphanumeric characters |
51 | - $string = str_replace(array('+', '=', '!', ',', '.',';', ':', '?'), ' ', $string); // Replace sentence breaking charaters with spaces |
|
51 | + $string = str_replace(array('+', '=', '!', ',', '.', ';', ':', '?'), ' ', $string); // Replace sentence breaking charaters with spaces |
|
52 | 52 | $string = preg_replace("/[\r\n]+/", " ", $string); // Replace multiple newlines with a single space. |
53 | 53 | $string = preg_replace("/[\t]+/", " ", $string); // Replace multiple tabs with a single space. |
54 | 54 | $string = preg_replace("/[^a-zA-Z0-9 ]/", '', $string); // Filter out everything that is not alphanumeric or a space |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | { |
67 | 67 | $encoding = mb_detect_encoding($string, mb_detect_order(), false); |
68 | 68 | |
69 | - if($encoding == "UTF-8") { |
|
69 | + if ($encoding == "UTF-8") { |
|
70 | 70 | $string = mb_convert_encoding($string, 'UTF-8', 'UTF-8'); |
71 | 71 | } |
72 | 72 |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | <input required="required" value="<?=isset($document) ? $document->title : '' ?>" type="text" id="title" name="title" placeholder="Title" /> |
18 | 18 | </div> |
19 | 19 | <? endif ?> |
20 | - <?$fieldPrefix='fields';?> |
|
20 | + <?$fieldPrefix = 'fields'; ?> |
|
21 | 21 | <? foreach ($documentType->fields as $field) : ?> |
22 | 22 | <div class="form-element"> |
23 | 23 | <label for="<?=$field->slug?>"><?=$field->title?></label> |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | </div> |
74 | 74 | </div> |
75 | 75 | </li> |
76 | - <?$value='';?> |
|
76 | + <?$value = ''; ?> |
|
77 | 77 | <? endforeach ?> |
78 | 78 | <? endif ?> |
79 | 79 | </ul> |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | <? include(__DIR__ . '/fieldTypes/' . str_replace(' ', '-', $field->type) . '.php') ?> |
94 | 94 | </div> |
95 | 95 | </li> |
96 | - <?$value='';?> |
|
96 | + <?$value = ''; ?> |
|
97 | 97 | <? endforeach ?> |
98 | 98 | <? endif ?> |
99 | 99 | </div> |
@@ -102,17 +102,17 @@ discard block |
||
102 | 102 | <a class="btn js-addrtemultiple">+</a> |
103 | 103 | <? endif ?> |
104 | 104 | </div> |
105 | - <?$value='';?> |
|
105 | + <?$value = ''; ?> |
|
106 | 106 | <? endforeach ?> |
107 | 107 | <hr /> |
108 | - <? $static_brick_nr = 0;?> |
|
108 | + <? $static_brick_nr = 0; ?> |
|
109 | 109 | <? foreach ($documentType->bricks as $brick) : ?> |
110 | 110 | <div class="brick"> |
111 | 111 | <label><?=$brick->title?></label> |
112 | 112 | <? if ($brick->multiple == 'true') : ?> |
113 | 113 | <input type="hidden" value="<?=$brick->brickSlug?>"/> |
114 | 114 | <input type="hidden" value="<?=$brick->slug?>"/> |
115 | - <?$myBrickSlug=$brick->slug;?> |
|
115 | + <?$myBrickSlug = $brick->slug; ?> |
|
116 | 116 | <ul id="newBrickDropzone_<?=$static_brick_nr?>" class="dynamicBricks sortable"> |
117 | 117 | <? if (isset($document)) : ?> |
118 | 118 | <? foreach ($document->bricks as $currentBrickSlug => $brickArray) : ?> |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | <a class="btn" onclick="addDynamicBrick(this, 'true', 'newBrickDropzone_<?=$static_brick_nr?>');">+</a> |
137 | 137 | <?$static_brick_nr += 1?> |
138 | 138 | <? else : ?> |
139 | - <?$fieldPrefix='bricks[' . $brick->slug . '][fields]';?> |
|
139 | + <?$fieldPrefix = 'bricks[' . $brick->slug . '][fields]'; ?> |
|
140 | 140 | <input type="hidden" name="bricks[<?=$brick->slug?>][type]" value="<?=$brick->brickSlug?>" /> |
141 | 141 | <? foreach ($brick->structure->fields as $field) : ?> |
142 | 142 | <div class="form-element"> |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | </div> |
196 | 196 | </div> |
197 | 197 | </li> |
198 | - <?$value='';?> |
|
198 | + <?$value = ''; ?> |
|
199 | 199 | <? endforeach ?> |
200 | 200 | <? endif ?> |
201 | 201 | </ul> |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | <? include(__DIR__ . '/fieldTypes/' . str_replace(' ', '-', $field->type) . '.php') ?> |
217 | 217 | </div> |
218 | 218 | </li> |
219 | - <?$value='';?> |
|
219 | + <?$value = ''; ?> |
|
220 | 220 | <? endforeach ?> |
221 | 221 | <? endif ?> |
222 | 222 | </div> |
@@ -225,12 +225,12 @@ discard block |
||
225 | 225 | <a class="btn js-addrtemultiple">+</a> |
226 | 226 | <? endif ?> |
227 | 227 | </div> |
228 | - <?$value='';?> |
|
228 | + <?$value = ''; ?> |
|
229 | 229 | <? endforeach ?> |
230 | 230 | <? endif ?> |
231 | 231 | </div> |
232 | 232 | <hr /> |
233 | - <? endforeach;?> |
|
233 | + <? endforeach; ?> |
|
234 | 234 | |
235 | 235 | |
236 | 236 |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | </div> |
64 | 64 | </div> |
65 | 65 | </li> |
66 | - <?$value='';?> |
|
66 | + <?$value = ''; ?> |
|
67 | 67 | <? endforeach ?> |
68 | 68 | <? endif ?> |
69 | 69 | </ul> |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | <? include(__DIR__ . '/fieldTypes/' . str_replace(' ', '-', $field->type) . '.php') ?> |
84 | 84 | </div> |
85 | 85 | </li> |
86 | - <?$value='';?> |
|
86 | + <?$value = ''; ?> |
|
87 | 87 | <? endforeach ?> |
88 | 88 | <? endif ?> |
89 | 89 | </div> |
@@ -92,5 +92,5 @@ discard block |
||
92 | 92 | <a class="btn js-addrtemultiple">+</a> |
93 | 93 | <? endif ?> |
94 | 94 | </div> |
95 | - <?$value='';?> |
|
95 | + <?$value = ''; ?> |
|
96 | 96 | <? endforeach ?> |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | public function save() |
152 | 152 | { |
153 | 153 | $host = $this; |
154 | - array_map(function ($value) use ($host) { |
|
154 | + array_map(function($value) use ($host) { |
|
155 | 155 | $host->saveSubset($value); |
156 | 156 | }, $this->fileBasedSubsets); |
157 | 157 | } |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | if ($containerPath === '/') { |
341 | 341 | return $this->getRootFolder(); |
342 | 342 | } |
343 | - if (substr($containerPath, -1) === '/'){ |
|
343 | + if (substr($containerPath, -1) === '/') { |
|
344 | 344 | $containerPath = substr($containerPath, 0, -1); |
345 | 345 | } |
346 | 346 | $containerFolder = $this->getDocumentByPath($containerPath, 'unpublished'); |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | WHERE `type` != "folder" |
393 | 393 | '); |
394 | 394 | $result = $stmt->fetch(\PDO::FETCH_ASSOC); |
395 | - if (!is_array($result )) { |
|
395 | + if (!is_array($result)) { |
|
396 | 396 | return 0; |
397 | 397 | } |
398 | 398 | return intval(current($result)); |
@@ -53,8 +53,8 @@ |
||
53 | 53 | */ |
54 | 54 | function utf8Convert($array) |
55 | 55 | { |
56 | - array_walk_recursive($array, function(&$item){ |
|
57 | - if(!mb_detect_encoding($item, 'utf-8', true)){ |
|
56 | + array_walk_recursive($array, function(&$item) { |
|
57 | + if (!mb_detect_encoding($item, 'utf-8', true)) { |
|
58 | 58 | $item = utf8_encode($item); |
59 | 59 | } |
60 | 60 | }); |
@@ -98,7 +98,7 @@ |
||
98 | 98 | $this->sessionValues = $_SESSION['LanguageComponent']; |
99 | 99 | |
100 | 100 | if ($this->forceRedirect === true) { |
101 | - if (substr($request::$relativeUri, 0, 2) !== $lang ) { |
|
101 | + if (substr($request::$relativeUri, 0, 2) !== $lang) { |
|
102 | 102 | if ($lang !== $this->defaultLanguage) { |
103 | 103 | header('Location: ' . $request::$subfolders . $lang . '/' . $request::$relativeUri); |
104 | 104 | exit; |