@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | unset($_SERVER["PHP_AUTH_USER"]); |
39 | 39 | unset($_SERVER["PHP_AUTH_PW"]); |
40 | 40 | header_remove("Authorization"); |
41 | - } else { |
|
41 | + }else { |
|
42 | 42 | header('Authorization:'); |
43 | 43 | } |
44 | 44 | } |
@@ -66,9 +66,9 @@ discard block |
||
66 | 66 | Logger::log('Adding debug headers to render response'); |
67 | 67 | $vars["__DEBUG__"]["includes"] = get_included_files(); |
68 | 68 | $vars["__DEBUG__"]["trace"] = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); |
69 | - header('X-PSFS-DEBUG-TS: ' . Dispatcher::getInstance()->getTs() . ' s'); |
|
70 | - header('X-PSFS-DEBUG-MEM: ' . Dispatcher::getInstance()->getMem('MBytes') . ' MBytes'); |
|
71 | - header('X-PSFS-DEBUG-FILES: ' . count(get_included_files()) . ' files opened'); |
|
69 | + header('X-PSFS-DEBUG-TS: '.Dispatcher::getInstance()->getTs().' s'); |
|
70 | + header('X-PSFS-DEBUG-MEM: '.Dispatcher::getInstance()->getMem('MBytes').' MBytes'); |
|
71 | + header('X-PSFS-DEBUG-FILES: '.count(get_included_files()).' files opened'); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | return $vars; |
@@ -121,6 +121,9 @@ discard block |
||
121 | 121 | return self::getInstance()->getHeader($name); |
122 | 122 | } |
123 | 123 | |
124 | + /** |
|
125 | + * @return string |
|
126 | + */ |
|
124 | 127 | public function getHeader($name) |
125 | 128 | { |
126 | 129 | $header = null; |
@@ -171,7 +174,7 @@ discard block |
||
171 | 174 | * |
172 | 175 | * @param string $queryParams |
173 | 176 | * |
174 | - * @return mixed |
|
177 | + * @return string |
|
175 | 178 | */ |
176 | 179 | public function getQuery($queryParams) |
177 | 180 | { |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | { |
217 | 217 | if (null === $url) $url = $this->getServer('HTTP_ORIGIN'); |
218 | 218 | ob_start(); |
219 | - header('Location: ' . $url); |
|
219 | + header('Location: '.$url); |
|
220 | 220 | ob_end_clean(); |
221 | 221 | Security::getInstance()->updateSession(); |
222 | 222 | exit(_("Redireccionando...")); |
@@ -261,9 +261,9 @@ discard block |
||
261 | 261 | $host = $this->getServerName(); |
262 | 262 | $protocol = $protocol ? $this->getProtocol() : ''; |
263 | 263 | $url = ''; |
264 | - if (!empty($host) && !empty($protocol)) $url = $protocol . $host; |
|
264 | + if (!empty($host) && !empty($protocol)) $url = $protocol.$host; |
|
265 | 265 | if (!in_array($this->getServer('SERVER_PORT'), [80, 443])) { |
266 | - $url .= ':' . $this->getServer('SERVER_PORT'); |
|
266 | + $url .= ':'.$this->getServer('SERVER_PORT'); |
|
267 | 267 | } |
268 | 268 | return $url; |
269 | 269 | } |
@@ -8,9 +8,10 @@ discard block |
||
8 | 8 | function getallheaders() |
9 | 9 | { |
10 | 10 | $headers = array(); |
11 | - foreach ($_SERVER as $h => $v) |
|
12 | - if (preg_match('/HTTP_(.+)/', $h, $hp)) |
|
11 | + foreach ($_SERVER as $h => $v) { |
|
12 | + if (preg_match('/HTTP_(.+)/', $h, $hp)) |
|
13 | 13 | $headers[$hp[1]] = $v; |
14 | + } |
|
14 | 15 | return $headers; |
15 | 16 | } |
16 | 17 | } |
@@ -214,7 +215,9 @@ discard block |
||
214 | 215 | */ |
215 | 216 | public function redirect($url = null) |
216 | 217 | { |
217 | - if (null === $url) $url = $this->getServer('HTTP_ORIGIN'); |
|
218 | + if (null === $url) { |
|
219 | + $url = $this->getServer('HTTP_ORIGIN'); |
|
220 | + } |
|
218 | 221 | ob_start(); |
219 | 222 | header('Location: ' . $url); |
220 | 223 | ob_end_clean(); |
@@ -261,7 +264,9 @@ discard block |
||
261 | 264 | $host = $this->getServerName(); |
262 | 265 | $protocol = $protocol ? $this->getProtocol() : ''; |
263 | 266 | $url = ''; |
264 | - if (!empty($host) && !empty($protocol)) $url = $protocol . $host; |
|
267 | + if (!empty($host) && !empty($protocol)) { |
|
268 | + $url = $protocol . $host; |
|
269 | + } |
|
265 | 270 | if (!in_array($this->getServer('SERVER_PORT'), [80, 443])) { |
266 | 271 | $url .= ':' . $this->getServer('SERVER_PORT'); |
267 | 272 | } |
@@ -22,7 +22,7 @@ |
||
22 | 22 | * @route /admin/config/params |
23 | 23 | * @label Parámetros de configuración de PSGS |
24 | 24 | * @visible false |
25 | - * @return mixed |
|
25 | + * @return string|null |
|
26 | 26 | */ |
27 | 27 | public function getConfigParams() |
28 | 28 | { |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | foreach ($domains as $domain => $routes) { |
32 | 32 | $pDomain = str_replace('@', '', $domain); |
33 | 33 | $pDomain = str_replace('/', '', $pDomain); |
34 | - $response[] = strtolower($pDomain) . '.api.secret'; |
|
34 | + $response[] = strtolower($pDomain).'.api.secret'; |
|
35 | 35 | } |
36 | 36 | return $this->json($response); |
37 | 37 | } |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public function config() |
47 | 47 | { |
48 | - Logger::log("Config loaded executed by " . $this->getRequest()->getRequestUri()); |
|
48 | + Logger::log("Config loaded executed by ".$this->getRequest()->getRequestUri()); |
|
49 | 49 | /* @var $form \PSFS\base\config\ConfigForm */ |
50 | 50 | $form = new ConfigForm(Router::getInstance()->getRoute('admin-config'), Config::$required, Config::$optional, Config::getInstance()->dumpConfig()); |
51 | 51 | $form->build(); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | } |
83 | 83 | Security::getInstance()->setFlash("callback_message", _("Configuración actualizada correctamente")); |
84 | 84 | Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-config", true)); |
85 | - } else { |
|
85 | + }else { |
|
86 | 86 | throw new \HttpException(_('Error al guardar la configuración, prueba a cambiar los permisos'), 403); |
87 | 87 | } |
88 | 88 | } |
@@ -30,7 +30,7 @@ |
||
30 | 30 | * @route /admin/routes/show |
31 | 31 | * @label Servicio de rutas del sistema |
32 | 32 | * @visible false |
33 | - * @return mixed |
|
33 | + * @return string|null |
|
34 | 34 | */ |
35 | 35 | public function getRouting() |
36 | 36 | { |
@@ -55,7 +55,7 @@ |
||
55 | 55 | $router->simpatize(); |
56 | 56 | Security::getInstance()->setFlash("callback_message", _("Rutas generadas correctamente")); |
57 | 57 | Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-routes", true)); |
58 | - } catch (\Exception $e) { |
|
58 | + }catch (\Exception $e) { |
|
59 | 59 | Logger::log($e->getMessage(), LOG_ERR); |
60 | 60 | Security::getInstance()->setFlash("callback_message", _("Algo no ha salido bien, revisa los logs")); |
61 | 61 | Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-routes", true)); |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | Logger::log('Configuration saved successful'); |
64 | 64 | Security::getInstance()->setFlash("callback_message", _("Usuario agregado correctamente")); |
65 | 65 | Security::getInstance()->setFlash("callback_route", Router::getInstance()->getRoute("admin", true)); |
66 | - } else { |
|
66 | + }else { |
|
67 | 67 | throw new ConfigException(_('Error al guardar los administradores, prueba a cambiar los permisos')); |
68 | 68 | } |
69 | 69 | } |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | { |
100 | 100 | if ($this->isAdmin()) { |
101 | 101 | return $this->redirect('admin'); |
102 | - } else { |
|
102 | + }else { |
|
103 | 103 | return Admin::staticAdminLogon($route); |
104 | 104 | } |
105 | 105 | } |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | $cookies = array( |
132 | 132 | array( |
133 | 133 | "name" => Security::getInstance()->getHash(), |
134 | - "value" => base64_encode($form->getFieldValue("user") . ":" . $form->getFieldValue("pass")), |
|
134 | + "value" => base64_encode($form->getFieldValue("user").":".$form->getFieldValue("pass")), |
|
135 | 135 | "expire" => time() + 3600, |
136 | 136 | "http" => true, |
137 | 137 | ) |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | 'status_message' => _("Acceso permitido... redirigiendo!!"), |
143 | 143 | 'delay' => 1, |
144 | 144 | ); |
145 | - } else { |
|
145 | + }else { |
|
146 | 146 | $form->setError("user", _("El usuario no tiene acceso a la web")); |
147 | 147 | } |
148 | 148 | } |
@@ -48,10 +48,10 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public static function staticAdminLogon($route = null) |
50 | 50 | { |
51 | - if (file_exists(CONFIG_DIR . DIRECTORY_SEPARATOR . 'admins.json')) { |
|
51 | + if (file_exists(CONFIG_DIR.DIRECTORY_SEPARATOR.'admins.json')) { |
|
52 | 52 | if ('login' !== Config::getInstance()->get('admin_login')) { |
53 | 53 | return AdminServices::getInstance()->setAdminHeaders(); |
54 | - } else { |
|
54 | + }else { |
|
55 | 55 | $form = new LoginForm(); |
56 | 56 | $form->setData(array("route" => $route)); |
57 | 57 | $form->build(); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | 'form' => $form, |
62 | 62 | )); |
63 | 63 | } |
64 | - } else { |
|
64 | + }else { |
|
65 | 65 | return UserController::showAdminManager(); |
66 | 66 | } |
67 | 67 | } |
@@ -144,7 +144,7 @@ |
||
144 | 144 | * @param string $path |
145 | 145 | * @param $domains |
146 | 146 | * |
147 | - * @return mixed |
|
147 | + * @return string |
|
148 | 148 | */ |
149 | 149 | private static function extractPathname($path, $domains) |
150 | 150 | { |
@@ -39,12 +39,12 @@ discard block |
||
39 | 39 | |
40 | 40 | $file_path = ""; |
41 | 41 | if (!file_exists($file_path)) { |
42 | - $file_path = BASE_DIR . $string; |
|
42 | + $file_path = BASE_DIR.$string; |
|
43 | 43 | } |
44 | 44 | $filename_path = AssetsParser::findDomainPath($string, $file_path); |
45 | 45 | |
46 | 46 | $file_path = self::processAsset($string, $name, $return, $filename_path); |
47 | - $return_path = (empty($name)) ? Request::getInstance()->getRootUrl() . '/' . $file_path : $name; |
|
47 | + $return_path = (empty($name)) ? Request::getInstance()->getRootUrl().'/'.$file_path : $name; |
|
48 | 48 | return ($return) ? $return_path : ''; |
49 | 49 | } |
50 | 50 | |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | $router = Router::getInstance(); |
62 | 62 | try { |
63 | 63 | return $router->getRoute($path, $absolute, $params); |
64 | - } catch (\Exception $e) { |
|
64 | + }catch (\Exception $e) { |
|
65 | 65 | return $router->getRoute('', $absolute, $params); |
66 | 66 | } |
67 | 67 | } |
@@ -187,8 +187,8 @@ discard block |
||
187 | 187 | private static function putResourceContent($name, $filename_path, $base, $file_path) |
188 | 188 | { |
189 | 189 | $data = file_get_contents($filename_path); |
190 | - if (!empty($name)) file_put_contents(WEB_DIR . DIRECTORY_SEPARATOR . $name, $data); |
|
191 | - else file_put_contents($base . $file_path, $data); |
|
190 | + if (!empty($name)) file_put_contents(WEB_DIR.DIRECTORY_SEPARATOR.$name, $data); |
|
191 | + else file_put_contents($base.$file_path, $data); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | /** |
@@ -206,9 +206,9 @@ discard block |
||
206 | 206 | if (file_exists($filename_path)) { |
207 | 207 | list($base, $html_base, $file_path) = AssetsParser::calculateAssetPath($string, $name, $return, $filename_path); |
208 | 208 | //Creamos el directorio si no existe |
209 | - GeneratorHelper::createDir($base . $html_base); |
|
209 | + GeneratorHelper::createDir($base.$html_base); |
|
210 | 210 | //Si se ha modificado |
211 | - if (!file_exists($base . $file_path) || filemtime($base . $file_path) < filemtime($filename_path)) { |
|
211 | + if (!file_exists($base.$file_path) || filemtime($base.$file_path) < filemtime($filename_path)) { |
|
212 | 212 | if ($html_base == 'css') { |
213 | 213 | self::processCssLines($filename_path); |
214 | 214 | } |
@@ -187,8 +187,11 @@ |
||
187 | 187 | private static function putResourceContent($name, $filename_path, $base, $file_path) |
188 | 188 | { |
189 | 189 | $data = file_get_contents($filename_path); |
190 | - if (!empty($name)) file_put_contents(WEB_DIR . DIRECTORY_SEPARATOR . $name, $data); |
|
191 | - else file_put_contents($base . $file_path, $data); |
|
190 | + if (!empty($name)) { |
|
191 | + file_put_contents(WEB_DIR . DIRECTORY_SEPARATOR . $name, $data); |
|
192 | + } else { |
|
193 | + file_put_contents($base . $file_path, $data); |
|
194 | + } |
|
192 | 195 | } |
193 | 196 | |
194 | 197 | /** |
@@ -8,7 +8,6 @@ |
||
8 | 8 | use PSFS\base\extension\TemplateFunctions; |
9 | 9 | use PSFS\base\types\helpers\GeneratorHelper; |
10 | 10 | use PSFS\base\types\helpers\ResponseHelper; |
11 | -use PSFS\base\types\helpers\TemplateHelper; |
|
12 | 11 | use PSFS\base\types\SingletonTrait; |
13 | 12 | |
14 | 13 |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | ResponseHelper::setStatusHeader($this->status_code); |
130 | 130 | ResponseHelper::setAuthHeaders($this->public_zone); |
131 | 131 | ResponseHelper::setCookieHeaders($cookies); |
132 | - header('Content-type: ' . $contentType); |
|
132 | + header('Content-type: '.$contentType); |
|
133 | 133 | |
134 | 134 | } |
135 | 135 | |
@@ -145,15 +145,15 @@ discard block |
||
145 | 145 | Logger::log('Start output response'); |
146 | 146 | ob_start(); |
147 | 147 | $this->setReponseHeaders($contentType, $cookies); |
148 | - header('Content-length: ' . strlen($output)); |
|
148 | + header('Content-length: '.strlen($output)); |
|
149 | 149 | |
150 | 150 | $cache = Cache::needCache(); |
151 | 151 | if (false !== $cache && $this->status_code === Template::STATUS_OK && $this->debug === false) { |
152 | 152 | Logger::log('Saving output response into cache'); |
153 | 153 | $cacheName = $this->cache->getRequestCacheHash(); |
154 | - $tmpDir = substr($cacheName, 0, 2) . DIRECTORY_SEPARATOR . substr($cacheName, 2, 2) . DIRECTORY_SEPARATOR; |
|
155 | - $this->cache->storeData("json" . DIRECTORY_SEPARATOR . $tmpDir . $cacheName, $output); |
|
156 | - $this->cache->storeData("json" . DIRECTORY_SEPARATOR . $tmpDir . $cacheName . ".headers", headers_list(), Cache::JSON); |
|
154 | + $tmpDir = substr($cacheName, 0, 2).DIRECTORY_SEPARATOR.substr($cacheName, 2, 2).DIRECTORY_SEPARATOR; |
|
155 | + $this->cache->storeData("json".DIRECTORY_SEPARATOR.$tmpDir.$cacheName, $output); |
|
156 | + $this->cache->storeData("json".DIRECTORY_SEPARATOR.$tmpDir.$cacheName.".headers", headers_list(), Cache::JSON); |
|
157 | 157 | } |
158 | 158 | echo $output; |
159 | 159 | |
@@ -170,11 +170,11 @@ discard block |
||
170 | 170 | { |
171 | 171 | Logger::log('Close template render'); |
172 | 172 | Security::getInstance()->setSessionKey("lastRequest", array( |
173 | - "url" => Request::getInstance()->getRootUrl() . Request::requestUri(), |
|
173 | + "url" => Request::getInstance()->getRootUrl().Request::requestUri(), |
|
174 | 174 | "ts" => microtime(true), |
175 | 175 | )); |
176 | 176 | Security::getInstance()->updateSession(); |
177 | - Logger::log('End request: ' . Request::requestUri(), LOG_INFO); |
|
177 | + Logger::log('End request: '.Request::requestUri(), LOG_INFO); |
|
178 | 178 | exit; |
179 | 179 | } |
180 | 180 | |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | $dump = ''; |
225 | 225 | try { |
226 | 226 | $dump = $this->tpl->render($tpl, $vars); |
227 | - } catch (\Exception $e) { |
|
227 | + }catch (\Exception $e) { |
|
228 | 228 | Logger::log($e->getMessage(), LOG_ERR); |
229 | 229 | } |
230 | 230 | return $dump; |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | public function regenerateTemplates() |
339 | 339 | { |
340 | 340 | $this->generateTemplatesCache(); |
341 | - $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . "domains.json", Cache::JSON, true); |
|
341 | + $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR."domains.json", Cache::JSON, true); |
|
342 | 342 | $translations = []; |
343 | 343 | if (is_array($domains)) { |
344 | 344 | $translations = $this->parsePathTranslations($domains); |
@@ -360,8 +360,8 @@ discard block |
||
360 | 360 | // force compilation |
361 | 361 | if ($file->isFile()) { |
362 | 362 | try { |
363 | - $this->tpl->load(str_replace($tplDir . '/', '', $file)); |
|
364 | - } catch (\Exception $e) { |
|
363 | + $this->tpl->load(str_replace($tplDir.'/', '', $file)); |
|
364 | + }catch (\Exception $e) { |
|
365 | 365 | Logger::log($e->getMessage(), LOG_ERR, ['file' => $e->getFile(), 'line' => $e->getLine()]); |
366 | 366 | } |
367 | 367 | } |
@@ -435,7 +435,7 @@ discard block |
||
435 | 435 | */ |
436 | 436 | private function loadDomains() |
437 | 437 | { |
438 | - $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', Cache::JSON, true); |
|
438 | + $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'domains.json', Cache::JSON, true); |
|
439 | 439 | if (null !== $domains) { |
440 | 440 | foreach ($domains as $domain => $paths) { |
441 | 441 | $this->addPath($paths['template'], preg_replace('/(@|\/)/', '', $domain)); |
@@ -452,7 +452,7 @@ discard block |
||
452 | 452 | $this->cache = Cache::getInstance(); |
453 | 453 | $loader = new \Twig_Loader_Filesystem(GeneratorHelper::getTemplatePath()); |
454 | 454 | $this->tpl = new \Twig_Environment($loader, array( |
455 | - 'cache' => CACHE_DIR . DIRECTORY_SEPARATOR . 'twig', |
|
455 | + 'cache' => CACHE_DIR.DIRECTORY_SEPARATOR.'twig', |
|
456 | 456 | 'debug' => (bool)$this->debug, |
457 | 457 | 'auto_reload' => Config::getParam('twig.auto_reload', TRUE), |
458 | 458 | )); |
@@ -48,6 +48,9 @@ discard block |
||
48 | 48 | return $this; |
49 | 49 | } |
50 | 50 | |
51 | + /** |
|
52 | + * @param string|null $action |
|
53 | + */ |
|
51 | 54 | public function setAction($action) |
52 | 55 | { |
53 | 56 | $this->action = $action; |
@@ -562,7 +565,7 @@ discard block |
||
562 | 565 | } |
563 | 566 | |
564 | 567 | /** |
565 | - * @param $token_field |
|
568 | + * @param string $token_field |
|
566 | 569 | * @return bool |
567 | 570 | */ |
568 | 571 | protected function existsFormToken($token_field) |
@@ -594,7 +597,7 @@ discard block |
||
594 | 597 | /** |
595 | 598 | * Método que extrae el valor de un campo del formulario del modelo |
596 | 599 | * @param $field |
597 | - * @param $value |
|
600 | + * @param ObjectCollection $value |
|
598 | 601 | * @param $type |
599 | 602 | * @return mixed |
600 | 603 | */ |
@@ -69,8 +69,8 @@ discard block |
||
69 | 69 | public function add($name, array $value = array()) |
70 | 70 | { |
71 | 71 | $this->fields[$name] = $value; |
72 | - $this->fields[$name]['name'] = $this->getName() . "[{$name}]"; |
|
73 | - $this->fields[$name]['id'] = $this->getName() . '_' . $name; |
|
72 | + $this->fields[$name]['name'] = $this->getName()."[{$name}]"; |
|
73 | + $this->fields[$name]['id'] = $this->getName().'_'.$name; |
|
74 | 74 | $this->fields[$name]['placeholder'] = (array_key_exists('placeholder', $value)) ? $value['placeholder'] : $name; |
75 | 75 | $this->fields[$name]['hasLabel'] = (array_key_exists('hasLabel', $value)) ? $value['hasLabel'] : true; |
76 | 76 | return $this; |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | } |
134 | 134 | if ('' !== $hash_orig) { |
135 | 135 | $this->crfs = sha1($hash_orig); |
136 | - $this->add($this->getName() . '_token', array( |
|
136 | + $this->add($this->getName().'_token', array( |
|
137 | 137 | "type" => "hidden", |
138 | 138 | "value" => $this->crfs, |
139 | 139 | )); |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | public function isValid() |
203 | 203 | { |
204 | 204 | $valid = true; |
205 | - $token_field = $this->getName() . '_token'; |
|
205 | + $token_field = $this->getName().'_token'; |
|
206 | 206 | //Controlamos CSRF token |
207 | 207 | if (!$this->existsFormToken($token_field)) { |
208 | 208 | $this->errors[$token_field] = _('Formulario no válido'); |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | $data = array(); |
275 | 275 | if (count($this->fields) > 0) { |
276 | 276 | foreach ($this->fields as $key => $field) { |
277 | - if (self::SEPARATOR !== $key && $key !== ($this->getName() . "_token")) { |
|
277 | + if (self::SEPARATOR !== $key && $key !== ($this->getName()."_token")) { |
|
278 | 278 | $data[$key] = (array_key_exists('value', $field)) ? $field["value"] : null; |
279 | 279 | } |
280 | 280 | } |
@@ -389,8 +389,8 @@ discard block |
||
389 | 389 | $model = $this->getHydratedModel(); |
390 | 390 | $model->save(); |
391 | 391 | $save = true; |
392 | - Logger::getInstance()->infoLog(get_class($this->model) . " guardado con id " . $this->model->getPrimaryKey()); |
|
393 | - } catch (\Exception $e) { |
|
392 | + Logger::getInstance()->infoLog(get_class($this->model)." guardado con id ".$this->model->getPrimaryKey()); |
|
393 | + }catch (\Exception $e) { |
|
394 | 394 | Logger::getInstance()->errorLog($e->getMessage()); |
395 | 395 | throw new FormException($e->getMessage(), $e->getCode(), $e); |
396 | 396 | } |
@@ -409,10 +409,10 @@ discard block |
||
409 | 409 | if (null === $value) { |
410 | 410 | $isEmpty = true; |
411 | 411 | // Empty Array check |
412 | - } else if (is_array($value) && 0 === count($value)) { |
|
412 | + }else if (is_array($value) && 0 === count($value)) { |
|
413 | 413 | $isEmpty = true; |
414 | 414 | // Empty string check |
415 | - } else if (0 === strlen(preg_replace('/(\ |\r|\n)/m', '', $value))) { |
|
415 | + }else if (0 === strlen(preg_replace('/(\ |\r|\n)/m', '', $value))) { |
|
416 | 416 | $isEmpty = true; |
417 | 417 | } |
418 | 418 | |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | && array_key_exists($key, $field) |
440 | 440 | && !array_key_exists('error', $field[$key]) |
441 | 441 | && !empty($field["value"]) |
442 | - && preg_match('/' . $field['pattern'] . '/', $field['value']) === 0 |
|
442 | + && preg_match('/'.$field['pattern'].'/', $field['value']) === 0 |
|
443 | 443 | ) { |
444 | 444 | $this->setError($key, str_replace('%s', "<strong>{$key}</strong>", _("El campo %s no tiene un formato válido"))); |
445 | 445 | $field["error"] = $this->getError($key); |
@@ -461,10 +461,10 @@ discard block |
||
461 | 461 | if (array_key_exists($key, $data[$form_name])) { |
462 | 462 | if (preg_match("/id/i", $key) && ($data[$form_name][$key] === 0 || $data[$form_name][$key] === "%" || $data[$form_name][$key] === "")) { |
463 | 463 | $field["value"] = null; |
464 | - } else { |
|
464 | + }else { |
|
465 | 465 | $field["value"] = $data[$form_name][$key]; |
466 | 466 | } |
467 | - } else { |
|
467 | + }else { |
|
468 | 468 | unset($field["value"]); |
469 | 469 | } |
470 | 470 | return array($data, $field); |
@@ -478,8 +478,8 @@ discard block |
||
478 | 478 | */ |
479 | 479 | private function hydrateModelField($key, $value) |
480 | 480 | { |
481 | - $setter = "set" . ucfirst($key); |
|
482 | - $getter = "get" . ucfirst($key); |
|
481 | + $setter = "set".ucfirst($key); |
|
482 | + $getter = "get".ucfirst($key); |
|
483 | 483 | if (method_exists($this->model, $setter)) { |
484 | 484 | if (method_exists($this->model, $getter)) { |
485 | 485 | $tmp = $this->model->$getter(); |
@@ -504,16 +504,16 @@ discard block |
||
504 | 504 | { |
505 | 505 | //Extraemos el dato del modelo relacionado si existe el getter |
506 | 506 | $method = null; |
507 | - if (array_key_exists('class_data', $field) && method_exists($val, "get" . $field["class_data"])) { |
|
508 | - $class_method = "get" . $field["class_data"]; |
|
507 | + if (array_key_exists('class_data', $field) && method_exists($val, "get".$field["class_data"])) { |
|
508 | + $class_method = "get".$field["class_data"]; |
|
509 | 509 | $class = $val->$class_method(); |
510 | - if (array_key_exists('class_id', $field) && method_exists($class, "get" . $field["class_id"])) { |
|
511 | - $method = "get" . $field["class_id"]; |
|
510 | + if (array_key_exists('class_id', $field) && method_exists($class, "get".$field["class_id"])) { |
|
511 | + $method = "get".$field["class_id"]; |
|
512 | 512 | $data[] = $class->$method(); |
513 | - } else { |
|
513 | + }else { |
|
514 | 514 | $data[] = $class->getPrimaryKey(); |
515 | 515 | } |
516 | - } else { |
|
516 | + }else { |
|
517 | 517 | $data[] = $val; |
518 | 518 | } |
519 | 519 | |
@@ -529,7 +529,7 @@ discard block |
||
529 | 529 | private function extractModelFieldValue($key, $field) |
530 | 530 | { |
531 | 531 | //Extraemos el valor del campo del modelo |
532 | - $method = "get" . ucfirst($key); |
|
532 | + $method = "get".ucfirst($key); |
|
533 | 533 | $type = (array_key_exists('type', $field)) ? $field["type"] : "text"; |
534 | 534 | //Extraemos los campos del modelo |
535 | 535 | if (method_exists($this->model, $method)) { |
@@ -539,16 +539,16 @@ discard block |
||
539 | 539 | //Si es una relación múltiple |
540 | 540 | if ($value instanceof ObjectCollection) { |
541 | 541 | $field = $this->computeModelFieldValue($field, $value, $type); |
542 | - } else { //O una relación unitaria |
|
542 | + }else { //O una relación unitaria |
|
543 | 543 | if (method_exists($value, "__toString")) { |
544 | 544 | $field["value"] = $value; |
545 | 545 | } elseif ($value instanceof \DateTime) { |
546 | 546 | $field["value"] = $value->format("Y-m-d H:i:s"); |
547 | - } else { |
|
547 | + }else { |
|
548 | 548 | $field["value"] = $value->getPrimaryKey(); |
549 | 549 | } |
550 | 550 | } |
551 | - } else { |
|
551 | + }else { |
|
552 | 552 | $field["value"] = $value; |
553 | 553 | } |
554 | 554 | } |
@@ -212,7 +212,9 @@ |
||
212 | 212 | //Validamos los campos del formulario |
213 | 213 | if ($valid && count($this->fields) > 0) { |
214 | 214 | foreach ($this->fields as $key => &$field) { |
215 | - if ($key === $token_field || $key === self::SEPARATOR) continue; |
|
215 | + if ($key === $token_field || $key === self::SEPARATOR) { |
|
216 | + continue; |
|
217 | + } |
|
216 | 218 | list($field, $valid) = $this->checkFieldValidation($field, $key); |
217 | 219 | } |
218 | 220 | } |