@@ -18,7 +18,7 @@ |
||
18 | 18 | |
19 | 19 | /** |
20 | 20 | * @param string $default |
21 | - * @return array|mixed|string |
|
21 | + * @return string |
|
22 | 22 | */ |
23 | 23 | private static function extractLocale($default = null) |
24 | 24 | { |
@@ -30,21 +30,21 @@ discard block |
||
30 | 30 | list($BrowserLocales[$i]) = explode(";", $BrowserLocales[$i]); //trick for "en;q=0.8" |
31 | 31 | } |
32 | 32 | $locale = array_shift($BrowserLocales); |
33 | - } else { |
|
33 | + }else { |
|
34 | 34 | $locale = strtolower($locale); |
35 | 35 | } |
36 | 36 | if (false !== strpos($locale, '_')) { |
37 | 37 | $locale = explode('_', $locale); |
38 | 38 | if ($locale[0] == 'en') { |
39 | - $locale = $locale[0] . '_GB'; |
|
40 | - } else { |
|
41 | - $locale = $locale[0] . '_' . strtoupper($locale[1]); |
|
39 | + $locale = $locale[0].'_GB'; |
|
40 | + }else { |
|
41 | + $locale = $locale[0].'_'.strtoupper($locale[1]); |
|
42 | 42 | } |
43 | - } else { |
|
43 | + }else { |
|
44 | 44 | if (strtolower($locale) === 'en') { |
45 | 45 | $locale = 'en_GB'; |
46 | - } else { |
|
47 | - $locale = $locale . '_' . strtoupper($locale); |
|
46 | + }else { |
|
47 | + $locale = $locale.'_'.strtoupper($locale); |
|
48 | 48 | } |
49 | 49 | } |
50 | 50 | if (!in_array($locale, self::$langs)) { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | $translations = array(); |
66 | 66 | if (file_exists($absoluteTranslationFileName)) { |
67 | 67 | @include($absoluteTranslationFileName); |
68 | - } else { |
|
68 | + }else { |
|
69 | 69 | Cache::getInstance()->storeData($absoluteTranslationFileName, "<?php \$translations = array();\n", Cache::TEXT, TRUE); |
70 | 70 | } |
71 | 71 | |
@@ -78,13 +78,13 @@ discard block |
||
78 | 78 | public static function setLocale() |
79 | 79 | { |
80 | 80 | $locale = self::extractLocale('es_ES'); |
81 | - Logger::log('Set locale to project [' . $locale . ']'); |
|
81 | + Logger::log('Set locale to project ['.$locale.']'); |
|
82 | 82 | // Load translations |
83 | - putenv("LC_ALL=" . $locale); |
|
83 | + putenv("LC_ALL=".$locale); |
|
84 | 84 | setlocale(LC_ALL, $locale); |
85 | 85 | // Load the locale path |
86 | - $locale_path = BASE_DIR . DIRECTORY_SEPARATOR . 'locale'; |
|
87 | - Logger::log('Set locale dir ' . $locale_path); |
|
86 | + $locale_path = BASE_DIR.DIRECTORY_SEPARATOR.'locale'; |
|
87 | + Logger::log('Set locale dir '.$locale_path); |
|
88 | 88 | GeneratorHelper::createDir($locale_path); |
89 | 89 | bindtextdomain('translations', $locale_path); |
90 | 90 | textdomain('translations'); |
@@ -119,9 +119,9 @@ discard block |
||
119 | 119 | */ |
120 | 120 | public static function checkI18Class($namespace) { |
121 | 121 | $isI18n = false; |
122 | - if(preg_match('/I18n$/i', $namespace)) { |
|
122 | + if (preg_match('/I18n$/i', $namespace)) { |
|
123 | 123 | $parentClass = preg_replace('/I18n$/i', '', $namespace); |
124 | - if(Router::exists($parentClass)) { |
|
124 | + if (Router::exists($parentClass)) { |
|
125 | 125 | $isI18n = true; |
126 | 126 | } |
127 | 127 | } |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | $dump = ''; |
114 | 114 | try { |
115 | 115 | $dump = $this->tpl->render($tpl, $vars); |
116 | - } catch (\Exception $e) { |
|
116 | + }catch (\Exception $e) { |
|
117 | 117 | Logger::log($e->getMessage(), LOG_ERR); |
118 | 118 | } |
119 | 119 | return $dump; |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | public function regenerateTemplates() |
141 | 141 | { |
142 | 142 | $this->generateTemplatesCache(); |
143 | - $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . "domains.json", Cache::JSON, true); |
|
143 | + $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR."domains.json", Cache::JSON, true); |
|
144 | 144 | $translations = []; |
145 | 145 | if (is_array($domains)) { |
146 | 146 | $translations = $this->parsePathTranslations($domains); |
@@ -162,8 +162,8 @@ discard block |
||
162 | 162 | // force compilation |
163 | 163 | if ($file->isFile()) { |
164 | 164 | try { |
165 | - $this->tpl->load(str_replace($tplDir . '/', '', $file)); |
|
166 | - } catch (\Exception $e) { |
|
165 | + $this->tpl->load(str_replace($tplDir.'/', '', $file)); |
|
166 | + }catch (\Exception $e) { |
|
167 | 167 | Logger::log($e->getMessage(), LOG_ERR, ['file' => $e->getFile(), 'line' => $e->getLine()]); |
168 | 168 | } |
169 | 169 | } |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | 'getFlash' => TemplateFunctions::GET_FLASH_FUNCTION, |
225 | 225 | 'getQuery' => TemplateFunctions::GET_QUERY_FUNCTION, |
226 | 226 | ]; |
227 | - foreach($functions as $name => $function) { |
|
227 | + foreach ($functions as $name => $function) { |
|
228 | 228 | $this->addTemplateFunction($name, $function); |
229 | 229 | } |
230 | 230 | } |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | */ |
244 | 244 | private function loadDomains() |
245 | 245 | { |
246 | - $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', Cache::JSON, true); |
|
246 | + $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'domains.json', Cache::JSON, true); |
|
247 | 247 | if (null !== $domains) { |
248 | 248 | foreach ($domains as $domain => $paths) { |
249 | 249 | $this->addPath($paths['template'], preg_replace('/(@|\/)/', '', $domain)); |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | { |
259 | 259 | $loader = new \Twig_Loader_Filesystem(GeneratorHelper::getTemplatePath()); |
260 | 260 | $this->tpl = new \Twig_Environment($loader, array( |
261 | - 'cache' => CACHE_DIR . DIRECTORY_SEPARATOR . 'twig', |
|
261 | + 'cache' => CACHE_DIR.DIRECTORY_SEPARATOR.'twig', |
|
262 | 262 | 'debug' => (bool)$this->debug, |
263 | 263 | 'auto_reload' => Config::getParam('twig.autoreload', TRUE), |
264 | 264 | )); |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | session_start(); |
74 | 74 | } |
75 | 75 | // Fix for phpunits |
76 | - if(!isset($_SESSION)) { |
|
76 | + if (!isset($_SESSION)) { |
|
77 | 77 | $_SESSION = []; |
78 | 78 | } |
79 | 79 | } |
@@ -133,12 +133,12 @@ discard block |
||
133 | 133 | { |
134 | 134 | $saved = true; |
135 | 135 | try { |
136 | - $admins = Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'admins.json', Cache::JSONGZ, true) ?: []; |
|
137 | - $admins[$user['username']]['hash'] = sha1($user['username'] . $user['password']); |
|
136 | + $admins = Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'admins.json', Cache::JSONGZ, true) ?: []; |
|
137 | + $admins[$user['username']]['hash'] = sha1($user['username'].$user['password']); |
|
138 | 138 | $admins[$user['username']]['profile'] = $user['profile']; |
139 | 139 | |
140 | - Cache::getInstance()->storeData(CONFIG_DIR . DIRECTORY_SEPARATOR . 'admins.json', $admins, Cache::JSONGZ, true); |
|
141 | - } catch(\Exception $e) { |
|
140 | + Cache::getInstance()->storeData(CONFIG_DIR.DIRECTORY_SEPARATOR.'admins.json', $admins, Cache::JSONGZ, true); |
|
141 | + }catch (\Exception $e) { |
|
142 | 142 | Logger::log($e->getMessage(), LOG_ERR); |
143 | 143 | $saved = false; |
144 | 144 | } |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | */ |
176 | 176 | public function getAdmins() |
177 | 177 | { |
178 | - return Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'admins.json', Cache::JSONGZ, true); |
|
178 | + return Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'admins.json', Cache::JSONGZ, true); |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | /** |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | } |
204 | 204 | if (!empty($user) && !empty($admins[$user])) { |
205 | 205 | $auth = $admins[$user]['hash']; |
206 | - $this->authorized = ($auth == sha1($user . $pass)); |
|
206 | + $this->authorized = ($auth == sha1($user.$pass)); |
|
207 | 207 | if ($this->authorized) { |
208 | 208 | $this->admin = array( |
209 | 209 | 'alias' => $user, |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | ); |
212 | 212 | $this->setSessionKey(self::ADMIN_ID_TOKEN, serialize($this->admin)); |
213 | 213 | } |
214 | - } else { |
|
214 | + }else { |
|
215 | 215 | $this->admin = null; |
216 | 216 | $this->setSessionKey(self::ADMIN_ID_TOKEN, null); |
217 | 217 | } |
@@ -35,15 +35,15 @@ |
||
35 | 35 | /** @var \ReflectionProperty $property */ |
36 | 36 | foreach ($properties as $property) { |
37 | 37 | $value = $property->getValue($this); |
38 | - if(is_object($value) && method_exists($value, 'toArray')) { |
|
38 | + if (is_object($value) && method_exists($value, 'toArray')) { |
|
39 | 39 | $dto[$property->getName()] = $value->toArray(); |
40 | - } else { |
|
40 | + }else { |
|
41 | 41 | $dto[$property->getName()] = $property->getValue($this); |
42 | 42 | } |
43 | 43 | } |
44 | 44 | } |
45 | - } catch (\Exception $e) { |
|
46 | - Logger::log(get_class($this) . ': ' . $e->getMessage(), LOG_ERR); |
|
45 | + }catch (\Exception $e) { |
|
46 | + Logger::log(get_class($this).': '.$e->getMessage(), LOG_ERR); |
|
47 | 47 | } |
48 | 48 | return $dto; |
49 | 49 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function generateModule() |
36 | 36 | { |
37 | - Logger::log("Arranque generador de módulos al solicitar " . $this->getRequest()->getRequestUri()); |
|
37 | + Logger::log("Arranque generador de módulos al solicitar ".$this->getRequest()->getRequestUri()); |
|
38 | 38 | /* @var $form \PSFS\base\config\ConfigForm */ |
39 | 39 | $form = new ModuleForm(); |
40 | 40 | $form->build(); |
@@ -65,8 +65,8 @@ discard block |
||
65 | 65 | $this->gen->createStructureModule($module, false, $type, $apiClass); |
66 | 66 | Security::getInstance()->setFlash("callback_message", str_replace("%s", $module, _("Módulo %s generado correctamente"))); |
67 | 67 | Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-module", true)); |
68 | - } catch (\Exception $e) { |
|
69 | - Logger::getInstance()->infoLog($e->getMessage() . " [" . $e->getFile() . ":" . $e->getLine() . "]"); |
|
68 | + }catch (\Exception $e) { |
|
69 | + Logger::getInstance()->infoLog($e->getMessage()." [".$e->getFile().":".$e->getLine()."]"); |
|
70 | 70 | Security::getInstance()->setFlash("callback_message", $e->getMessage()); |
71 | 71 | } |
72 | 72 | } |
@@ -77,14 +77,14 @@ discard block |
||
77 | 77 | |
78 | 78 | public static function createRoot($path = WEB_DIR, OutputInterface $output = null) { |
79 | 79 | |
80 | - if(null === $output) { |
|
80 | + if (null === $output) { |
|
81 | 81 | $output = new ConsoleOutput(); |
82 | 82 | } |
83 | 83 | |
84 | 84 | GeneratorHelper::createDir($path); |
85 | 85 | $paths = array("js", "css", "img", "media", "font"); |
86 | 86 | foreach ($paths as $htmlPath) { |
87 | - GeneratorHelper::createDir($path . DIRECTORY_SEPARATOR . $htmlPath); |
|
87 | + GeneratorHelper::createDir($path.DIRECTORY_SEPARATOR.$htmlPath); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | // Generates the root needed files |
@@ -96,18 +96,18 @@ discard block |
||
96 | 96 | 'robots' => 'robots.txt', |
97 | 97 | ]; |
98 | 98 | foreach ($files as $templates => $filename) { |
99 | - $text = Template::getInstance()->dump("generator/html/" . $templates . '.html.twig'); |
|
100 | - if (false === file_put_contents($path . DIRECTORY_SEPARATOR . $filename, $text)) { |
|
101 | - $output->writeln('Can\t create the file ' . $filename); |
|
102 | - } else { |
|
103 | - $output->writeln($filename . ' created successfully'); |
|
99 | + $text = Template::getInstance()->dump("generator/html/".$templates.'.html.twig'); |
|
100 | + if (false === file_put_contents($path.DIRECTORY_SEPARATOR.$filename, $text)) { |
|
101 | + $output->writeln('Can\t create the file '.$filename); |
|
102 | + }else { |
|
103 | + $output->writeln($filename.' created successfully'); |
|
104 | 104 | } |
105 | 105 | } |
106 | 106 | |
107 | 107 | //Export base locale translations |
108 | - if (!file_exists(BASE_DIR . DIRECTORY_SEPARATOR . 'locale')) { |
|
109 | - GeneratorHelper::createDir(BASE_DIR . DIRECTORY_SEPARATOR . 'locale'); |
|
110 | - GeneratorService::copyr(SOURCE_DIR . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'locale', BASE_DIR . DIRECTORY_SEPARATOR . 'locale'); |
|
108 | + if (!file_exists(BASE_DIR.DIRECTORY_SEPARATOR.'locale')) { |
|
109 | + GeneratorHelper::createDir(BASE_DIR.DIRECTORY_SEPARATOR.'locale'); |
|
110 | + GeneratorService::copyr(SOURCE_DIR.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'locale', BASE_DIR.DIRECTORY_SEPARATOR.'locale'); |
|
111 | 111 | } |
112 | 112 | } |
113 | 113 | } |
114 | 114 | \ No newline at end of file |
@@ -82,9 +82,9 @@ |
||
82 | 82 | "class" => "btn-warning md-default", |
83 | 83 | "icon" => "fa-plus", |
84 | 84 | ]; |
85 | - if(Config::getParam('admin.version', 'v1') === 'v1') { |
|
86 | - $add["onclick"] = "javascript:addNewField(document.getElementById('" . $this->getName() . "'));"; |
|
87 | - } else { |
|
85 | + if (Config::getParam('admin.version', 'v1') === 'v1') { |
|
86 | + $add["onclick"] = "javascript:addNewField(document.getElementById('".$this->getName()."'));"; |
|
87 | + }else { |
|
88 | 88 | $add["ng-click"] = "addNewField()"; |
89 | 89 | } |
90 | 90 | $this->addButton('submit', _("Guardar configuración"), "submit", array( |
@@ -2,7 +2,6 @@ |
||
2 | 2 | namespace PSFS\base\types\traits; |
3 | 3 | |
4 | 4 | use PSFS\base\Logger; |
5 | -use PSFS\base\Request; |
|
6 | 5 | |
7 | 6 | /** |
8 | 7 | * Class SystemTrait |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | $use /= 1024; |
36 | 36 | break; |
37 | 37 | case "MBytes": |
38 | - $use /= (1024 * 1024); |
|
38 | + $use /= (1024*1024); |
|
39 | 39 | break; |
40 | 40 | case "Bytes": |
41 | 41 | default: |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | { |
61 | 61 | Logger::log('Added handlers for errors'); |
62 | 62 | //Warning & Notice handler |
63 | - set_error_handler(function ($errno, $errstr, $errfile, $errline) { |
|
63 | + set_error_handler(function($errno, $errstr, $errfile, $errline) { |
|
64 | 64 | Logger::log($errstr, LOG_CRIT, ['file' => $errfile, 'line' => $errline, 'errno' => $errno]); |
65 | 65 | return true; |
66 | 66 | }, E_ALL | E_STRICT); |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | Logger::log('Initializing stats (mem + ts)'); |
75 | 75 | if (null !== $_SERVER && array_key_exists('REQUEST_TIME_FLOAT', $_SERVER)) { |
76 | 76 | $this->ts = (float)$_SERVER['REQUEST_TIME_FLOAT']; |
77 | - } else { |
|
77 | + }else { |
|
78 | 78 | $this->ts = PSFS_START_TS; |
79 | 79 | } |
80 | 80 | $this->mem = PSFS_START_MEM; |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | /** |
28 | 28 | * Método que revisa las traducciones directorio a directorio |
29 | - * @param $path |
|
29 | + * @param string $path |
|
30 | 30 | * @param $locale |
31 | 31 | * @return array |
32 | 32 | */ |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | * Servicio que genera la estructura base |
99 | 99 | * @param string $module |
100 | 100 | * @param boolean $mod_path |
101 | - * @return boolean |
|
101 | + * @return boolean|null |
|
102 | 102 | */ |
103 | 103 | private function createModulePathTree($module, $mod_path) |
104 | 104 | { |
@@ -462,7 +462,7 @@ discard block |
||
462 | 462 | * Method that copy resources recursively |
463 | 463 | * @param string $dest |
464 | 464 | * @param boolean $force |
465 | - * @param $filename_path |
|
465 | + * @param string $filename_path |
|
466 | 466 | * @param boolean $debug |
467 | 467 | */ |
468 | 468 | public static function copyResources($dest, $force, $filename_path, $debug) |
@@ -33,24 +33,24 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public static function findTranslations($path, $locale) |
35 | 35 | { |
36 | - $locale_path = realpath(BASE_DIR . DIRECTORY_SEPARATOR . 'locale'); |
|
37 | - $locale_path .= DIRECTORY_SEPARATOR . $locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR; |
|
36 | + $locale_path = realpath(BASE_DIR.DIRECTORY_SEPARATOR.'locale'); |
|
37 | + $locale_path .= DIRECTORY_SEPARATOR.$locale.DIRECTORY_SEPARATOR.'LC_MESSAGES'.DIRECTORY_SEPARATOR; |
|
38 | 38 | |
39 | 39 | $translations = array(); |
40 | 40 | if (file_exists($path)) { |
41 | 41 | $d = dir($path); |
42 | 42 | while (false !== ($dir = $d->read())) { |
43 | 43 | GeneratorHelper::createDir($locale_path); |
44 | - if (!file_exists($locale_path . 'translations.po')) { |
|
45 | - file_put_contents($locale_path . 'translations.po', ''); |
|
44 | + if (!file_exists($locale_path.'translations.po')) { |
|
45 | + file_put_contents($locale_path.'translations.po', ''); |
|
46 | 46 | } |
47 | - $inspect_path = realpath($path . DIRECTORY_SEPARATOR . $dir); |
|
48 | - $cmd_php = "export PATH=\$PATH:/opt/local/bin; xgettext " . |
|
49 | - $inspect_path . DIRECTORY_SEPARATOR . |
|
47 | + $inspect_path = realpath($path.DIRECTORY_SEPARATOR.$dir); |
|
48 | + $cmd_php = "export PATH=\$PATH:/opt/local/bin; xgettext ". |
|
49 | + $inspect_path.DIRECTORY_SEPARATOR. |
|
50 | 50 | "*.php --from-code=UTF-8 -j -L PHP --debug --force-po -o {$locale_path}translations.po"; |
51 | - if (is_dir($path . DIRECTORY_SEPARATOR . $dir) && preg_match('/^\./', $dir) == 0) { |
|
52 | - $res = _('Revisando directorio: ') . $inspect_path; |
|
53 | - $res .= _('Comando ejecutado: ') . $cmd_php; |
|
51 | + if (is_dir($path.DIRECTORY_SEPARATOR.$dir) && preg_match('/^\./', $dir) == 0) { |
|
52 | + $res = _('Revisando directorio: ').$inspect_path; |
|
53 | + $res .= _('Comando ejecutado: ').$cmd_php; |
|
54 | 54 | $res .= shell_exec($cmd_php); |
55 | 55 | usleep(10); |
56 | 56 | $translations[] = $res; |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | */ |
72 | 72 | public function createStructureModule($module, $force = false, $type = "", $apiClass = "") |
73 | 73 | { |
74 | - $mod_path = CORE_DIR . DIRECTORY_SEPARATOR; |
|
74 | + $mod_path = CORE_DIR.DIRECTORY_SEPARATOR; |
|
75 | 75 | $module = ucfirst($module); |
76 | 76 | $this->createModulePath($module, $mod_path); |
77 | 77 | $this->createModulePathTree($module, $mod_path); |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | // Creates the src folder |
93 | 93 | GeneratorHelper::createDir($mod_path); |
94 | 94 | // Create module path |
95 | - GeneratorHelper::createDir($mod_path . $module); |
|
95 | + GeneratorHelper::createDir($mod_path.$module); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
@@ -107,16 +107,16 @@ discard block |
||
107 | 107 | $this->log->infoLog("Generamos la estructura"); |
108 | 108 | $paths = [ |
109 | 109 | "Api", "Api/base", "Config", "Controller", "Models", "Public", "Templates", "Services", "Test", "Doc", |
110 | - "Locale", "Locale/" . Config::getParam('default.locale', 'es_ES'), "Locale/" . Config::getParam('default.locale', 'es_ES') . "/LC_MESSAGES" |
|
110 | + "Locale", "Locale/".Config::getParam('default.locale', 'es_ES'), "Locale/".Config::getParam('default.locale', 'es_ES')."/LC_MESSAGES" |
|
111 | 111 | ]; |
112 | - $module_path = $mod_path . $module; |
|
112 | + $module_path = $mod_path.$module; |
|
113 | 113 | foreach ($paths as $path) { |
114 | - GeneratorHelper::createDir($module_path . DIRECTORY_SEPARATOR . $path); |
|
114 | + GeneratorHelper::createDir($module_path.DIRECTORY_SEPARATOR.$path); |
|
115 | 115 | } |
116 | 116 | //Creamos las carpetas de los assets |
117 | 117 | $htmlPaths = array("css", "js", "img", "media", "font"); |
118 | 118 | foreach ($htmlPaths as $path) { |
119 | - GeneratorHelper::createDir($module_path . DIRECTORY_SEPARATOR . "Public" . DIRECTORY_SEPARATOR . $path); |
|
119 | + GeneratorHelper::createDir($module_path.DIRECTORY_SEPARATOR."Public".DIRECTORY_SEPARATOR.$path); |
|
120 | 120 | } |
121 | 121 | } |
122 | 122 | |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | */ |
130 | 130 | private function createModuleBaseFiles($module, $mod_path, $force = false, $controllerType = '') |
131 | 131 | { |
132 | - $module_path = $mod_path . $module; |
|
132 | + $module_path = $mod_path.$module; |
|
133 | 133 | $this->generateControllerTemplate($module, $module_path, $force, $controllerType); |
134 | 134 | $this->generateServiceTemplate($module, $module_path, $force); |
135 | 135 | $this->genereateAutoloaderTemplate($module, $module_path, $force); |
@@ -147,28 +147,28 @@ discard block |
||
147 | 147 | */ |
148 | 148 | private function createModuleModels($module, $path) |
149 | 149 | { |
150 | - $module_path = $path . $module; |
|
151 | - $module_path = str_replace(CORE_DIR . DIRECTORY_SEPARATOR, '', $module_path); |
|
150 | + $module_path = $path.$module; |
|
151 | + $module_path = str_replace(CORE_DIR.DIRECTORY_SEPARATOR, '', $module_path); |
|
152 | 152 | //Generamos las clases de propel y la configuración |
153 | - $exec = "export PATH=\$PATH:/opt/local/bin; " . BASE_DIR . DIRECTORY_SEPARATOR . |
|
154 | - "vendor" . DIRECTORY_SEPARATOR . "bin" . DIRECTORY_SEPARATOR . "propel "; |
|
155 | - $schemaOpt = " --schema-dir=" . CORE_DIR . DIRECTORY_SEPARATOR . $module_path . |
|
156 | - DIRECTORY_SEPARATOR . "Config"; |
|
157 | - $opt = " --config-dir=" . CORE_DIR . DIRECTORY_SEPARATOR . $module_path . DIRECTORY_SEPARATOR . |
|
158 | - "Config --output-dir=" . CORE_DIR . " --verbose"; |
|
159 | - $this->log->infoLog("[GENERATOR] Ejecutamos propel:\n" . $exec . "build" . $opt . $schemaOpt); |
|
160 | - $ret = shell_exec($exec . "build" . $opt . $schemaOpt); |
|
153 | + $exec = "export PATH=\$PATH:/opt/local/bin; ".BASE_DIR.DIRECTORY_SEPARATOR. |
|
154 | + "vendor".DIRECTORY_SEPARATOR."bin".DIRECTORY_SEPARATOR."propel "; |
|
155 | + $schemaOpt = " --schema-dir=".CORE_DIR.DIRECTORY_SEPARATOR.$module_path. |
|
156 | + DIRECTORY_SEPARATOR."Config"; |
|
157 | + $opt = " --config-dir=".CORE_DIR.DIRECTORY_SEPARATOR.$module_path.DIRECTORY_SEPARATOR. |
|
158 | + "Config --output-dir=".CORE_DIR." --verbose"; |
|
159 | + $this->log->infoLog("[GENERATOR] Ejecutamos propel:\n".$exec."build".$opt.$schemaOpt); |
|
160 | + $ret = shell_exec($exec."build".$opt.$schemaOpt); |
|
161 | 161 | |
162 | 162 | $this->log->infoLog("[GENERATOR] Generamos clases invocando a propel:\n $ret"); |
163 | - $ret = shell_exec($exec . "sql:build" . $opt . " --output-dir=" . CORE_DIR . DIRECTORY_SEPARATOR . |
|
164 | - $module_path . DIRECTORY_SEPARATOR . "Config" . $schemaOpt); |
|
163 | + $ret = shell_exec($exec."sql:build".$opt." --output-dir=".CORE_DIR.DIRECTORY_SEPARATOR. |
|
164 | + $module_path.DIRECTORY_SEPARATOR."Config".$schemaOpt); |
|
165 | 165 | $this->log->infoLog("[GENERATOR] Generamos sql invocando a propel:\n $ret"); |
166 | 166 | |
167 | 167 | $configTemplate = $this->tpl->dump("generator/config.propel.template.twig", array( |
168 | 168 | "module" => $module, |
169 | 169 | )); |
170 | - $this->writeTemplateToFile($configTemplate, CORE_DIR . DIRECTORY_SEPARATOR . $module_path . DIRECTORY_SEPARATOR . "Config" . |
|
171 | - DIRECTORY_SEPARATOR . "config.php", true); |
|
170 | + $this->writeTemplateToFile($configTemplate, CORE_DIR.DIRECTORY_SEPARATOR.$module_path.DIRECTORY_SEPARATOR."Config". |
|
171 | + DIRECTORY_SEPARATOR."config.php", true); |
|
172 | 172 | $this->log->infoLog("Generado config genérico para propel:\n $ret"); |
173 | 173 | } |
174 | 174 | |
@@ -189,28 +189,28 @@ discard block |
||
189 | 189 | "namespace" => preg_replace('/(\\\|\/)/', '\\', $module), |
190 | 190 | "url" => preg_replace('/(\\\|\/)/', '/', $module), |
191 | 191 | "class" => $class, |
192 | - "controllerType" => $class . "Base", |
|
192 | + "controllerType" => $class."Base", |
|
193 | 193 | "is_base" => false |
194 | 194 | )); |
195 | - $controller = $this->writeTemplateToFile($controllerBody, $mod_path . DIRECTORY_SEPARATOR . "Controller" . |
|
196 | - DIRECTORY_SEPARATOR . "{$class}Controller.php", $force); |
|
195 | + $controller = $this->writeTemplateToFile($controllerBody, $mod_path.DIRECTORY_SEPARATOR."Controller". |
|
196 | + DIRECTORY_SEPARATOR."{$class}Controller.php", $force); |
|
197 | 197 | |
198 | 198 | $controllerBody = $this->tpl->dump("generator/controller.template.twig", array( |
199 | 199 | "module" => $module, |
200 | 200 | "namespace" => preg_replace('/(\\\|\/)/', '\\', $module), |
201 | 201 | "url" => preg_replace('/(\\\|\/)/', '/', $module), |
202 | - "class" => $class . "Base", |
|
202 | + "class" => $class."Base", |
|
203 | 203 | "service" => $class, |
204 | 204 | "controllerType" => $controllerType, |
205 | 205 | "is_base" => true, |
206 | 206 | "domain" => $class, |
207 | 207 | )); |
208 | - $controllerBase = $this->writeTemplateToFile($controllerBody, $mod_path . DIRECTORY_SEPARATOR . "Controller" . |
|
209 | - DIRECTORY_SEPARATOR . "base" . DIRECTORY_SEPARATOR . "{$class}BaseController.php", true); |
|
208 | + $controllerBase = $this->writeTemplateToFile($controllerBody, $mod_path.DIRECTORY_SEPARATOR."Controller". |
|
209 | + DIRECTORY_SEPARATOR."base".DIRECTORY_SEPARATOR."{$class}BaseController.php", true); |
|
210 | 210 | |
211 | - $filename = $mod_path . DIRECTORY_SEPARATOR . "Test" . DIRECTORY_SEPARATOR . "{$class}Test.php"; |
|
211 | + $filename = $mod_path.DIRECTORY_SEPARATOR."Test".DIRECTORY_SEPARATOR."{$class}Test.php"; |
|
212 | 212 | $test = true; |
213 | - if(!file_exists($filename)) { |
|
213 | + if (!file_exists($filename)) { |
|
214 | 214 | $testTemplate = $this->tpl->dump("generator/testCase.template.twig", array( |
215 | 215 | "module" => $module, |
216 | 216 | "namespace" => preg_replace('/(\\\|\/)/', '\\', $module), |
@@ -231,8 +231,8 @@ discard block |
||
231 | 231 | private function generateBaseApiTemplate($module, $mod_path, $force = false, $apiClass = "") |
232 | 232 | { |
233 | 233 | $created = true; |
234 | - $modelPath = $mod_path . $module . DIRECTORY_SEPARATOR . 'Models'; |
|
235 | - $api_path = $mod_path . $module . DIRECTORY_SEPARATOR . 'Api'; |
|
234 | + $modelPath = $mod_path.$module.DIRECTORY_SEPARATOR.'Models'; |
|
235 | + $api_path = $mod_path.$module.DIRECTORY_SEPARATOR.'Api'; |
|
236 | 236 | if (file_exists($modelPath)) { |
237 | 237 | $dir = dir($modelPath); |
238 | 238 | while ($file = $dir->read()) { |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | //Generamos el fichero de configuración |
261 | 261 | $this->log->infoLog("Generamos fichero vacío de configuración"); |
262 | 262 | return $this->writeTemplateToFile("<?php\n\t", |
263 | - $mod_path . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "config.php", |
|
263 | + $mod_path.DIRECTORY_SEPARATOR."Config".DIRECTORY_SEPARATOR."config.php", |
|
264 | 264 | $force); |
265 | 265 | } |
266 | 266 | |
@@ -275,10 +275,10 @@ discard block |
||
275 | 275 | //Generamos el fichero de configuración |
276 | 276 | $this->log->infoLog("Generamos ficheros para assets base"); |
277 | 277 | $css = $this->writeTemplateToFile("/* CSS3 STYLES */\n\n", |
278 | - $mod_path . DIRECTORY_SEPARATOR . "Public" . DIRECTORY_SEPARATOR . "css" . DIRECTORY_SEPARATOR . "styles.css", |
|
278 | + $mod_path.DIRECTORY_SEPARATOR."Public".DIRECTORY_SEPARATOR."css".DIRECTORY_SEPARATOR."styles.css", |
|
279 | 279 | $force); |
280 | 280 | $js = $this->writeTemplateToFile("/* APP MODULE JS */\n\n(function() {\n\t'use strict';\n})();", |
281 | - $mod_path . DIRECTORY_SEPARATOR . "Public" . DIRECTORY_SEPARATOR . "js" . DIRECTORY_SEPARATOR . "app.js", |
|
281 | + $mod_path.DIRECTORY_SEPARATOR."Public".DIRECTORY_SEPARATOR."js".DIRECTORY_SEPARATOR."app.js", |
|
282 | 282 | $force); |
283 | 283 | return ($css && $js); |
284 | 284 | } |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | "class" => $class, |
301 | 301 | )); |
302 | 302 | return $this->writeTemplateToFile($controller, |
303 | - $mod_path . DIRECTORY_SEPARATOR . "Services" . DIRECTORY_SEPARATOR . "{$class}Service.php", |
|
303 | + $mod_path.DIRECTORY_SEPARATOR."Services".DIRECTORY_SEPARATOR."{$class}Service.php", |
|
304 | 304 | $force); |
305 | 305 | } |
306 | 306 | |
@@ -319,13 +319,13 @@ discard block |
||
319 | 319 | "autoloader" => preg_replace('/(\\\|\/)/', '_', $module), |
320 | 320 | "regex" => preg_replace('/(\\\|\/)/m', '\\\\\\\\\\\\', $module), |
321 | 321 | )); |
322 | - $autoload = $this->writeTemplateToFile($autoloader, $mod_path . DIRECTORY_SEPARATOR . "autoload.php", $force); |
|
322 | + $autoload = $this->writeTemplateToFile($autoloader, $mod_path.DIRECTORY_SEPARATOR."autoload.php", $force); |
|
323 | 323 | |
324 | 324 | $this->log->infoLog("Generamos el phpunit"); |
325 | 325 | $phpUnitTemplate = $this->tpl->dump("generator/phpunit.template.twig", array( |
326 | 326 | "module" => $module, |
327 | 327 | )); |
328 | - $phpunit = $this->writeTemplateToFile($phpUnitTemplate, $mod_path . DIRECTORY_SEPARATOR . "phpunit.xml.dist", $force); |
|
328 | + $phpunit = $this->writeTemplateToFile($phpUnitTemplate, $mod_path.DIRECTORY_SEPARATOR."phpunit.xml.dist", $force); |
|
329 | 329 | return $autoload && $phpunit; |
330 | 330 | } |
331 | 331 | |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | "db" => $this->config->get("db_name"), |
347 | 347 | )); |
348 | 348 | return $this->writeTemplateToFile($schema, |
349 | - $mod_path . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "schema.xml", |
|
349 | + $mod_path.DIRECTORY_SEPARATOR."Config".DIRECTORY_SEPARATOR."schema.xml", |
|
350 | 350 | $force); |
351 | 351 | } |
352 | 352 | |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | "namespace" => preg_replace('/(\\\|\/)/', '', $module), |
365 | 365 | )); |
366 | 366 | return $this->writeTemplateToFile($build_properties, |
367 | - $mod_path . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "propel.yml", |
|
367 | + $mod_path.DIRECTORY_SEPARATOR."Config".DIRECTORY_SEPARATOR."propel.yml", |
|
368 | 368 | $force); |
369 | 369 | } |
370 | 370 | |
@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | "module" => $module, |
383 | 383 | )); |
384 | 384 | return $this->writeTemplateToFile($index, |
385 | - $mod_path . DIRECTORY_SEPARATOR . "Templates" . DIRECTORY_SEPARATOR . "index.html.twig", |
|
385 | + $mod_path.DIRECTORY_SEPARATOR."Templates".DIRECTORY_SEPARATOR."index.html.twig", |
|
386 | 386 | $force); |
387 | 387 | } |
388 | 388 | |
@@ -400,11 +400,11 @@ discard block |
||
400 | 400 | try { |
401 | 401 | $this->cache->storeData($filename, $fileContent, Cache::TEXT, true); |
402 | 402 | $created = true; |
403 | - } catch (\Exception $e) { |
|
403 | + }catch (\Exception $e) { |
|
404 | 404 | $this->log->errorLog($e->getMessage()); |
405 | 405 | } |
406 | - } else { |
|
407 | - $this->log->errorLog($filename . _(' not exists or cant write')); |
|
406 | + }else { |
|
407 | + $this->log->errorLog($filename._(' not exists or cant write')); |
|
408 | 408 | } |
409 | 409 | return $created; |
410 | 410 | } |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | )); |
434 | 434 | |
435 | 435 | return $this->writeTemplateToFile($controller, |
436 | - $mod_path . DIRECTORY_SEPARATOR . 'base' . DIRECTORY_SEPARATOR . "{$api}BaseApi.php", true); |
|
436 | + $mod_path.DIRECTORY_SEPARATOR.'base'.DIRECTORY_SEPARATOR."{$api}BaseApi.php", true); |
|
437 | 437 | } |
438 | 438 | |
439 | 439 | /** |
@@ -456,7 +456,7 @@ discard block |
||
456 | 456 | "class" => $class, |
457 | 457 | )); |
458 | 458 | |
459 | - return $this->writeTemplateToFile($controller, $mod_path . DIRECTORY_SEPARATOR . "{$api}.php", $force); |
|
459 | + return $this->writeTemplateToFile($controller, $mod_path.DIRECTORY_SEPARATOR."{$api}.php", $force); |
|
460 | 460 | } |
461 | 461 | |
462 | 462 | /** |
@@ -470,12 +470,12 @@ discard block |
||
470 | 470 | { |
471 | 471 | if (file_exists($filename_path)) { |
472 | 472 | $destfolder = basename($filename_path); |
473 | - if (!file_exists(WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder) || $debug || $force) { |
|
473 | + if (!file_exists(WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder) || $debug || $force) { |
|
474 | 474 | if (is_dir($filename_path)) { |
475 | - self::copyr($filename_path, WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder); |
|
476 | - } else { |
|
477 | - if (@copy($filename_path, WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder) === FALSE) { |
|
478 | - throw new ConfigException("Can't copy " . $filename_path . " to " . WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder); |
|
475 | + self::copyr($filename_path, WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder); |
|
476 | + }else { |
|
477 | + if (@copy($filename_path, WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder) === FALSE) { |
|
478 | + throw new ConfigException("Can't copy ".$filename_path." to ".WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder); |
|
479 | 479 | } |
480 | 480 | } |
481 | 481 | } |
@@ -494,10 +494,10 @@ discard block |
||
494 | 494 | GeneratorHelper::createDir($dst); |
495 | 495 | while (false !== ($file = readdir($dir))) { |
496 | 496 | if (($file != '.') && ($file != '..')) { |
497 | - if (is_dir($src . '/' . $file)) { |
|
498 | - self::copyr($src . '/' . $file, $dst . '/' . $file); |
|
499 | - } elseif (@copy($src . '/' . $file, $dst . '/' . $file) === false) { |
|
500 | - throw new ConfigException("Can't copy " . $src . " to " . $dst); |
|
497 | + if (is_dir($src.'/'.$file)) { |
|
498 | + self::copyr($src.'/'.$file, $dst.'/'.$file); |
|
499 | + } elseif (@copy($src.'/'.$file, $dst.'/'.$file) === false) { |
|
500 | + throw new ConfigException("Can't copy ".$src." to ".$dst); |
|
501 | 501 | } |
502 | 502 | } |
503 | 503 | } |
@@ -65,21 +65,21 @@ discard block |
||
65 | 65 | if (count($pks) == 1) { |
66 | 66 | $pks = array_keys($pks); |
67 | 67 | return [ |
68 | - $tableMap::TABLE_NAME . '.' . $pks[0] => Api::API_MODEL_KEY_FIELD |
|
68 | + $tableMap::TABLE_NAME.'.'.$pks[0] => Api::API_MODEL_KEY_FIELD |
|
69 | 69 | ]; |
70 | 70 | } elseif (count($pks) > 1) { |
71 | 71 | $apiPks = []; |
72 | 72 | $principal = ''; |
73 | 73 | $sep = 'CONCAT('; |
74 | 74 | foreach ($pks as $pk) { |
75 | - $apiPks[$tableMap::TABLE_NAME . '.' . $pk->getName()] = $pk->getPhpName(); |
|
76 | - $principal .= $sep . $tableMap::TABLE_NAME . '.' . $pk->getName(); |
|
77 | - $sep = ', "' . Api::API_PK_SEPARATOR . '", '; |
|
75 | + $apiPks[$tableMap::TABLE_NAME.'.'.$pk->getName()] = $pk->getPhpName(); |
|
76 | + $principal .= $sep.$tableMap::TABLE_NAME.'.'.$pk->getName(); |
|
77 | + $sep = ', "'.Api::API_PK_SEPARATOR.'", '; |
|
78 | 78 | } |
79 | 79 | $principal .= ')'; |
80 | 80 | $apiPks[$principal] = Api::API_MODEL_KEY_FIELD; |
81 | 81 | return $apiPks; |
82 | - } else { |
|
82 | + }else { |
|
83 | 83 | throw new ApiException(_('El modelo de la API no está debidamente mapeado, no hay Primary Key o es compuesta')); |
84 | 84 | } |
85 | 85 | } |
@@ -102,10 +102,10 @@ discard block |
||
102 | 102 | $pks = ''; |
103 | 103 | $sep = ''; |
104 | 104 | foreach ($tableMap->getPrimaryKeys() as $pk) { |
105 | - $pks .= $sep . $pk->getFullyQualifiedName(); |
|
105 | + $pks .= $sep.$pk->getFullyQualifiedName(); |
|
106 | 106 | $sep = ', "|", '; |
107 | 107 | } |
108 | - $this->extraColumns['CONCAT("' . $tableMap->getPhpName() . ' #", ' . $pks . ')'] = Api::API_LIST_NAME_FIELD; |
|
108 | + $this->extraColumns['CONCAT("'.$tableMap->getPhpName().' #", '.$pks.')'] = Api::API_LIST_NAME_FIELD; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | /** |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | } |
128 | 128 | if (null !== $column) { |
129 | 129 | $this->extraColumns[$column->getFullyQualifiedName()] = Api::API_LIST_NAME_FIELD; |
130 | - } else { |
|
130 | + }else { |
|
131 | 131 | $this->addClassListName($tableMap); |
132 | 132 | } |
133 | 133 | } |
@@ -139,22 +139,22 @@ discard block |
||
139 | 139 | * @param ModelCriteria $query |
140 | 140 | * @param string $action |
141 | 141 | */ |
142 | - private function addExtraColumns(ModelCriteria &$query, $action) |
|
142 | + private function addExtraColumns(ModelCriteria & $query, $action) |
|
143 | 143 | { |
144 | 144 | if (Api::API_ACTION_LIST === $action) { |
145 | 145 | $this->addDefaultListField(); |
146 | 146 | $this->addPkToList(); |
147 | 147 | } |
148 | 148 | if (!empty($this->extraColumns)) { |
149 | - if(Config::getParam('api.extrafields.compat', true)) { |
|
149 | + if (Config::getParam('api.extrafields.compat', true)) { |
|
150 | 150 | $fields = array_values($this->extraColumns); |
151 | - } else { |
|
151 | + }else { |
|
152 | 152 | $returnFields = Request::getInstance()->getQuery(Api::API_FIELDS_RESULT_FIELD); |
153 | 153 | $fields = explode(',', $returnFields ?: ''); |
154 | 154 | $fields[] = self::API_MODEL_KEY_FIELD; |
155 | 155 | } |
156 | 156 | foreach ($this->extraColumns as $expression => $columnName) { |
157 | - if(empty($fields) || in_array($columnName, $fields)) { |
|
157 | + if (empty($fields) || in_array($columnName, $fields)) { |
|
158 | 158 | $query->withColumn($expression, $columnName); |
159 | 159 | } |
160 | 160 | } |
@@ -182,21 +182,21 @@ discard block |
||
182 | 182 | /** |
183 | 183 | * @param ModelCriteria $query |
184 | 184 | */ |
185 | - protected function checkI18n(ModelCriteria &$query) |
|
185 | + protected function checkI18n(ModelCriteria & $query) |
|
186 | 186 | { |
187 | 187 | $this->extractApiLang(); |
188 | 188 | $model = $this->getModelNamespace(); |
189 | - $modelI18n = $model . 'I18n'; |
|
189 | + $modelI18n = $model.'I18n'; |
|
190 | 190 | if (method_exists($query, 'useI18nQuery')) { |
191 | 191 | $query->useI18nQuery($this->lang); |
192 | - $modelI18nTableMapClass = str_replace('\\Models\\', '\\Models\\Map\\', $modelI18n) . 'TableMap'; |
|
192 | + $modelI18nTableMapClass = str_replace('\\Models\\', '\\Models\\Map\\', $modelI18n).'TableMap'; |
|
193 | 193 | /** @var TableMap $modelI18nTableMap */ |
194 | 194 | $modelI18nTableMap = $modelI18nTableMapClass::getTableMap(); |
195 | - foreach($modelI18nTableMap->getColumns() as $columnMap) { |
|
196 | - if(!$columnMap->isPrimaryKey()) { |
|
197 | - $query->withColumn($modelI18nTableMapClass::TABLE_NAME . '.' . $columnMap->getName(), $columnMap->getPhpName()); |
|
198 | - } elseif(!$columnMap->isForeignKey()) { |
|
199 | - $query->withColumn('IFNULL(' . $modelI18nTableMapClass::TABLE_NAME . '.' . $columnMap->getName() . ', "'.$this->lang.'")', $columnMap->getPhpName()); |
|
195 | + foreach ($modelI18nTableMap->getColumns() as $columnMap) { |
|
196 | + if (!$columnMap->isPrimaryKey()) { |
|
197 | + $query->withColumn($modelI18nTableMapClass::TABLE_NAME.'.'.$columnMap->getName(), $columnMap->getPhpName()); |
|
198 | + } elseif (!$columnMap->isForeignKey()) { |
|
199 | + $query->withColumn('IFNULL('.$modelI18nTableMapClass::TABLE_NAME.'.'.$columnMap->getName().', "'.$this->lang.'")', $columnMap->getPhpName()); |
|
200 | 200 | } |
201 | 201 | } |
202 | 202 | } |
@@ -206,23 +206,23 @@ discard block |
||
206 | 206 | * @param ActiveRecordInterface $model |
207 | 207 | * @param array $data |
208 | 208 | */ |
209 | - protected function hydrateModelFromRequest(ActiveRecordInterface &$model, array $data = []) { |
|
209 | + protected function hydrateModelFromRequest(ActiveRecordInterface & $model, array $data = []) { |
|
210 | 210 | $model->fromArray($data); |
211 | 211 | $tableMap = $this->getTableMap(); |
212 | 212 | try { |
213 | - $relateI18n = $tableMap->getRelation($tableMap->getPhpName() . 'I18n'); |
|
214 | - if(null !== $relateI18n) { |
|
213 | + $relateI18n = $tableMap->getRelation($tableMap->getPhpName().'I18n'); |
|
214 | + if (null !== $relateI18n) { |
|
215 | 215 | $i18NTableMap = $relateI18n->getLocalTable(); |
216 | - foreach($i18NTableMap->getColumns() as $columnMap) { |
|
217 | - $method = 'set' . $columnMap->getPhpName(); |
|
218 | - if(!($columnMap->isPrimaryKey() && $columnMap->isForeignKey()) |
|
216 | + foreach ($i18NTableMap->getColumns() as $columnMap) { |
|
217 | + $method = 'set'.$columnMap->getPhpName(); |
|
218 | + if (!($columnMap->isPrimaryKey() && $columnMap->isForeignKey()) |
|
219 | 219 | &&array_key_exists($columnMap->getPhpName(), $data) |
220 | 220 | && method_exists($model, $method)) { |
221 | 221 | $model->$method($data[$columnMap->getPhpName()]); |
222 | 222 | } |
223 | 223 | } |
224 | 224 | } |
225 | - } catch(\Exception $e) { |
|
225 | + }catch (\Exception $e) { |
|
226 | 226 | Logger::log($e->getMessage(), LOG_WARNING); |
227 | 227 | } |
228 | 228 | } |