@@ -83,28 +83,28 @@ |
||
83 | 83 | |
84 | 84 | $containerId = $container->getAttribute('id'); |
85 | 85 | if (!$containerId) { |
86 | - $containerId = 'wizardcontainer-' . strtolower(str_replace('\\', '-', get_class($container))); |
|
86 | + $containerId = 'wizardcontainer-'.strtolower(str_replace('\\', '-', get_class($container))); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | foreach ($container as $tabElement) { |
90 | - $tabId = $containerId . '-' . strtolower($tabElement->getName()); |
|
91 | - $tabsNav .= '<li><a data-toggle="tab" href="#' . $tabId . '">' . $translate($tabElement->getLabel()) . '</a></li>'; |
|
92 | - $tabsContent .= '<div class="tab-pane" id="' . $tabId . '">' |
|
90 | + $tabId = $containerId.'-'.strtolower($tabElement->getName()); |
|
91 | + $tabsNav .= '<li><a data-toggle="tab" href="#'.$tabId.'">'.$translate($tabElement->getLabel()).'</a></li>'; |
|
92 | + $tabsContent .= '<div class="tab-pane" id="'.$tabId.'">' |
|
93 | 93 | . $formContainer($tabElement, $layout, $parameter) |
94 | 94 | . '</div>'; |
95 | 95 | } |
96 | 96 | |
97 | - $content .= '<style type="text/css">.tab-content > div > div:first-child { margin-top: 10px; }</style><div class="wizard-container" id="' . $containerId . '">' |
|
98 | - . '<ul>' . $tabsNav . '</ul>' |
|
99 | - . '<div class="tab-content">' . $tabsContent . '</div>'; |
|
97 | + $content .= '<style type="text/css">.tab-content > div > div:first-child { margin-top: 10px; }</style><div class="wizard-container" id="'.$containerId.'">' |
|
98 | + . '<ul>'.$tabsNav.'</ul>' |
|
99 | + . '<div class="tab-content">'.$tabsContent.'</div>'; |
|
100 | 100 | if ($containerParams['pager']) { |
101 | - $content .='<ul class="pager wizard">' |
|
102 | - . '<li class="previous"><a href="javascript:;">← ' . $translate('previous') . '</a></li>' |
|
103 | - . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' →</a></li>' |
|
104 | - . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">' |
|
101 | + $content .= '<ul class="pager wizard">' |
|
102 | + . '<li class="previous"><a href="javascript:;">← '.$translate('previous').'</a></li>' |
|
103 | + . '<li class="next"><a href="javascript:;">'.$translate('Next').' →</a></li>' |
|
104 | + . '<li class="finish'.($containerParams['finish_enabled'] ? '' : ' disabled').'">' |
|
105 | 105 | . (false !== $containerParams['finish_label'] |
106 | - ? '<a class="pull-right" href="' . $containerParams['finish_href'] . '">' |
|
107 | - . $translate($containerParams['finish_label']) . ' •</a>' |
|
106 | + ? '<a class="pull-right" href="'.$containerParams['finish_href'].'">' |
|
107 | + . $translate($containerParams['finish_label']).' •</a>' |
|
108 | 108 | : '' |
109 | 109 | ) |
110 | 110 | . '</li></ul>'; |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | $data = []; |
54 | 54 | $this->flattenTree($object, $data); |
55 | 55 | |
56 | - return ['items' => $data ]; |
|
56 | + return ['items' => $data]; |
|
57 | 57 | |
58 | 58 | } |
59 | 59 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | |
80 | 80 | if ($tree->hasChildren()) { |
81 | 81 | foreach ($tree->getChildren() as $i => $child) { |
82 | - $this->flattenTree($child, $data, $curId . '-' . ($i + 1) ); |
|
82 | + $this->flattenTree($child, $data, $curId.'-'.($i + 1)); |
|
83 | 83 | } |
84 | 84 | } |
85 | 85 | } |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | * unflatten tree |
117 | 117 | */ |
118 | 118 | $items = $data['items']; |
119 | - $tree = [ '__root__' => array_shift($items) ]; |
|
119 | + $tree = ['__root__' => array_shift($items)]; |
|
120 | 120 | |
121 | 121 | foreach ($items as $item) { |
122 | 122 | $parent = substr($item['current'], 0, strrpos($item['current'], '-')); |
@@ -79,13 +79,13 @@ |
||
79 | 79 | 'name' => [ |
80 | 80 | 'required' => true, |
81 | 81 | 'filters' => [ |
82 | - [ 'name' => 'StringTrim' ], |
|
82 | + ['name' => 'StringTrim'], |
|
83 | 83 | ], |
84 | 84 | ], |
85 | 85 | 'value' => [ |
86 | 86 | 'required' => false, |
87 | 87 | 'filters' => [ |
88 | - [ 'name' => 'StringTrim' ], |
|
88 | + ['name' => 'StringTrim'], |
|
89 | 89 | ], |
90 | 90 | ], |
91 | 91 | ]; |
@@ -35,7 +35,7 @@ |
||
35 | 35 | * |
36 | 36 | * @var array |
37 | 37 | */ |
38 | - protected $scripts = [ '/js/html.sortable.min.js', 'Core/js/forms.tree-management.js' ]; |
|
38 | + protected $scripts = ['/js/html.sortable.min.js', 'Core/js/forms.tree-management.js']; |
|
39 | 39 | |
40 | 40 | /** |
41 | 41 | * Attributes. |
@@ -38,14 +38,14 @@ |
||
38 | 38 | |
39 | 39 | $globalConfigPaths = []; |
40 | 40 | foreach ($config['config_glob_paths'] as $path) { |
41 | - $globalConfigPaths[] = substr($path, 0, strrpos($path, DIRECTORY_SEPARATOR)) . DIRECTORY_SEPARATOR; |
|
41 | + $globalConfigPaths[] = substr($path, 0, strrpos($path, DIRECTORY_SEPARATOR)).DIRECTORY_SEPARATOR; |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | $moduleConfigPath = '.'; |
45 | 45 | foreach ($config['module_paths'] as $path) { |
46 | - $path = rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR; |
|
47 | - if (file_exists($path . 'Jobs')) { |
|
48 | - $moduleConfigPath = $path . 'Jobs' . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR; |
|
46 | + $path = rtrim($path, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR; |
|
47 | + if (file_exists($path.'Jobs')) { |
|
48 | + $moduleConfigPath = $path.'Jobs'.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR; |
|
49 | 49 | break; |
50 | 50 | } |
51 | 51 | } |
@@ -67,13 +67,13 @@ |
||
67 | 67 | $file = "jobs.categories.$type.php"; |
68 | 68 | |
69 | 69 | foreach ($this->globalConfigPaths as $path) { |
70 | - if (file_exists($path . $file)) { |
|
71 | - return include $path . $file; |
|
70 | + if (file_exists($path.$file)) { |
|
71 | + return include $path.$file; |
|
72 | 72 | } |
73 | 73 | } |
74 | 74 | |
75 | - if (file_exists($this->moduleConfigPath . $file)) { |
|
76 | - return include $this->moduleConfigPath . $file; |
|
75 | + if (file_exists($this->moduleConfigPath.$file)) { |
|
76 | + return include $this->moduleConfigPath.$file; |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | return false; |
@@ -167,7 +167,7 @@ |
||
167 | 167 | 'label' => $label, |
168 | 168 | ], |
169 | 169 | 'attributes' => [ |
170 | - 'class' => 'btn btn-' . ('submit' == $type ? 'primary' : 'default'), |
|
170 | + 'class' => 'btn btn-'.('submit' == $type ? 'primary' : 'default'), |
|
171 | 171 | 'type' => $type, |
172 | 172 | ], |
173 | 173 | ] |
@@ -96,18 +96,18 @@ discard block |
||
96 | 96 | $replyTo = $this->stringFromMailHeader($this->getReplyTo()); |
97 | 97 | |
98 | 98 | return str_pad($template, 30) |
99 | - . 'to: ' . str_pad($to, 50) |
|
100 | - . 'cc: ' . str_pad($cc, 50) |
|
101 | - . 'bcc: ' . str_pad($bcc, 50) |
|
102 | - . 'from: ' . str_pad($from, 50) |
|
103 | - . 'replyTo: ' . str_pad($replyTo, 50) |
|
99 | + . 'to: '.str_pad($to, 50) |
|
100 | + . 'cc: '.str_pad($cc, 50) |
|
101 | + . 'bcc: '.str_pad($bcc, 50) |
|
102 | + . 'from: '.str_pad($from, 50) |
|
103 | + . 'replyTo: '.str_pad($replyTo, 50) |
|
104 | 104 | //. str_pad(implode(',', ArrayUtils::iteratorToArray($this->getSender())),50) |
105 | - . 'subject: ' . str_pad($this->getSubject(), 50); |
|
105 | + . 'subject: '.str_pad($this->getSubject(), 50); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | public function template($template) |
109 | 109 | { |
110 | - $controller = get_class($this->controller); |
|
110 | + $controller = get_class($this->controller); |
|
111 | 111 | $services = $this->serviceManager; |
112 | 112 | |
113 | 113 | $event = new Event(); |
@@ -124,11 +124,11 @@ discard block |
||
124 | 124 | $controllerIdentifier = strtolower(substr($controller, 0, strpos($controller, '\\'))); |
125 | 125 | $viewResolver = $this->serviceManager->get('ViewResolver'); |
126 | 126 | |
127 | - $templateHalf = 'mail/' . $template; |
|
127 | + $templateHalf = 'mail/'.$template; |
|
128 | 128 | $resource = $viewResolver->resolve($templateHalf); |
129 | 129 | |
130 | 130 | if (empty($resource)) { |
131 | - $templateFull = $controllerIdentifier . '/mail/' . $template; |
|
131 | + $templateFull = $controllerIdentifier.'/mail/'.$template; |
|
132 | 132 | $resource = $viewResolver->resolve($templateFull); |
133 | 133 | } |
134 | 134 | |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | unset($__vars[$key]); |
156 | 156 | } |
157 | 157 | } |
158 | - unset($__vars['content'],$__vars['controllerIdentifier'],$__vars['controller'],$__vars['resource'],$__vars['template'],$__vars['viewResolver']); |
|
158 | + unset($__vars['content'], $__vars['controllerIdentifier'], $__vars['controller'], $__vars['resource'], $__vars['template'], $__vars['viewResolver']); |
|
159 | 159 | $this->config = $__vars; |
160 | 160 | } |
161 | 161 | } |
@@ -180,20 +180,20 @@ discard block |
||
180 | 180 | if (isset($this->config['from'])) { |
181 | 181 | $from = $this->config['from']; |
182 | 182 | } else { |
183 | - $log->err('A from email address must be provided (Variable $from) in Template: ' . $template); |
|
184 | - throw new \InvalidArgumentException('A from email address must be provided (Variable $from) in Template: ' . $template); |
|
183 | + $log->err('A from email address must be provided (Variable $from) in Template: '.$template); |
|
184 | + throw new \InvalidArgumentException('A from email address must be provided (Variable $from) in Template: '.$template); |
|
185 | 185 | } |
186 | 186 | if (isset($this->config['fromName'])) { |
187 | 187 | $fromName = $this->config['fromName']; |
188 | 188 | } else { |
189 | - $log->err('A from name must be provided (Variable $fromName) in Template: ' . $template); |
|
190 | - throw new \InvalidArgumentException('A from name must be provided (Variable $fromName) in Template: ' . $template); |
|
189 | + $log->err('A from name must be provided (Variable $fromName) in Template: '.$template); |
|
190 | + throw new \InvalidArgumentException('A from name must be provided (Variable $fromName) in Template: '.$template); |
|
191 | 191 | } |
192 | 192 | if (isset($this->config['subject'])) { |
193 | 193 | $subject = $this->config['subject']; |
194 | 194 | } else { |
195 | - $log->err('A subject must be provided (Variable $subject) in Template: ' . $template); |
|
196 | - throw new \InvalidArgumentException('A subject must be provided (Variable $subject) in Template: ' . $template); |
|
195 | + $log->err('A subject must be provided (Variable $subject) in Template: '.$template); |
|
196 | + throw new \InvalidArgumentException('A subject must be provided (Variable $subject) in Template: '.$template); |
|
197 | 197 | } |
198 | 198 | $this->setFrom($from, $fromName); |
199 | 199 | $this->setSubject($subject); |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | $erg = true; |
216 | 216 | $log->info($this); |
217 | 217 | } catch (\Exception $e) { |
218 | - $log->err('Mail failure ' . $e->getMessage()); |
|
218 | + $log->err('Mail failure '.$e->getMessage()); |
|
219 | 219 | //$this->serviceManager->get('Core/Log')->warn('Mail failure ' . $e->getMessage()); |
220 | 220 | } |
221 | 221 | //} |
@@ -61,7 +61,7 @@ |
||
61 | 61 | * |
62 | 62 | * @return self |
63 | 63 | */ |
64 | - public function addViewModel($name, $model, $priority=0) |
|
64 | + public function addViewModel($name, $model, $priority = 0) |
|
65 | 65 | { |
66 | 66 | $this->models->insert($name, $model, $priority); |
67 | 67 |