@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | */ |
117 | 117 | public function getKeys() |
118 | 118 | { |
119 | - return $this->collection->map(function ($element) { |
|
119 | + return $this->collection->map(function($element) { |
|
120 | 120 | return $this->getKey($element); |
121 | 121 | })->toArray(); |
122 | 122 | } |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | */ |
310 | 310 | public function offsetExists($offset) |
311 | 311 | { |
312 | - return (bool)$this->getElement($offset); |
|
312 | + return (bool) $this->getElement($offset); |
|
313 | 313 | } |
314 | 314 | |
315 | 315 | /** |
@@ -359,7 +359,7 @@ discard block |
||
359 | 359 | { |
360 | 360 | if (!isset($this->identityExtractor)) { |
361 | 361 | // default identity extractor |
362 | - $this->identityExtractor = function ($element) { |
|
362 | + $this->identityExtractor = function($element) { |
|
363 | 363 | if (!is_callable([$element, 'getId'])) { |
364 | 364 | throw new \LogicException('$element must have getId() method'); |
365 | 365 | } |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | */ |
387 | 387 | protected function getElement($key) |
388 | 388 | { |
389 | - return $this->collection->filter(function ($element) use ($key) { |
|
389 | + return $this->collection->filter(function($element) use ($key) { |
|
390 | 390 | return $this->getKey($element) == $key; |
391 | 391 | })->first(); |
392 | 392 | } |
@@ -47,7 +47,7 @@ |
||
47 | 47 | public function __construct($status = self::NONPUBLIC) |
48 | 48 | { |
49 | 49 | if (!isset(static::$orderMap[$status])) { |
50 | - throw new \DomainException('Unknown status: ' . $status); |
|
50 | + throw new \DomainException('Unknown status: '.$status); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | $this->name = $status; |
@@ -16,9 +16,9 @@ |
||
16 | 16 | interface StatusInterface extends EntityInterface |
17 | 17 | { |
18 | 18 | |
19 | - const NONPUBLIC = /*@translate*/ 'private'; |
|
19 | + const NONPUBLIC = /*@translate*/ 'private'; |
|
20 | 20 | |
21 | - const PUBLIC_TO_ALL = /*@translate*/ 'public to all'; |
|
21 | + const PUBLIC_TO_ALL = /*@translate*/ 'public to all'; |
|
22 | 22 | |
23 | 23 | public function __construct($status = self::NONPUBLIC); |
24 | 24 |
@@ -90,16 +90,16 @@ |
||
90 | 90 | /* @var \Zend\Paginator\Paginator $paginator */ |
91 | 91 | /* @var CreatePaginatorEvent $event */ |
92 | 92 | $events = $this->serviceManager->get('Core/CreatePaginator/Events'); |
93 | - $event = $events->getEvent(CreatePaginatorEvent::EVENT_CREATE_PAGINATOR,$this,[ |
|
93 | + $event = $events->getEvent(CreatePaginatorEvent::EVENT_CREATE_PAGINATOR, $this, [ |
|
94 | 94 | 'paginatorParams' => $params, |
95 | 95 | 'paginators' => $paginators, |
96 | 96 | 'paginatorName' => $paginatorName |
97 | 97 | ]); |
98 | 98 | $events->trigger($event); |
99 | 99 | $paginator = $event->getPaginator(); |
100 | - if(!$paginator instanceof Paginator){ |
|
100 | + if (!$paginator instanceof Paginator) { |
|
101 | 101 | // no paginator created by listener, so let's create default paginator |
102 | - $paginator = $paginators->get($paginatorName,$params); |
|
102 | + $paginator = $paginators->get($paginatorName, $params); |
|
103 | 103 | } |
104 | 104 | $paginator->setCurrentPageNumber(isset($params['page']) ? $params['page'] : 1) |
105 | 105 | ->setItemCountPerPage(isset($params['count']) ? $params['count'] : 10) |
@@ -125,16 +125,16 @@ |
||
125 | 125 | |
126 | 126 | public function setParams($params) |
127 | 127 | { |
128 | - if(is_array($params)){ |
|
129 | - if(isset($params['paginatorParams'])){ |
|
128 | + if (is_array($params)) { |
|
129 | + if (isset($params['paginatorParams'])) { |
|
130 | 130 | $this->setPaginatorParams($params['paginatorParams']); |
131 | 131 | unset($params['paginatorParams']); |
132 | 132 | } |
133 | - if(isset($params['paginators'])){ |
|
133 | + if (isset($params['paginators'])) { |
|
134 | 134 | $this->setPaginators($params['paginators']); |
135 | 135 | unset($params['paginators']); |
136 | 136 | } |
137 | - if(isset($params['paginatorName'])){ |
|
137 | + if (isset($params['paginatorName'])) { |
|
138 | 138 | $this->setPaginatorName($params['paginatorName']); |
139 | 139 | unset($params['paginatorName']); |
140 | 140 | } |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | */ |
234 | 234 | public function getParent($returnSelf = false) |
235 | 235 | { |
236 | - return $this->parent ? : ($returnSelf ? $this : null); |
|
236 | + return $this->parent ?: ($returnSelf ? $this : null); |
|
237 | 237 | } |
238 | 238 | |
239 | 239 | /** |
@@ -465,7 +465,7 @@ discard block |
||
465 | 465 | */ |
466 | 466 | public function getPermissionsResourceId() |
467 | 467 | { |
468 | - return 'organization:' . $this->getId(); |
|
468 | + return 'organization:'.$this->getId(); |
|
469 | 469 | } |
470 | 470 | |
471 | 471 | /** |
@@ -34,7 +34,7 @@ |
||
34 | 34 | * |
35 | 35 | * @var array $attachmentsMimeType |
36 | 36 | */ |
37 | - protected $attachmentsMimeType = array('image','applications/pdf', |
|
37 | + protected $attachmentsMimeType = array('image', 'applications/pdf', |
|
38 | 38 | 'application/x-pdf', |
39 | 39 | 'application/acrobat', |
40 | 40 | 'applications/vnd.pdf', |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | |
62 | 62 | echo "Generate keywords for $count applications ...\n"; |
63 | 63 | |
64 | - $progress = new ProgressBar($count); |
|
64 | + $progress = new ProgressBar($count); |
|
65 | 65 | |
66 | 66 | /** @var \Core\Repository\Filter\PropertyToKeywords $filter */ |
67 | 67 | $filter = $services->get('filtermanager')->get('Core/Repository/PropertyToKeywords'); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | /** @var \Applications\Entity\Application $application */ |
71 | 71 | foreach ($applications as $application) { |
72 | - $progress->update($i++, 'Application ' . $i . ' / ' . $count); |
|
72 | + $progress->update($i++, 'Application '.$i.' / '.$count); |
|
73 | 73 | $keywords = $filter->filter($application); |
74 | 74 | |
75 | 75 | $application->setKeywords($keywords); |
@@ -95,13 +95,13 @@ discard block |
||
95 | 95 | { |
96 | 96 | $applications = $this->fetchApplications(); |
97 | 97 | $count = count($applications); |
98 | - $i=0; |
|
99 | - echo "Calculate rating for " . $count . " applications ...\n"; |
|
98 | + $i = 0; |
|
99 | + echo "Calculate rating for ".$count." applications ...\n"; |
|
100 | 100 | |
101 | 101 | $progress = new ProgressBar($count); |
102 | 102 | /** @var \Applications\Entity\Application $application */ |
103 | 103 | foreach ($applications as $application) { |
104 | - $progress->update($i++, 'Application ' . $i . ' / ' . $count); |
|
104 | + $progress->update($i++, 'Application '.$i.' / '.$count); |
|
105 | 105 | $application->getRating(/* recalculate */ true); |
106 | 106 | } |
107 | 107 | $progress->update($i, 'Write to database...'); |
@@ -129,17 +129,17 @@ discard block |
||
129 | 129 | $documentManager = $services->get('Core/DocumentManager'); |
130 | 130 | |
131 | 131 | $count = count($applications); |
132 | - $i=0; |
|
132 | + $i = 0; |
|
133 | 133 | |
134 | - echo $count . " applications in Draft Mode and older than " . $days . " days will be deleted\n"; |
|
134 | + echo $count." applications in Draft Mode and older than ".$days." days will be deleted\n"; |
|
135 | 135 | |
136 | 136 | $progress = new ProgressBar($count); |
137 | 137 | |
138 | 138 | foreach ($applications as $application) { |
139 | - $progress->update($i++, 'Application ' . $i . ' / ' . $count); |
|
139 | + $progress->update($i++, 'Application '.$i.' / '.$count); |
|
140 | 140 | try { |
141 | 141 | $documentManager->remove($application); |
142 | - } catch (\Exception $e){ |
|
142 | + } catch (\Exception $e) { |
|
143 | 143 | // log something |
144 | 144 | $e->getCode(); |
145 | 145 | } |
@@ -163,17 +163,17 @@ discard block |
||
163 | 163 | |
164 | 164 | $table->appendRow(array('Module', 'Name', 'Description')); |
165 | 165 | |
166 | - $offset=strlen(getcwd())+1; |
|
167 | - $links=""; |
|
168 | - $github='https://github.com/cross-solution/YAWIK/blob/master/'; |
|
166 | + $offset = strlen(getcwd()) + 1; |
|
167 | + $links = ""; |
|
168 | + $github = 'https://github.com/cross-solution/YAWIK/blob/master/'; |
|
169 | 169 | |
170 | 170 | foreach ($config['view_manager']['template_map'] as $key => $absolute_filename) { |
171 | 171 | // strip the application_root plus an additional slash |
172 | - $filename=substr(realpath($absolute_filename), $offset); |
|
172 | + $filename = substr(realpath($absolute_filename), $offset); |
|
173 | 173 | if (preg_match('~module/([^/]+)~', $filename, $match)) { |
174 | - $module=$match[1]; |
|
174 | + $module = $match[1]; |
|
175 | 175 | } else { |
176 | - $module="not found ($key)"; |
|
176 | + $module = "not found ($key)"; |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | $viewModel = new ViewModel(); |
@@ -182,17 +182,17 @@ discard block |
||
182 | 182 | $row = new Row(); |
183 | 183 | $row->appendColumn(new Column($module)); |
184 | 184 | if ($filename) { |
185 | - $row->appendColumn(new Column('`' . $key . '`_')); |
|
186 | - $links.='.. _'. $key .': '. $github.$filename .PHP_EOL; |
|
185 | + $row->appendColumn(new Column('`'.$key.'`_')); |
|
186 | + $links .= '.. _'.$key.': '.$github.$filename.PHP_EOL; |
|
187 | 187 | } else { |
188 | 188 | $row->appendColumn(new Column("WRONG CONFIGURATION")); |
189 | 189 | } |
190 | - $comment=""; |
|
190 | + $comment = ""; |
|
191 | 191 | if (file_exists($absolute_filename)) { |
192 | - $src=file_get_contents($absolute_filename); |
|
193 | - $comment="file exists"; |
|
192 | + $src = file_get_contents($absolute_filename); |
|
193 | + $comment = "file exists"; |
|
194 | 194 | if (preg_match("/{{rtd:\s*(.*)}}/", $src, $match)) { |
195 | - $comment=$match['1']; |
|
195 | + $comment = $match['1']; |
|
196 | 196 | } |
197 | 197 | } |
198 | 198 | $row->appendColumn(new Column($comment)); |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | { |
210 | 210 | echo "Loading applications... "; |
211 | 211 | |
212 | - $filter = \Zend\Json\Json::decode($this->params('filter', '{}'), \Zend\Json\Json::TYPE_ARRAY); |
|
212 | + $filter = \Zend\Json\Json::decode($this->params('filter', '{}'), \Zend\Json\Json::TYPE_ARRAY); |
|
213 | 213 | $filter['$or'] = array( |
214 | 214 | array('attachments' => array('$exists' => 1)), |
215 | 215 | array('contact.image' => array('$exists' => 1)), |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | return; |
224 | 224 | } |
225 | 225 | $progress = new ProgressBar($count); |
226 | - $i=0; |
|
226 | + $i = 0; |
|
227 | 227 | |
228 | 228 | foreach ($applications as $app) { |
229 | 229 | $progress->update($i++, "Process $i / $count"); |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $hidden = ''; |
71 | 71 | $displayNames = array(); |
72 | 72 | foreach ($elements as $element) { |
73 | - $hidden .= '<input type="hidden" name="elements[]" value="' . $element . '">'; |
|
73 | + $hidden .= '<input type="hidden" name="elements[]" value="'.$element.'">'; |
|
74 | 74 | $application = $repository->find($element); |
75 | 75 | $isAllowed = $this->acl()->test($application, 'change'); |
76 | 76 | if ($isAllowed) { |
@@ -89,12 +89,12 @@ discard block |
||
89 | 89 | array( |
90 | 90 | 'ok' => true, |
91 | 91 | 'header' => $translator->translate('reject the applicants'), |
92 | - 'content' => '<form action="' . $actionUrl . '">' . |
|
93 | - $hidden . |
|
92 | + 'content' => '<form action="'.$actionUrl.'">'. |
|
93 | + $hidden. |
|
94 | 94 | '<input class=" form-control " name="mail-subject" value="' |
95 | - . $mailSubject . '"><br /><br />' . |
|
95 | + . $mailSubject.'"><br /><br />'. |
|
96 | 96 | '<textarea class=" form-control " id="mail-content" name="mail-content">' |
97 | - . $mailText . '</textarea></form>' |
|
97 | + . $mailText.'</textarea></form>' |
|
98 | 98 | ) |
99 | 99 | ); |
100 | 100 | } |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $repositoryService->store($application); |
143 | 143 | unset($mail); |
144 | 144 | } |
145 | - return new JsonModel(array('ok' => true, )); |
|
145 | + return new JsonModel(array('ok' => true,)); |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | /** |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | */ |
153 | 153 | public function moveAction() |
154 | 154 | { |
155 | - $ids = (array)$this->params()->fromPost('ids'); |
|
155 | + $ids = (array) $this->params()->fromPost('ids'); |
|
156 | 156 | $moved = 0; |
157 | 157 | |
158 | 158 | if ($ids) { |