@@ -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'); |
@@ -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': |
@@ -42,10 +42,10 @@ discard block |
||
42 | 42 | $array['fields'][] = $field->__toArray(); |
43 | 43 | } |
44 | 44 | usort($array['fields'], function($fieldA, $fieldB) { |
45 | - if((bool)$fieldA['required'] !== (bool)$fieldB['required']) { |
|
46 | - if((bool)$fieldA['required']) { |
|
45 | + if ((bool)$fieldA['required'] !== (bool)$fieldB['required']) { |
|
46 | + if ((bool)$fieldA['required']) { |
|
47 | 47 | return -1; |
48 | - } else { |
|
48 | + }else { |
|
49 | 49 | return 1; |
50 | 50 | } |
51 | 51 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | } |
57 | 57 | return ($aOrder < $bOrder) ? -1 : 1; |
58 | 58 | }); |
59 | - foreach($this->actions as $action) { |
|
59 | + foreach ($this->actions as $action) { |
|
60 | 60 | $array['actions'][] = $action->__toArray(); |
61 | 61 | } |
62 | 62 | return $array; |
@@ -141,7 +141,7 @@ |
||
141 | 141 | $tmp = []; |
142 | 142 | if (null === $node) { |
143 | 143 | $node = $value; |
144 | - } else { |
|
144 | + }else { |
|
145 | 145 | $tmp = $this->getTmpAttribute($node); |
146 | 146 | } |
147 | 147 | if (null !== $node) { |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | $use /= 1024; |
38 | 38 | break; |
39 | 39 | case "MBytes": |
40 | - $use /= (1024 * 1024); |
|
40 | + $use /= (1024*1024); |
|
41 | 41 | break; |
42 | 42 | case "Bytes": |
43 | 43 | default: |
@@ -61,34 +61,34 @@ discard block |
||
61 | 61 | protected function bindWarningAsExceptions() |
62 | 62 | { |
63 | 63 | Inspector::stats('[SystemTrait] Added handlers for errors', Inspector::SCOPE_DEBUG); |
64 | - if(Config::getParam('debug')) { |
|
64 | + if (Config::getParam('debug')) { |
|
65 | 65 | Logger::log('Setting error_reporting as E_ALL'); |
66 | 66 | ini_set('error_reporting', E_ALL); |
67 | 67 | ini_set('display_errors', 1); |
68 | 68 | } |
69 | 69 | //Warning & Notice handler |
70 | - set_error_handler(function ($errno, $errstr, $errfile, $errline) { |
|
70 | + set_error_handler(function($errno, $errstr, $errfile, $errline) { |
|
71 | 71 | Logger::log($errstr, LOG_CRIT, ['file' => $errfile, 'line' => $errline, 'errno' => $errno]); |
72 | 72 | return true; |
73 | 73 | }, E_ALL | E_STRICT | E_DEPRECATED | E_USER_DEPRECATED | E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR); |
74 | 74 | |
75 | - register_shutdown_function(function () { |
|
75 | + register_shutdown_function(function() { |
|
76 | 76 | $error = error_get_last() or json_last_error() or preg_last_error() or \DateTime::getLastErrors(); |
77 | - if( $error !== NULL) { |
|
77 | + if ($error !== NULL) { |
|
78 | 78 | $errno = $error["type"]; |
79 | 79 | $errfile = $error["file"]; |
80 | 80 | $errline = $error["line"]; |
81 | 81 | $errstr = $error["message"]; |
82 | 82 | Logger::log($errstr, LOG_CRIT, ['file' => $errfile, 'line' => $errline, 'errno' => $errno]); |
83 | - if(null !== Config::getParam('log.slack.hook')) { |
|
83 | + if (null !== Config::getParam('log.slack.hook')) { |
|
84 | 84 | SlackHelper::getInstance()->trace($errstr, $errfile, $errline, $error); |
85 | 85 | } |
86 | 86 | } |
87 | 87 | |
88 | - if(self::getTs() > 10 && null !== Config::getParam('log.slack.hook')) { |
|
88 | + if (self::getTs() > 10 && null !== Config::getParam('log.slack.hook')) { |
|
89 | 89 | SlackHelper::getInstance()->trace('Slow service endpoint', '', '', [ |
90 | - 'time' => round(self::getTs(), 3) . ' secs', |
|
91 | - 'memory' => round(self::getMem('MBytes'), 3) . ' Mb', |
|
90 | + 'time' => round(self::getTs(), 3).' secs', |
|
91 | + 'memory' => round(self::getMem('MBytes'), 3).' Mb', |
|
92 | 92 | ]); |
93 | 93 | } |
94 | 94 | return false; |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | Inspector::stats('[SystemTrait] Initializing stats (mem + ts)'); |
104 | 104 | if (null !== $_SERVER && array_key_exists('REQUEST_TIME_FLOAT', $_SERVER)) { |
105 | 105 | $this->ts = (float)$_SERVER['REQUEST_TIME_FLOAT']; |
106 | - } else { |
|
106 | + }else { |
|
107 | 107 | $this->ts = PSFS_START_TS; |
108 | 108 | } |
109 | 109 | $this->mem = PSFS_START_MEM; |