@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | public function __construct($type = 'js') |
36 | 36 | { |
37 | 37 | $this->type = $type; |
38 | - $this->path = WEB_DIR . DIRECTORY_SEPARATOR; |
|
38 | + $this->path = WEB_DIR.DIRECTORY_SEPARATOR; |
|
39 | 39 | $this->domains = Template::getDomains(true); |
40 | 40 | $this->debug = Config::getParam('debug', true); |
41 | 41 | $this->cdnPath = Config::getParam('resources.cdn.url', Request::getInstance()->getRootUrl()); |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $sourceFile = explode("?", $sourceFile); |
59 | 59 | $sourceFile = $sourceFile[0]; |
60 | 60 | } |
61 | - $orig = realpath(dirname($filenamePath) . DIRECTORY_SEPARATOR . $sourceFile); |
|
61 | + $orig = realpath(dirname($filenamePath).DIRECTORY_SEPARATOR.$sourceFile); |
|
62 | 62 | return $orig; |
63 | 63 | } |
64 | 64 | |
@@ -71,12 +71,12 @@ discard block |
||
71 | 71 | */ |
72 | 72 | public function addFile($filename) |
73 | 73 | { |
74 | - if (file_exists($this->path . $filename) && preg_match('/\.' . $this->type . '$/i', $filename)) { |
|
74 | + if (file_exists($this->path.$filename) && preg_match('/\.'.$this->type.'$/i', $filename)) { |
|
75 | 75 | $this->files[] = $filename; |
76 | 76 | } elseif (!empty($this->domains)) { |
77 | 77 | foreach ($this->domains as $domain => $paths) { |
78 | 78 | $domainFilename = str_replace($domain, $paths["public"], $filename); |
79 | - if (file_exists($domainFilename) && preg_match('/\.' . $this->type . '$/i', $domainFilename)) { |
|
79 | + if (file_exists($domainFilename) && preg_match('/\.'.$this->type.'$/i', $domainFilename)) { |
|
80 | 80 | $this->files[] = $domainFilename; |
81 | 81 | } |
82 | 82 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | public function setHash($hash) |
94 | 94 | { |
95 | 95 | $cache = Config::getParam('cache.var', ''); |
96 | - $this->hash = $hash . (strlen($cache) ? '.' : '') . $cache; |
|
96 | + $this->hash = $hash.(strlen($cache) ? '.' : '').$cache; |
|
97 | 97 | return $this; |
98 | 98 | } |
99 | 99 | |
@@ -127,8 +127,8 @@ discard block |
||
127 | 127 | */ |
128 | 128 | protected function compileCss() |
129 | 129 | { |
130 | - $base = $this->path . "css" . DIRECTORY_SEPARATOR; |
|
131 | - if ($this->debug || !file_exists($base . $this->hash . ".css")) { |
|
130 | + $base = $this->path."css".DIRECTORY_SEPARATOR; |
|
131 | + if ($this->debug || !file_exists($base.$this->hash.".css")) { |
|
132 | 132 | $data = ''; |
133 | 133 | if (0 < count($this->files)) { |
134 | 134 | $minifier = new CSS(); |
@@ -136,15 +136,15 @@ discard block |
||
136 | 136 | $data = $this->processCssLine($file, $base, $data); |
137 | 137 | } |
138 | 138 | } |
139 | - if($this->debug) { |
|
140 | - $this->storeContents($base . $this->hash . ".css", $data); |
|
141 | - } else { |
|
139 | + if ($this->debug) { |
|
140 | + $this->storeContents($base.$this->hash.".css", $data); |
|
141 | + }else { |
|
142 | 142 | $minifier = new CSS(); |
143 | 143 | $minifier->add($data); |
144 | 144 | ini_set('max_execution_time', -1); |
145 | 145 | ini_set('memory_limit', -1); |
146 | 146 | GeneratorHelper::createDir($base); |
147 | - $minifier->minify($base . $this->hash . ".css"); |
|
147 | + $minifier->minify($base.$this->hash.".css"); |
|
148 | 148 | ini_restore('memory_limit'); |
149 | 149 | ini_restore('max_execution_time'); |
150 | 150 | } |
@@ -160,8 +160,8 @@ discard block |
||
160 | 160 | */ |
161 | 161 | protected function compileJs() |
162 | 162 | { |
163 | - $base = $this->path . "js" . DIRECTORY_SEPARATOR; |
|
164 | - if ($this->debug || !file_exists($base . $this->hash . ".js")) { |
|
163 | + $base = $this->path."js".DIRECTORY_SEPARATOR; |
|
164 | + if ($this->debug || !file_exists($base.$this->hash.".js")) { |
|
165 | 165 | $data = ''; |
166 | 166 | if (0 < count($this->files)) { |
167 | 167 | $minifier = new JS(); |
@@ -170,19 +170,19 @@ discard block |
||
170 | 170 | if (file_exists($file)) { |
171 | 171 | if ($this->debug) { |
172 | 172 | $data = $this->putDebugJs($pathParts, $base, $file); |
173 | - } elseif (!file_exists($base . $this->hash . ".js")) { |
|
173 | + } elseif (!file_exists($base.$this->hash.".js")) { |
|
174 | 174 | $minifier->add($file); |
175 | 175 | //$data = $this->putProductionJs($base, $file, $data); |
176 | 176 | } |
177 | 177 | } |
178 | 178 | } |
179 | - if($this->debug) { |
|
180 | - $this->storeContents($base . $this->hash . ".js", $data); |
|
181 | - } else { |
|
179 | + if ($this->debug) { |
|
180 | + $this->storeContents($base.$this->hash.".js", $data); |
|
181 | + }else { |
|
182 | 182 | ini_set('max_execution_time', -1); |
183 | 183 | ini_set('memory_limit', -1); |
184 | 184 | GeneratorHelper::createDir($base); |
185 | - $minifier->minify($base . $this->hash . ".js"); |
|
185 | + $minifier->minify($base.$this->hash.".js"); |
|
186 | 186 | ini_restore('memory_limit'); |
187 | 187 | ini_restore('max_execution_time'); |
188 | 188 | } |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | { |
203 | 203 | GeneratorHelper::createDir(dirname($path)); |
204 | 204 | if ("" !== $content && false === file_put_contents($path, $content)) { |
205 | - throw new ConfigException(t('No se tienen permisos para escribir en ' . $path)); |
|
205 | + throw new ConfigException(t('No se tienen permisos para escribir en '.$path)); |
|
206 | 206 | } |
207 | 207 | } |
208 | 208 | |
@@ -231,9 +231,9 @@ discard block |
||
231 | 231 | foreach ($this->compiled_files as $file) { |
232 | 232 | echo "\t\t<script type='text/javascript' src='{$file}'></script>\n"; |
233 | 233 | } |
234 | - } else { |
|
234 | + }else { |
|
235 | 235 | $basePath = $this->cdnPath ?: ''; |
236 | - echo "\t\t<script type='text/javascript' src='" . $basePath . "/js/" . $this->hash . ".js'></script>\n"; |
|
236 | + echo "\t\t<script type='text/javascript' src='".$basePath."/js/".$this->hash.".js'></script>\n"; |
|
237 | 237 | } |
238 | 238 | } |
239 | 239 | |
@@ -246,9 +246,9 @@ discard block |
||
246 | 246 | foreach ($this->compiled_files as $file) { |
247 | 247 | echo "\t\t<link href='{$file}' rel='stylesheet' media='screen, print'>"; |
248 | 248 | } |
249 | - } else { |
|
249 | + }else { |
|
250 | 250 | $basePath = $this->cdnPath ?: ''; |
251 | - echo "\t\t<link href='" . $basePath . "/css/" . $this->hash . ".css' rel='stylesheet'>"; |
|
251 | + echo "\t\t<link href='".$basePath."/css/".$this->hash.".css' rel='stylesheet'>"; |
|
252 | 252 | } |
253 | 253 | } |
254 | 254 | |
@@ -259,20 +259,20 @@ discard block |
||
259 | 259 | protected function extractCssResources($source, $file) |
260 | 260 | { |
261 | 261 | $sourceFile = $this->extractSourceFilename($source); |
262 | - $orig = realpath(dirname($file) . DIRECTORY_SEPARATOR . $sourceFile); |
|
262 | + $orig = realpath(dirname($file).DIRECTORY_SEPARATOR.$sourceFile); |
|
263 | 263 | $origPart = preg_split('/(\/|\\\)public(\/|\\\)/i', $orig); |
264 | 264 | try { |
265 | 265 | if (count($source) > 1 && array_key_exists(1, $origPart)) { |
266 | - $dest = $this->path . $origPart[1]; |
|
266 | + $dest = $this->path.$origPart[1]; |
|
267 | 267 | GeneratorHelper::createDir(dirname($dest)); |
268 | 268 | if (!file_exists($dest) || filemtime($orig) > filemtime($dest)) { |
269 | 269 | if (@copy($orig, $dest) === FALSE) { |
270 | - throw new \RuntimeException('Can\' copy ' . $dest . ''); |
|
270 | + throw new \RuntimeException('Can\' copy '.$dest.''); |
|
271 | 271 | } |
272 | 272 | Logger::log("$orig copiado a $dest", LOG_INFO); |
273 | 273 | } |
274 | 274 | } |
275 | - } catch (\Exception $e) { |
|
275 | + }catch (\Exception $e) { |
|
276 | 276 | Logger::log($e->getMessage(), LOG_ERR); |
277 | 277 | } |
278 | 278 | } |
@@ -289,21 +289,21 @@ discard block |
||
289 | 289 | { |
290 | 290 | if (file_exists($file)) { |
291 | 291 | $pathParts = explode("/", $file); |
292 | - $filePath = $this->hash . "_" . $pathParts[count($pathParts) - 1]; |
|
293 | - if (!file_exists($base . $filePath) || filemtime($base . $filePath) < filemtime($file) || $this->debug) { |
|
292 | + $filePath = $this->hash."_".$pathParts[count($pathParts) - 1]; |
|
293 | + if (!file_exists($base.$filePath) || filemtime($base.$filePath) < filemtime($file) || $this->debug) { |
|
294 | 294 | //Si tenemos modificaciones tenemos que compilar de nuevo todos los ficheros modificados |
295 | - if (file_exists($base . $this->hash . ".css") && @unlink($base . $this->hash . ".css") === false) { |
|
296 | - throw new ConfigException("Can't unlink file " . $base . $this->hash . ".css"); |
|
295 | + if (file_exists($base.$this->hash.".css") && @unlink($base.$this->hash.".css") === false) { |
|
296 | + throw new ConfigException("Can't unlink file ".$base.$this->hash.".css"); |
|
297 | 297 | } |
298 | 298 | $this->loopCssLines($file); |
299 | 299 | } |
300 | 300 | if ($this->debug) { |
301 | 301 | $data = file_get_contents($file); |
302 | - $this->storeContents($base . $filePath, $data); |
|
303 | - } else { |
|
302 | + $this->storeContents($base.$filePath, $data); |
|
303 | + }else { |
|
304 | 304 | $data .= file_get_contents($file); |
305 | 305 | } |
306 | - $this->compiled_files[] = "/css/" . $filePath; |
|
306 | + $this->compiled_files[] = "/css/".$filePath; |
|
307 | 307 | } |
308 | 308 | |
309 | 309 | return $data; |
@@ -318,12 +318,12 @@ discard block |
||
318 | 318 | */ |
319 | 319 | protected function putDebugJs($pathParts, $base, $file) |
320 | 320 | { |
321 | - $filePath = $this->hash . "_" . $pathParts[count($pathParts) - 1]; |
|
322 | - $this->compiled_files[] = "/js/" . $filePath; |
|
321 | + $filePath = $this->hash."_".$pathParts[count($pathParts) - 1]; |
|
322 | + $this->compiled_files[] = "/js/".$filePath; |
|
323 | 323 | $data = ""; |
324 | - if (!file_exists($base . $filePath) || filemtime($base . $filePath) < filemtime($file)) { |
|
324 | + if (!file_exists($base.$filePath) || filemtime($base.$filePath) < filemtime($file)) { |
|
325 | 325 | $data = file_get_contents($file); |
326 | - $this->storeContents($base . $filePath, $data); |
|
326 | + $this->storeContents($base.$filePath, $data); |
|
327 | 327 | } |
328 | 328 | return $data; |
329 | 329 | } |
@@ -365,60 +365,60 @@ discard block |
||
365 | 365 | { |
366 | 366 | $ppath = explode("/", $string); |
367 | 367 | $originalFilename = $ppath[count($ppath) - 1]; |
368 | - $base = WEB_DIR . DIRECTORY_SEPARATOR; |
|
368 | + $base = WEB_DIR.DIRECTORY_SEPARATOR; |
|
369 | 369 | $file = ""; |
370 | 370 | $htmlBase = ""; |
371 | 371 | $debug = Config::getInstance()->getDebugMode(); |
372 | 372 | $cache = Config::getInstance()->get('cache.var'); |
373 | - $cache = $cache ? '.' . $cache : ''; |
|
373 | + $cache = $cache ? '.'.$cache : ''; |
|
374 | 374 | $finfo = finfo_open(FILEINFO_MIME_TYPE); // devuelve el tipo mime de su extensión |
375 | 375 | $mime = finfo_file($finfo, $filenamePath); |
376 | 376 | finfo_close($finfo); |
377 | 377 | if (preg_match('/\.css$/i', $string)) { |
378 | - $file = "/" . substr(md5($string), 0, 8) . "$cache.css"; |
|
378 | + $file = "/".substr(md5($string), 0, 8)."$cache.css"; |
|
379 | 379 | $htmlBase = "css"; |
380 | 380 | if ($debug) { |
381 | - $file = str_replace(".css", "_" . $originalFilename, $file); |
|
381 | + $file = str_replace(".css", "_".$originalFilename, $file); |
|
382 | 382 | } |
383 | 383 | } elseif (preg_match('/\.js$/i', $string)) { |
384 | - $file = "/" . substr(md5($string), 0, 8) . "$cache.js"; |
|
384 | + $file = "/".substr(md5($string), 0, 8)."$cache.js"; |
|
385 | 385 | $htmlBase = "js"; |
386 | 386 | if ($debug) { |
387 | - $file = str_replace(".js", "_" . $originalFilename, $file); |
|
387 | + $file = str_replace(".js", "_".$originalFilename, $file); |
|
388 | 388 | } |
389 | 389 | } elseif (preg_match("/image/i", $mime)) { |
390 | 390 | $ext = explode(".", $string); |
391 | - $file = "/" . substr(md5($string), 0, 8) . "." . $ext[count($ext) - 1]; |
|
391 | + $file = "/".substr(md5($string), 0, 8).".".$ext[count($ext) - 1]; |
|
392 | 392 | $htmlBase = "img"; |
393 | 393 | if ($debug) { |
394 | - $file = str_replace("." . $ext[count($ext) - 1], "_" . $originalFilename, $file); |
|
394 | + $file = str_replace(".".$ext[count($ext) - 1], "_".$originalFilename, $file); |
|
395 | 395 | } |
396 | 396 | } elseif (preg_match("/(doc|pdf)/i", $mime)) { |
397 | 397 | $ext = explode(".", $string); |
398 | - $file = "/" . substr(md5($string), 0, 8) . "." . $ext[count($ext) - 1]; |
|
398 | + $file = "/".substr(md5($string), 0, 8).".".$ext[count($ext) - 1]; |
|
399 | 399 | $htmlBase = "docs"; |
400 | 400 | if ($debug) { |
401 | - $file = str_replace("." . $ext[count($ext) - 1], "_" . $originalFilename, $file); |
|
401 | + $file = str_replace(".".$ext[count($ext) - 1], "_".$originalFilename, $file); |
|
402 | 402 | } |
403 | 403 | } elseif (preg_match("/(video|audio|ogg)/i", $mime)) { |
404 | 404 | $ext = explode(".", $string); |
405 | - $file = "/" . substr(md5($string), 0, 8) . "." . $ext[count($ext) - 1]; |
|
405 | + $file = "/".substr(md5($string), 0, 8).".".$ext[count($ext) - 1]; |
|
406 | 406 | $htmlBase = "media"; |
407 | 407 | if ($debug) { |
408 | - $file = str_replace("." . $ext[count($ext) - 1], "_" . $originalFilename, $file); |
|
408 | + $file = str_replace(".".$ext[count($ext) - 1], "_".$originalFilename, $file); |
|
409 | 409 | } |
410 | 410 | } elseif (preg_match("/(text|html)/i", $mime)) { |
411 | 411 | $ext = explode(".", $string); |
412 | - $file = "/" . substr(md5($string), 0, 8) . "." . $ext[count($ext) - 1]; |
|
412 | + $file = "/".substr(md5($string), 0, 8).".".$ext[count($ext) - 1]; |
|
413 | 413 | $htmlBase = "templates"; |
414 | 414 | if ($debug) { |
415 | - $file = str_replace("." . $ext[count($ext) - 1], "_" . $originalFilename, $file); |
|
415 | + $file = str_replace(".".$ext[count($ext) - 1], "_".$originalFilename, $file); |
|
416 | 416 | } |
417 | 417 | } elseif (!$return && !is_null($name)) { |
418 | 418 | $htmlBase = ''; |
419 | 419 | $file = $name; |
420 | 420 | } |
421 | - $filePath = $htmlBase . $file; |
|
421 | + $filePath = $htmlBase.$file; |
|
422 | 422 | |
423 | 423 | return array($base, $htmlBase, $filePath); |
424 | 424 | } |
@@ -436,15 +436,15 @@ discard block |
||
436 | 436 | if (preg_match_all('#url\((.*?)\)#', $line, $urls, PREG_SET_ORDER)) { |
437 | 437 | foreach ($urls as $source) { |
438 | 438 | $orig = self::calculateResourcePathname($filenamePath, $source); |
439 | - if(!empty($orig)) { |
|
439 | + if (!empty($orig)) { |
|
440 | 440 | $origPart = preg_split("/Public/i", $orig); |
441 | - $dest = WEB_DIR . $origPart[1]; |
|
441 | + $dest = WEB_DIR.$origPart[1]; |
|
442 | 442 | GeneratorHelper::createDir(dirname($dest)); |
443 | 443 | if (@copy($orig, $dest) === false) { |
444 | - throw new ConfigException("Can't copy " . $orig . " to " . $dest); |
|
444 | + throw new ConfigException("Can't copy ".$orig." to ".$dest); |
|
445 | 445 | } |
446 | - } else { |
|
447 | - Logger::log($filenamePath . ' has an empty origin with the url ' . $source, LOG_WARNING); |
|
446 | + }else { |
|
447 | + Logger::log($filenamePath.' has an empty origin with the url '.$source, LOG_WARNING); |
|
448 | 448 | } |
449 | 449 | } |
450 | 450 | } |
@@ -65,8 +65,8 @@ |
||
65 | 65 | $model = $this->getHydratedModel(); |
66 | 66 | $model->save(); |
67 | 67 | $save = true; |
68 | - Logger::log(get_class($this->model) . ' guardado con id ' . $this->model->getPrimaryKey(), LOG_INFO); |
|
69 | - } catch (\Exception $e) { |
|
68 | + Logger::log(get_class($this->model).' guardado con id '.$this->model->getPrimaryKey(), LOG_INFO); |
|
69 | + }catch (\Exception $e) { |
|
70 | 70 | Logger::log($e->getMessage(), LOG_ERR); |
71 | 71 | throw new FormException($e->getMessage(), $e->getCode(), $e); |
72 | 72 | } |
@@ -27,8 +27,8 @@ discard block |
||
27 | 27 | public function add($name, array $value = []) |
28 | 28 | { |
29 | 29 | $this->fields[$name] = $value; |
30 | - $this->fields[$name]['name'] = $this->getName() . '['.$name.']'; |
|
31 | - $this->fields[$name]['id'] = $this->getName() . '_' . $name; |
|
30 | + $this->fields[$name]['name'] = $this->getName().'['.$name.']'; |
|
31 | + $this->fields[$name]['id'] = $this->getName().'_'.$name; |
|
32 | 32 | $this->fields[$name]['placeholder'] = array_key_exists('placeholder', $value) ? $value['placeholder'] : $name; |
33 | 33 | $this->fields[$name]['hasLabel'] = array_key_exists('hasLabel', $value) ? $value['hasLabel'] : true; |
34 | 34 | return $this; |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | $data = array(); |
68 | 68 | if (count($this->fields) > 0) { |
69 | 69 | foreach ($this->fields as $key => $field) { |
70 | - if (self::SEPARATOR !== $key && $key !== ($this->getName() . '_token')) { |
|
70 | + if (self::SEPARATOR !== $key && $key !== ($this->getName().'_token')) { |
|
71 | 71 | $data[$key] = array_key_exists('value', $field) ? $field['value'] : null; |
72 | 72 | } |
73 | 73 | } |
@@ -115,10 +115,10 @@ discard block |
||
115 | 115 | if (array_key_exists($key, $data[$formName])) { |
116 | 116 | if (preg_match('/id/i', $key) && ($data[$formName][$key] === 0 || $data[$formName][$key] === '%' || $data[$formName][$key] === '')) { |
117 | 117 | $field['value'] = null; |
118 | - } else { |
|
118 | + }else { |
|
119 | 119 | $field['value'] = $data[$formName][$key]; |
120 | 120 | } |
121 | - } else { |
|
121 | + }else { |
|
122 | 122 | unset($field['value']); |
123 | 123 | } |
124 | 124 | return array($data, $field); |
@@ -47,10 +47,10 @@ discard block |
||
47 | 47 | if (null === $value) { |
48 | 48 | $isEmpty = true; |
49 | 49 | // Empty Array check |
50 | - } else if (is_array($value) && 0 === count($value)) { |
|
50 | + }else if (is_array($value) && 0 === count($value)) { |
|
51 | 51 | $isEmpty = true; |
52 | 52 | // Empty string check |
53 | - } else if ('' === preg_replace('/(\ |\r|\n)/m', '', $value)) { |
|
53 | + }else if ('' === preg_replace('/(\ |\r|\n)/m', '', $value)) { |
|
54 | 54 | $isEmpty = true; |
55 | 55 | } |
56 | 56 | |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | && array_key_exists($key, $field) |
77 | 77 | && !array_key_exists('error', $field[$key]) |
78 | 78 | && !empty($field['value']) |
79 | - && preg_match('/' . $field['pattern'] . '/', $field['value']) === 0 |
|
79 | + && preg_match('/'.$field['pattern'].'/', $field['value']) === 0 |
|
80 | 80 | ) { |
81 | 81 | $this->setError($key, str_replace('%s', "<strong>{$key}</strong>", t('El campo %s no tiene un formato válido'))); |
82 | 82 | $field['error'] = $this->getError($key); |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | */ |
48 | 48 | private function hydrateModelField($key, $value) |
49 | 49 | { |
50 | - $setter = 'set' . ucfirst($key); |
|
51 | - $getter = 'get' . ucfirst($key); |
|
50 | + $setter = 'set'.ucfirst($key); |
|
51 | + $getter = 'get'.ucfirst($key); |
|
52 | 52 | if (method_exists($this->model, $setter)) { |
53 | 53 | if (method_exists($this->model, $getter)) { |
54 | 54 | $tmp = $this->model->$getter(); |
@@ -72,16 +72,16 @@ discard block |
||
72 | 72 | { |
73 | 73 | //Extraemos el dato del modelo relacionado si existe el getter |
74 | 74 | $method = null; |
75 | - if (array_key_exists('class_data', $field) && method_exists($val, 'get' . $field['class_data'])) { |
|
76 | - $classMethod = 'get' . $field['class_data']; |
|
75 | + if (array_key_exists('class_data', $field) && method_exists($val, 'get'.$field['class_data'])) { |
|
76 | + $classMethod = 'get'.$field['class_data']; |
|
77 | 77 | $class = $val->$classMethod(); |
78 | - if (array_key_exists('class_id', $field) && method_exists($class, 'get' . $field['class_id'])) { |
|
79 | - $method = 'get' . $field['class_id']; |
|
78 | + if (array_key_exists('class_id', $field) && method_exists($class, 'get'.$field['class_id'])) { |
|
79 | + $method = 'get'.$field['class_id']; |
|
80 | 80 | $data[] = $class->$method(); |
81 | - } else { |
|
81 | + }else { |
|
82 | 82 | $data[] = $class->getPrimaryKey(); |
83 | 83 | } |
84 | - } else { |
|
84 | + }else { |
|
85 | 85 | $data[] = $val; |
86 | 86 | } |
87 | 87 | |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | private function extractModelFieldValue($key, $field) |
134 | 134 | { |
135 | 135 | //Extraemos el valor del campo del modelo |
136 | - $method = 'get' . ucfirst($key); |
|
136 | + $method = 'get'.ucfirst($key); |
|
137 | 137 | $type = (array_key_exists('type', $field)) ? $field['type'] : 'text'; |
138 | 138 | //Extraemos los campos del modelo |
139 | 139 | if (method_exists($this->model, $method)) { |
@@ -143,16 +143,16 @@ discard block |
||
143 | 143 | //Si es una relación múltiple |
144 | 144 | if ($value instanceof ObjectCollection) { |
145 | 145 | $field = $this->computeModelFieldValue($field, $value, $type); |
146 | - } else { //O una relación unitaria |
|
146 | + }else { //O una relación unitaria |
|
147 | 147 | if (method_exists($value, '__toString')) { |
148 | 148 | $field['value'] = $value; |
149 | 149 | } elseif ($value instanceof \DateTime) { |
150 | 150 | $field['value'] = $value->format('Y-m-d H:i:s'); |
151 | - } else { |
|
151 | + }else { |
|
152 | 152 | $field['value'] = $value->getPrimaryKey(); |
153 | 153 | } |
154 | 154 | } |
155 | - } else { |
|
155 | + }else { |
|
156 | 156 | $field['value'] = $value; |
157 | 157 | } |
158 | 158 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | } |
30 | 30 | if ('' !== $hashOrig) { |
31 | 31 | $this->crfs = sha1($hashOrig); |
32 | - $this->add($this->getName() . '_token', array( |
|
32 | + $this->add($this->getName().'_token', array( |
|
33 | 33 | 'type' => 'hidden', |
34 | 34 | 'value' => $this->crfs, |
35 | 35 | )); |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | public function isValid() |
44 | 44 | { |
45 | 45 | $valid = true; |
46 | - $tokenField = $this->getName() . '_token'; |
|
46 | + $tokenField = $this->getName().'_token'; |
|
47 | 47 | // Check crfs token |
48 | 48 | if (!$this->existsFormToken($tokenField)) { |
49 | 49 | $this->errors[$tokenField] = t('Formulario no válido'); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | if (count($pks) === 1) { |
81 | 81 | $pks = array_keys($pks); |
82 | 82 | return [ |
83 | - $tableMap::TABLE_NAME . '.' . $pks[0] => Api::API_MODEL_KEY_FIELD |
|
83 | + $tableMap::TABLE_NAME.'.'.$pks[0] => Api::API_MODEL_KEY_FIELD |
|
84 | 84 | ]; |
85 | 85 | } |
86 | 86 | if (count($pks) > 1) { |
@@ -88,9 +88,9 @@ discard block |
||
88 | 88 | $principal = ''; |
89 | 89 | $sep = 'CONCAT('; |
90 | 90 | foreach ($pks as $pk) { |
91 | - $apiPks[$tableMap::TABLE_NAME . '.' . $pk->getName()] = $pk->getPhpName(); |
|
92 | - $principal .= $sep . $tableMap::TABLE_NAME . '.' . $pk->getName(); |
|
93 | - $sep = ', "' . Api::API_PK_SEPARATOR . '", '; |
|
91 | + $apiPks[$tableMap::TABLE_NAME.'.'.$pk->getName()] = $pk->getPhpName(); |
|
92 | + $principal .= $sep.$tableMap::TABLE_NAME.'.'.$pk->getName(); |
|
93 | + $sep = ', "'.Api::API_PK_SEPARATOR.'", '; |
|
94 | 94 | } |
95 | 95 | $principal .= ')'; |
96 | 96 | $apiPks[$principal] = Api::API_MODEL_KEY_FIELD; |
@@ -117,10 +117,10 @@ discard block |
||
117 | 117 | $pks = ''; |
118 | 118 | $sep = ''; |
119 | 119 | foreach ($tableMap->getPrimaryKeys() as $pk) { |
120 | - $pks .= $sep . $pk->getFullyQualifiedName(); |
|
120 | + $pks .= $sep.$pk->getFullyQualifiedName(); |
|
121 | 121 | $sep = ', "|", '; |
122 | 122 | } |
123 | - $this->extraColumns['CONCAT("' . $tableMap->getPhpName() . ' #", ' . $pks . ')'] = Api::API_LIST_NAME_FIELD; |
|
123 | + $this->extraColumns['CONCAT("'.$tableMap->getPhpName().' #", '.$pks.')'] = Api::API_LIST_NAME_FIELD; |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | } |
143 | 143 | if (null !== $column) { |
144 | 144 | $this->extraColumns[$column->getFullyQualifiedName()] = Api::API_LIST_NAME_FIELD; |
145 | - } else { |
|
145 | + }else { |
|
146 | 146 | $this->addClassListName($tableMap); |
147 | 147 | } |
148 | 148 | } |
@@ -160,15 +160,15 @@ discard block |
||
160 | 160 | $this->addPkToList(); |
161 | 161 | } |
162 | 162 | if (!empty($this->extraColumns)) { |
163 | - if(Config::getParam('api.extrafields.compat', true)) { |
|
163 | + if (Config::getParam('api.extrafields.compat', true)) { |
|
164 | 164 | $fields = array_values($this->extraColumns); |
165 | - } else { |
|
165 | + }else { |
|
166 | 166 | $returnFields = Request::getInstance()->getQuery(Api::API_FIELDS_RESULT_FIELD); |
167 | 167 | $fields = explode(',', $returnFields ?: ''); |
168 | 168 | $fields[] = self::API_MODEL_KEY_FIELD; |
169 | 169 | } |
170 | 170 | foreach ($this->extraColumns as $expression => $columnName) { |
171 | - if(empty($fields) || in_array($columnName, $fields)) { |
|
171 | + if (empty($fields) || in_array($columnName, $fields)) { |
|
172 | 172 | $query->withColumn($expression, $columnName); |
173 | 173 | } |
174 | 174 | } |
@@ -199,17 +199,17 @@ discard block |
||
199 | 199 | { |
200 | 200 | $this->extractApiLang(); |
201 | 201 | $model = $this->getModelNamespace(); |
202 | - $modelI18n = $model . 'I18n'; |
|
202 | + $modelI18n = $model.'I18n'; |
|
203 | 203 | if (method_exists($query, 'useI18nQuery')) { |
204 | 204 | $query->useI18nQuery($this->lang); |
205 | - $i18nMapClass = str_replace('\\Models\\', '\\Models\\Map\\', $modelI18n) . 'TableMap'; |
|
205 | + $i18nMapClass = str_replace('\\Models\\', '\\Models\\Map\\', $modelI18n).'TableMap'; |
|
206 | 206 | /** @var TableMap $modelI18nTableMap */ |
207 | 207 | $modelI18nTableMap = $i18nMapClass::getTableMap(); |
208 | - foreach($modelI18nTableMap->getColumns() as $columnMap) { |
|
209 | - if(!$columnMap->isPrimaryKey()) { |
|
208 | + foreach ($modelI18nTableMap->getColumns() as $columnMap) { |
|
209 | + if (!$columnMap->isPrimaryKey()) { |
|
210 | 210 | $query->withColumn($columnMap->getFullyQualifiedName(), ApiHelper::getColumnMapName($columnMap)); |
211 | - } elseif(!$columnMap->isForeignKey()) { |
|
212 | - $query->withColumn('IFNULL(' . $columnMap->getFullyQualifiedName() . ', "'.$this->lang.'")', ApiHelper::getColumnMapName($columnMap)); |
|
211 | + } elseif (!$columnMap->isForeignKey()) { |
|
212 | + $query->withColumn('IFNULL('.$columnMap->getFullyQualifiedName().', "'.$this->lang.'")', ApiHelper::getColumnMapName($columnMap)); |
|
213 | 213 | } |
214 | 214 | } |
215 | 215 | } |
@@ -223,22 +223,22 @@ discard block |
||
223 | 223 | $model->fromArray($data, ApiHelper::getFieldTypes()); |
224 | 224 | $tableMap = $this->getTableMap(); |
225 | 225 | try { |
226 | - if($tableMap->hasRelation($tableMap->getPhpName() . 'I18n')) |
|
226 | + if ($tableMap->hasRelation($tableMap->getPhpName().'I18n')) |
|
227 | 227 | { |
228 | - $relateI18n = $tableMap->getRelation($tableMap->getPhpName() . 'I18n'); |
|
228 | + $relateI18n = $tableMap->getRelation($tableMap->getPhpName().'I18n'); |
|
229 | 229 | $i18NTableMap = $relateI18n->getLocalTable(); |
230 | 230 | $model->setLocale($this->lang); |
231 | - foreach($i18NTableMap->getColumns() as $columnMap) { |
|
232 | - $method = 'set' . $columnMap->getPhpName(); |
|
231 | + foreach ($i18NTableMap->getColumns() as $columnMap) { |
|
232 | + $method = 'set'.$columnMap->getPhpName(); |
|
233 | 233 | $dtoColumnName = ApiHelper::getColumnMapName($columnMap); |
234 | - if(array_key_exists($dtoColumnName, $data) |
|
234 | + if (array_key_exists($dtoColumnName, $data) |
|
235 | 235 | && method_exists($model, $method) |
236 | 236 | && !($columnMap->isPrimaryKey() && $columnMap->isForeignKey())) { |
237 | 237 | $model->$method($data[$dtoColumnName]); |
238 | 238 | } |
239 | 239 | } |
240 | 240 | } |
241 | - } catch(\Exception $e) { |
|
241 | + }catch (\Exception $e) { |
|
242 | 242 | Logger::log($e->getMessage(), LOG_DEBUG); |
243 | 243 | } |
244 | 244 | } |
@@ -22,15 +22,15 @@ discard block |
||
22 | 22 | */ |
23 | 23 | private static function mapResult(ActiveRecordInterface $model, array $data = []) { |
24 | 24 | $result = []; |
25 | - foreach($data as $key => $value) { |
|
25 | + foreach ($data as $key => $value) { |
|
26 | 26 | try { |
27 | 27 | $realValue = $model->getByName($key); |
28 | - } catch(\Exception $e) { |
|
28 | + }catch (\Exception $e) { |
|
29 | 29 | $realValue = $value; |
30 | 30 | } |
31 | - if(Api::API_MODEL_KEY_FIELD === $key) { |
|
31 | + if (Api::API_MODEL_KEY_FIELD === $key) { |
|
32 | 32 | $result[$key] = (integer)$realValue; |
33 | - } else { |
|
33 | + }else { |
|
34 | 34 | $result[$key] = $realValue; |
35 | 35 | } |
36 | 36 | } |
@@ -55,14 +55,14 @@ discard block |
||
55 | 55 | $objTableMap = get_class($formatter->getTableMap()); |
56 | 56 | /** @var TableMapTrait $objTableMap */ |
57 | 57 | $objData = $data; |
58 | - foreach($objTableMap::getFieldNames() as $field) { |
|
59 | - if(!array_key_exists($field, $objData)) { |
|
58 | + foreach ($objTableMap::getFieldNames() as $field) { |
|
59 | + if (!array_key_exists($field, $objData)) { |
|
60 | 60 | $objData[$field] = null; |
61 | 61 | } |
62 | 62 | } |
63 | 63 | $obj = @$formatter->getAllObjectsFromRow($objData); |
64 | 64 | $result = self::mapResult($obj, $data); |
65 | - if(!preg_match('/' . $modelPk->getPhpName() . '/i', $query[Api::API_FIELDS_RESULT_FIELD])) { |
|
65 | + if (!preg_match('/'.$modelPk->getPhpName().'/i', $query[Api::API_FIELDS_RESULT_FIELD])) { |
|
66 | 66 | unset($result[$modelPk->getPhpName()]); |
67 | 67 | } |
68 | 68 | return $result; |
@@ -73,11 +73,11 @@ discard block |
||
73 | 73 | * @return string |
74 | 74 | */ |
75 | 75 | public static function getColumnMapName(ColumnMap $field) { |
76 | - switch(self::getFieldTypes()) { |
|
76 | + switch (self::getFieldTypes()) { |
|
77 | 77 | default: |
78 | 78 | case 'UpperCamelCase': |
79 | 79 | case TableMap::TYPE_PHPNAME: |
80 | - $columnName =$field->getPhpName(); |
|
80 | + $columnName = $field->getPhpName(); |
|
81 | 81 | break; |
82 | 82 | case 'camelCase': |
83 | 83 | case 'lowerCamelCase': |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | $fDto->entity = $relatedModel; |
32 | 32 | $relatedField = $foreignTable->getColumn($mappedColumn->getRelatedColumnName()); |
33 | 33 | $fDto->relatedField = $relatedField->getPhpName(); |
34 | - $fDto->url = Router::getInstance()->getRoute(strtolower($domain) . '-api-' . $relatedModel); |
|
34 | + $fDto->url = Router::getInstance()->getRoute(strtolower($domain).'-api-'.$relatedModel); |
|
35 | 35 | return $fDto; |
36 | 36 | } |
37 | 37 | |
@@ -43,18 +43,18 @@ discard block |
||
43 | 43 | private static function addQueryFilter(ColumnMap $column, ModelCriteria &$query, $value = null) |
44 | 44 | { |
45 | 45 | $tableField = $column->getFullyQualifiedName(); |
46 | - if(is_array($value)) { |
|
46 | + if (is_array($value)) { |
|
47 | 47 | $query->add($tableField, $value, Criteria::IN); |
48 | 48 | } elseif (preg_match('/^\[/', $value) && preg_match('/\]$/', $value)) { |
49 | 49 | $query->add($tableField, explode(',', preg_replace('/(\[|\])/', '', $value)), Criteria::IN); |
50 | 50 | } elseif (preg_match('/^(\'|\")(.*)(\'|\")$/', $value)) { |
51 | 51 | $text = preg_replace('/(\'|\")/', '', $value); |
52 | 52 | $text = preg_replace('/\ /', '%', $text); |
53 | - $query->add($tableField, '%' . $text . '%', Criteria::LIKE); |
|
54 | - } else { |
|
55 | - if(null !== $column->getValueSet()) { |
|
53 | + $query->add($tableField, '%'.$text.'%', Criteria::LIKE); |
|
54 | + }else { |
|
55 | + if (null !== $column->getValueSet()) { |
|
56 | 56 | $valueSet = $column->getValueSet(); |
57 | - if(in_array($value, $valueSet)) { |
|
57 | + if (in_array($value, $valueSet)) { |
|
58 | 58 | $value = array_search($value, $valueSet); |
59 | 59 | } |
60 | 60 | } |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | */ |
85 | 85 | public static function extractQuery($modelNameNamespace, ConnectionInterface $con = null) |
86 | 86 | { |
87 | - $queryReflector = new \ReflectionClass($modelNameNamespace . "Query"); |
|
87 | + $queryReflector = new \ReflectionClass($modelNameNamespace."Query"); |
|
88 | 88 | /** @var \Propel\Runtime\ActiveQuery\ModelCriteria $query */ |
89 | 89 | $query = $queryReflector->getMethod('create')->invoke($con); |
90 | 90 | |
@@ -103,31 +103,31 @@ discard block |
||
103 | 103 | $sep = ''; |
104 | 104 | foreach ($tableMap->getColumns() as $column) { |
105 | 105 | if ($column->isText()) { |
106 | - $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")'; |
|
106 | + $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")'; |
|
107 | 107 | $sep = ', " ", '; |
108 | 108 | } |
109 | 109 | } |
110 | - foreach($tableMap->getRelations() as $relation) { |
|
111 | - if(preg_match('/I18n$/i', $relation->getName())) { |
|
110 | + foreach ($tableMap->getRelations() as $relation) { |
|
111 | + if (preg_match('/I18n$/i', $relation->getName())) { |
|
112 | 112 | $localeTableMap = $relation->getLocalTable(); |
113 | 113 | foreach ($localeTableMap->getColumns() as $column) { |
114 | 114 | if ($column->isText()) { |
115 | - $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")'; |
|
115 | + $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")'; |
|
116 | 116 | $sep = ', " ", '; |
117 | 117 | } |
118 | 118 | } |
119 | 119 | } |
120 | 120 | } |
121 | 121 | foreach (array_keys($extraColumns) as $extra) { |
122 | - if(!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) { |
|
123 | - $exp .= $sep . $extra; |
|
122 | + if (!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) { |
|
123 | + $exp .= $sep.$extra; |
|
124 | 124 | $sep = ', " ", '; |
125 | 125 | } |
126 | 126 | } |
127 | 127 | $exp .= ")"; |
128 | 128 | $text = preg_replace('/(\'|\")/', '', $value); |
129 | 129 | $text = preg_replace('/\ /', '%', $text); |
130 | - $query->where($exp . Criteria::LIKE . '"%' . $text . '%"'); |
|
130 | + $query->where($exp.Criteria::LIKE.'"%'.$text.'%"'); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | */ |
137 | 137 | public static function extractPrimaryKeyColumnName(TableMap $tableMap) { |
138 | 138 | $modelPk = null; |
139 | - foreach($tableMap->getPrimaryKeys() as $pk) { |
|
139 | + foreach ($tableMap->getPrimaryKeys() as $pk) { |
|
140 | 140 | $modelPk = $pk; |
141 | 141 | break; |
142 | 142 | } |