@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | |
169 | 169 | // generate from `de` the locale `de_DE` or from `en` `en_EN` only if $lang is 2 chars. |
170 | 170 | if (strlen($lang) == 2) { |
171 | - return strtolower($lang) . '_' . strtoupper($lang); |
|
171 | + return strtolower($lang).'_'.strtoupper($lang); |
|
172 | 172 | } |
173 | 173 | |
174 | 174 | return $lang; |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | public function getWebroot() |
238 | 238 | { |
239 | 239 | if ($this->_webroot === null) { |
240 | - $this->_webroot = realpath(realpath($this->basePath) . DIRECTORY_SEPARATOR . $this->webrootDirectory); |
|
240 | + $this->_webroot = realpath(realpath($this->basePath).DIRECTORY_SEPARATOR.$this->webrootDirectory); |
|
241 | 241 | } |
242 | 242 | |
243 | 243 | return $this->_webroot; |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | public function getAdminModulesMenus() |
319 | 319 | { |
320 | 320 | $menu = []; |
321 | - foreach($this->getAdminModules() as $module) { |
|
321 | + foreach ($this->getAdminModules() as $module) { |
|
322 | 322 | if ($module->getMenu()) { |
323 | 323 | $menu[$module->id] = $module->getMenu(); |
324 | 324 | } |
@@ -106,7 +106,7 @@ |
||
106 | 106 | // see if the module has a registerComponents method |
107 | 107 | foreach ($module->registerComponents() as $componentId => $definition) { |
108 | 108 | if (!$app->has($componentId)) { |
109 | - Yii::debug('Register component ' . $componentId, __METHOD__); |
|
109 | + Yii::debug('Register component '.$componentId, __METHOD__); |
|
110 | 110 | $app->set($componentId, $definition); |
111 | 111 | } |
112 | 112 | } |
@@ -139,7 +139,7 @@ |
||
139 | 139 | { |
140 | 140 | if (!is_object($this->tags[$tag])) { |
141 | 141 | $this->tags[$tag] = Yii::createObject($this->tags[$tag]); |
142 | - Yii::debug('tag parser object generated for:'. $tag, __CLASS__); |
|
142 | + Yii::debug('tag parser object generated for:'.$tag, __CLASS__); |
|
143 | 143 | } |
144 | 144 | } |
145 | 145 |
@@ -48,7 +48,7 @@ |
||
48 | 48 | public function setHref($href) |
49 | 49 | { |
50 | 50 | if (StringHelper::startsWith($href, '//')) { |
51 | - $this->_href = Url::base(true) . str_replace('//', '/', $href); |
|
51 | + $this->_href = Url::base(true).str_replace('//', '/', $href); |
|
52 | 52 | } elseif (StringHelper::startsWith($href, '#')) { |
53 | 53 | // When an anchor link is given, do not modify the link. This can be usefull for one pagers |
54 | 54 | $this->_href = $href; |
@@ -102,25 +102,25 @@ discard block |
||
102 | 102 | public function run() |
103 | 103 | { |
104 | 104 | // Cache generated code |
105 | - return $this->getOrSetHasCache(['svg', $this->folder, $this->file, $this->cssClass, $this->symbolName], function () { |
|
105 | + return $this->getOrSetHasCache(['svg', $this->folder, $this->file, $this->cssClass, $this->symbolName], function() { |
|
106 | 106 | |
107 | 107 | // Check if file ends with .svg, if not add the extension |
108 | - $svgFile = StringHelper::endsWith($this->file, '.svg') ? $this->file : $this->file . '.svg'; |
|
108 | + $svgFile = StringHelper::endsWith($this->file, '.svg') ? $this->file : $this->file.'.svg'; |
|
109 | 109 | |
110 | 110 | if ($this->symbolMode) { |
111 | - $svgPath = Yii::$app->view->publicHtml . '/' . $svgFile; |
|
111 | + $svgPath = Yii::$app->view->publicHtml.'/'.$svgFile; |
|
112 | 112 | |
113 | - return '<svg class="symbol symbol--' . $this->symbolName . '' . ($this->cssClass ? ' ' . $this->cssClass : '') . '"><use class="symbol__use" xlink:href="' . $svgPath . '#' . $this->symbolName . '" /></svg>'; |
|
113 | + return '<svg class="symbol symbol--'.$this->symbolName.''.($this->cssClass ? ' '.$this->cssClass : '').'"><use class="symbol__use" xlink:href="'.$svgPath.'#'.$this->symbolName.'" /></svg>'; |
|
114 | 114 | } else { |
115 | 115 | // Build the full svg file path |
116 | - $svgPath = $this->folder . DIRECTORY_SEPARATOR . $svgFile; |
|
116 | + $svgPath = $this->folder.DIRECTORY_SEPARATOR.$svgFile; |
|
117 | 117 | |
118 | 118 | // Get the svg contents |
119 | 119 | $content = FileHelper::getFileContent($svgPath); |
120 | 120 | |
121 | 121 | // If a cssClass string is given, add it to the <svg> tag |
122 | 122 | if ($this->cssClass && is_string($this->cssClass)) { |
123 | - $content = preg_replace('/<svg/', '<svg class="' . $this->cssClass . '"', $content); |
|
123 | + $content = preg_replace('/<svg/', '<svg class="'.$this->cssClass.'"', $content); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | if ($content) { |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | } |
129 | 129 | } |
130 | 130 | |
131 | - throw new Exception('Unable to access SVG File: ' . $svgPath); |
|
131 | + throw new Exception('Unable to access SVG File: '.$svgPath); |
|
132 | 132 | }); |
133 | 133 | } |
134 | 134 | } |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $this->_mailer->isSMTP(); |
143 | 143 | $this->_mailer->SMTPSecure = $this->smtpSecure; |
144 | 144 | $this->_mailer->Host = (string) $this->host; |
145 | - $this->_mailer->SMTPAuth= $this->smtpAuth; |
|
145 | + $this->_mailer->SMTPAuth = $this->smtpAuth; |
|
146 | 146 | $this->_mailer->Username = $this->username; |
147 | 147 | $this->_mailer->Password = $this->password; |
148 | 148 | $this->_mailer->Port = $this->port; |
@@ -502,7 +502,7 @@ discard block |
||
502 | 502 | return true; |
503 | 503 | } else { |
504 | 504 | $data = [$this->host, $this->port, $this->smtpSecure, $this->username]; |
505 | - throw new Exception('Authentication failed ('.implode(',', $data).'): '.$smtp->getLastReply() . PHP_EOL . print_r($smtp->getError(), true)); |
|
505 | + throw new Exception('Authentication failed ('.implode(',', $data).'): '.$smtp->getLastReply().PHP_EOL.print_r($smtp->getError(), true)); |
|
506 | 506 | } |
507 | 507 | } else { |
508 | 508 | throw new Exception('HELO failed: '.$smtp->getLastReply()); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | $availableModules = implode(', ', array_column(Yii::$app->getFrontendModules(), 'id')); |
49 | 49 | $themeLocation = $this->prompt("Enter the theme location where to generate (as path alias e.g. app, $availableModules):", ['default' => 'app']); |
50 | - $themeLocation = '@' . ltrim($themeLocation, '@'); |
|
50 | + $themeLocation = '@'.ltrim($themeLocation, '@'); |
|
51 | 51 | |
52 | 52 | preg_match("#^@[A-z]+#", $themeLocation, $newThemeLocation); |
53 | 53 | |
@@ -59,15 +59,15 @@ discard block |
||
59 | 59 | } |
60 | 60 | } |
61 | 61 | |
62 | - $basePath = $themeLocation . DIRECTORY_SEPARATOR . 'themes' . DIRECTORY_SEPARATOR . $themeName; |
|
63 | - $themeFolder = Yii::getAlias($themeLocation) . DIRECTORY_SEPARATOR . 'themes' . DIRECTORY_SEPARATOR . $themeName; |
|
62 | + $basePath = $themeLocation.DIRECTORY_SEPARATOR.'themes'.DIRECTORY_SEPARATOR.$themeName; |
|
63 | + $themeFolder = Yii::getAlias($themeLocation).DIRECTORY_SEPARATOR.'themes'.DIRECTORY_SEPARATOR.$themeName; |
|
64 | 64 | |
65 | 65 | if (file_exists($themeFolder)) { |
66 | - return $this->outputError("The folder " . $themeFolder . " exists already."); |
|
66 | + return $this->outputError("The folder ".$themeFolder." exists already."); |
|
67 | 67 | } |
68 | 68 | |
69 | - $this->outputInfo("Theme path alias: " . $basePath); |
|
70 | - $this->outputInfo("Theme real path: " . $themeFolder); |
|
69 | + $this->outputInfo("Theme path alias: ".$basePath); |
|
70 | + $this->outputInfo("Theme real path: ".$themeFolder); |
|
71 | 71 | if (!$this->confirm("Do you want continue?")) { |
72 | 72 | return $this->outputError('Abort by user.'); |
73 | 73 | } |
@@ -81,15 +81,15 @@ discard block |
||
81 | 81 | ]; |
82 | 82 | |
83 | 83 | foreach ($folders as $folder) { |
84 | - FileHelper::createDirectory($themeFolder . DIRECTORY_SEPARATOR . $folder); |
|
84 | + FileHelper::createDirectory($themeFolder.DIRECTORY_SEPARATOR.$folder); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | $contents = [ |
88 | - $themeFolder. DIRECTORY_SEPARATOR . 'theme.json' => $this->renderJson($basePath, $themeName), |
|
89 | - $themeFolder. DIRECTORY_SEPARATOR . ucfirst($themeName) . 'Asset.php' => $this->renderAssetClass($themeName), |
|
90 | - $themeFolder. DIRECTORY_SEPARATOR . 'resources'.DIRECTORY_SEPARATOR. $themeName .'.css' => '', |
|
91 | - $themeFolder. DIRECTORY_SEPARATOR . 'views'.DIRECTORY_SEPARATOR.'layouts'.DIRECTORY_SEPARATOR.'theme.php' => $this->renderLayout($themeName), |
|
92 | - $themeFolder. DIRECTORY_SEPARATOR . 'views'.DIRECTORY_SEPARATOR.'cmslayouts'.DIRECTORY_SEPARATOR.'theme.php' => $this->renderCmsLayout($themeName), |
|
88 | + $themeFolder.DIRECTORY_SEPARATOR.'theme.json' => $this->renderJson($basePath, $themeName), |
|
89 | + $themeFolder.DIRECTORY_SEPARATOR.ucfirst($themeName).'Asset.php' => $this->renderAssetClass($themeName), |
|
90 | + $themeFolder.DIRECTORY_SEPARATOR.'resources'.DIRECTORY_SEPARATOR.$themeName.'.css' => '', |
|
91 | + $themeFolder.DIRECTORY_SEPARATOR.'views'.DIRECTORY_SEPARATOR.'layouts'.DIRECTORY_SEPARATOR.'theme.php' => $this->renderLayout($themeName), |
|
92 | + $themeFolder.DIRECTORY_SEPARATOR.'views'.DIRECTORY_SEPARATOR.'cmslayouts'.DIRECTORY_SEPARATOR.'theme.php' => $this->renderCmsLayout($themeName), |
|
93 | 93 | ]; |
94 | 94 | |
95 | 95 | foreach ($contents as $fileName => $content) { |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | */ |
151 | 151 | private function renderAssetClass($themeName) |
152 | 152 | { |
153 | - $className = ucfirst($themeName) . 'Asset'; |
|
153 | + $className = ucfirst($themeName).'Asset'; |
|
154 | 154 | return "<?php |
155 | 155 | namespace app\\themes\\{$themeName}; |
156 | 156 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | */ |
172 | 172 | private function renderLayout($themeName) |
173 | 173 | { |
174 | - $className = ucfirst($themeName) . 'Asset'; |
|
174 | + $className = ucfirst($themeName).'Asset'; |
|
175 | 175 | |
176 | 176 | return '<?php |
177 | 177 | /** |