@@ -49,7 +49,7 @@ |
||
| 49 | 49 | |
| 50 | 50 | private function get_units($units = false) : float |
| 51 | 51 | { |
| 52 | - if ( $this->deliverable->invoiceByActualUnits |
|
| 52 | + if ($this->deliverable->invoiceByActualUnits |
|
| 53 | 53 | || $this->deliverable->plannedUnits == 0) { |
| 54 | 54 | // In most cases we calculate the price based on the actual units entered |
| 55 | 55 | return $units ?: $this->deliverable->units; |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | return $this->setError(elFinder::ERROR_UPLOAD_FILE_MIME, '(' . $mime . ')'); |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - $tmpsize = (int)sprintf('%u', filesize($tmpname)); |
|
| 70 | + $tmpsize = (int) sprintf('%u', filesize($tmpname)); |
|
| 71 | 71 | if ($this->uploadMaxSize > 0 && $tmpsize > $this->uploadMaxSize) { |
| 72 | 72 | return $this->setError(elFinder::ERROR_UPLOAD_FILE_SIZE); |
| 73 | 73 | } |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | $output = [$object->get_label()]; |
| 251 | 251 | |
| 252 | 252 | $parent = $object->get_parent(); |
| 253 | - while ( $parent |
|
| 253 | + while ($parent |
|
| 254 | 254 | && $parent->component == 'org.openpsa.documents') { |
| 255 | 255 | $output[] = $parent->extra; |
| 256 | 256 | $parent = $parent->get_parent(); |
@@ -347,12 +347,12 @@ discard block |
||
| 347 | 347 | $data['mime'] = 'directory'; |
| 348 | 348 | } |
| 349 | 349 | |
| 350 | - if ( $owner |
|
| 350 | + if ($owner |
|
| 351 | 351 | && $group = midcom::get()->auth->get_assignee($owner)) { |
| 352 | 352 | $data['group'] = $group->name; |
| 353 | 353 | } |
| 354 | 354 | |
| 355 | - if ( $this->root !== $path |
|
| 355 | + if ($this->root !== $path |
|
| 356 | 356 | && $parent = $object->get_parent()) { |
| 357 | 357 | $data['phash'] = $this->encode($parent->guid); |
| 358 | 358 | } |
@@ -411,7 +411,7 @@ discard block |
||
| 411 | 411 | * @param string $mode open mode |
| 412 | 412 | * @return resource|false |
| 413 | 413 | */ |
| 414 | - protected function _fopen($path, $mode="rb") |
|
| 414 | + protected function _fopen($path, $mode = "rb") |
|
| 415 | 415 | { |
| 416 | 416 | $document = org_openpsa_documents_document_dba::get_cached($path); |
| 417 | 417 | $attachments = blobs::get_attachments($document, 'document'); |
@@ -429,7 +429,7 @@ discard block |
||
| 429 | 429 | * @param string $path file path |
| 430 | 430 | * @return bool |
| 431 | 431 | */ |
| 432 | - protected function _fclose($fp, $path='') |
|
| 432 | + protected function _fclose($fp, $path = '') |
|
| 433 | 433 | { |
| 434 | 434 | fclose($fp); |
| 435 | 435 | return true; |
@@ -611,7 +611,7 @@ discard block |
||
| 611 | 611 | { |
| 612 | 612 | $filename = midcom_db_attachment::safe_filename($name); |
| 613 | 613 | $att = $doc->create_attachment($filename, $name, $mimetype); |
| 614 | - if ( !$att |
|
| 614 | + if (!$att |
|
| 615 | 615 | || !$att->copy_from_handle($fp)) { |
| 616 | 616 | return false; |
| 617 | 617 | } |
@@ -83,7 +83,8 @@ discard block |
||
| 83 | 83 | |
| 84 | 84 | $this->clearcache(); |
| 85 | 85 | |
| 86 | - if ($file && $file['name'] === $name) { // file exists and check filename for item ID based filesystem |
|
| 86 | + if ($file && $file['name'] === $name) { |
|
| 87 | +// file exists and check filename for item ID based filesystem |
|
| 87 | 88 | if ($this->uploadOverwrite) { |
| 88 | 89 | if (!$file['write']) { |
| 89 | 90 | return $this->setError(elFinder::ERROR_PERM_DENIED); |
@@ -139,11 +140,13 @@ discard block |
||
| 139 | 140 | { |
| 140 | 141 | try { |
| 141 | 142 | return org_openpsa_documents_document_dba::get_cached($path); |
| 142 | - } catch (midcom_error $e) { |
|
| 143 | + } |
|
| 144 | + catch (midcom_error $e) { |
|
| 143 | 145 | $e->log(); |
| 144 | 146 | try { |
| 145 | 147 | return org_openpsa_documents_directory::get_cached($path); |
| 146 | - } catch (midcom_error $e) { |
|
| 148 | + } |
|
| 149 | + catch (midcom_error $e) { |
|
| 147 | 150 | $e->log(); |
| 148 | 151 | } |
| 149 | 152 | } |
@@ -275,7 +278,8 @@ discard block |
||
| 275 | 278 | $object = midcom::get()->dbfactory->get_object_by_guid($path); |
| 276 | 279 | try { |
| 277 | 280 | $parentdir = org_openpsa_documents_directory::get_cached($parent); |
| 278 | - } catch (midcom_error $e) { |
|
| 281 | + } |
|
| 282 | + catch (midcom_error $e) { |
|
| 279 | 283 | $e->log(); |
| 280 | 284 | return false; |
| 281 | 285 | } |
@@ -567,7 +571,8 @@ discard block |
||
| 567 | 571 | try { |
| 568 | 572 | $doc = new org_openpsa_documents_document_dba($path); |
| 569 | 573 | return $doc->delete(); |
| 570 | - } catch (midcom_error) { |
|
| 574 | + } |
|
| 575 | + catch (midcom_error) { |
|
| 571 | 576 | return false; |
| 572 | 577 | } |
| 573 | 578 | } |
@@ -35,11 +35,11 @@ discard block |
||
| 35 | 35 | $resolver |
| 36 | 36 | ->setRequired('schema') |
| 37 | 37 | ->setAllowedTypes('schema', [schema::class, 'string']) |
| 38 | - ->setDefault('action', function (Options $options, $value) { |
|
| 38 | + ->setDefault('action', function(Options $options, $value) { |
|
| 39 | 39 | return $options['schema']->get('action'); |
| 40 | 40 | }); |
| 41 | 41 | |
| 42 | - $resolver->setNormalizer('csrf_protection', function (Options $options, $value) { |
|
| 42 | + $resolver->setNormalizer('csrf_protection', function(Options $options, $value) { |
|
| 43 | 43 | foreach ($options['schema']->get('fields') as $config) { |
| 44 | 44 | if ($config['widget'] === 'csrf') { |
| 45 | 45 | return true; |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | } |
| 48 | 48 | return false; |
| 49 | 49 | }); |
| 50 | - $resolver->setNormalizer('constraints', function (Options $options, $value) { |
|
| 50 | + $resolver->setNormalizer('constraints', function(Options $options, $value) { |
|
| 51 | 51 | $validation = $options['schema']->get('validation'); |
| 52 | 52 | if (!empty($validation)) { |
| 53 | 53 | $cb_wrapper = new cb_wrapper($validation); |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | } |
| 56 | 56 | return $value; |
| 57 | 57 | }); |
| 58 | - $resolver->setNormalizer('schema', function (Options $options, $value) { |
|
| 58 | + $resolver->setNormalizer('schema', function(Options $options, $value) { |
|
| 59 | 59 | if (is_string($value)) { |
| 60 | 60 | $schemadb = schemadb::from_path($value); |
| 61 | 61 | return $schemadb->get_first(); |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | // this is mainly there to skip validation in case the user pressed cancel |
| 81 | 81 | $builder->addEventListener(FormEvents::POST_SUBMIT, function(PostSubmitEvent $event) { |
| 82 | 82 | $form = $event->getForm(); |
| 83 | - if ( $form instanceof Form |
|
| 83 | + if ($form instanceof Form |
|
| 84 | 84 | && $form->getClickedButton() |
| 85 | 85 | && $form->getClickedButton()->getConfig()->getOption('operation') == controller::CANCEL) { |
| 86 | 86 | $event->stopPropagation(); |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | 'max_count' => 0 |
| 39 | 39 | ] |
| 40 | 40 | ]); |
| 41 | - $resolver->setNormalizer('constraints', function (Options $options, $value) { |
|
| 41 | + $resolver->setNormalizer('constraints', function(Options $options, $value) { |
|
| 42 | 42 | $validation = []; |
| 43 | 43 | if ($options['type_config']['max_count'] > 0) { |
| 44 | 44 | $validation['max'] = $options['type_config']['max_count']; |
@@ -51,12 +51,12 @@ discard block |
||
| 51 | 51 | } |
| 52 | 52 | return $validation; |
| 53 | 53 | }); |
| 54 | - $resolver->setNormalizer('entry_options', function (Options $options, $value) { |
|
| 54 | + $resolver->setNormalizer('entry_options', function(Options $options, $value) { |
|
| 55 | 55 | return array_replace([ |
| 56 | 56 | 'widget_config' => $options['widget_config'] |
| 57 | 57 | ], (array) $value); |
| 58 | 58 | }); |
| 59 | - $resolver->setNormalizer('widget_config', function (Options $options, $value) { |
|
| 59 | + $resolver->setNormalizer('widget_config', function(Options $options, $value) { |
|
| 60 | 60 | if (!array_key_exists('sortable', $value)) { |
| 61 | 61 | $value['sortable'] = false; |
| 62 | 62 | } |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | echo " <td>" . $formatter->datetime($revision['date'], IntlDateFormatter::MEDIUM, IntlDateFormatter::LONG) . "</td>\n"; |
| 34 | 34 | echo " <td>"; |
| 35 | 35 | |
| 36 | - if ( $revision['user'] |
|
| 36 | + if ($revision['user'] |
|
| 37 | 37 | && $user = midcom::get()->auth->get_user($revision['user'])) { |
| 38 | 38 | echo $user->get_storage()->name; |
| 39 | 39 | } elseif ($revision['ip']) { |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | //Substyle handling |
| 67 | - if ( !empty($data['message_array']['substyle']) |
|
| 67 | + if (!empty($data['message_array']['substyle']) |
|
| 68 | 68 | && !str_starts_with($data['message_array']['substyle'], 'builtin:')) { |
| 69 | 69 | debug_add("Appending substyle {$data['message_array']['substyle']}"); |
| 70 | 70 | midcom::get()->style->append_substyle($data['message_array']['substyle']); |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | private function _real_show_compose(array $data) |
| 114 | 114 | { |
| 115 | 115 | $prefix = ''; |
| 116 | - if ( !empty($data['message_array']['substyle']) |
|
| 116 | + if (!empty($data['message_array']['substyle']) |
|
| 117 | 117 | && preg_match('/^builtin:(.*)/', $data['message_array']['substyle'], $matches_style)) { |
| 118 | 118 | $prefix = $matches_style[1] . '-'; |
| 119 | 119 | } |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | $images = $qb->execute(); |
| 62 | 62 | $failed = 0; |
| 63 | 63 | foreach ($images as $image) { |
| 64 | - if ( !$image->generate_image('thumbnail', $this->_config->get('thumbnail_filter')) |
|
| 64 | + if (!$image->generate_image('thumbnail', $this->_config->get('thumbnail_filter')) |
|
| 65 | 65 | || !$image->generate_image('image', $this->_config->get('image_filter'))) { |
| 66 | 66 | $failed++; |
| 67 | 67 | } |
@@ -241,7 +241,7 @@ discard block |
||
| 241 | 241 | $attachment->title = $title; |
| 242 | 242 | $attachment->mimetype = $file->getMimeType(); |
| 243 | 243 | $attachment->parentguid = $image->guid; |
| 244 | - if ( !$attachment->create() |
|
| 244 | + if (!$attachment->create() |
|
| 245 | 245 | || !$attachment->copy_from_file($file->getRealPath())) { |
| 246 | 246 | throw new midcom_error('Failed to create attachment: ' . midcom_connection::get_error_string()); |
| 247 | 247 | } |
@@ -123,7 +123,8 @@ |
||
| 123 | 123 | try { |
| 124 | 124 | $this->$function($request->request, $request->files); |
| 125 | 125 | $this->response['success'] = true; |
| 126 | - } catch (midcom_error $e) { |
|
| 126 | + } |
|
| 127 | + catch (midcom_error $e) { |
|
| 127 | 128 | $this->response['success'] = false; |
| 128 | 129 | $this->response['error'] = $e->getMessage(); |
| 129 | 130 | } |
@@ -73,7 +73,8 @@ |
||
| 73 | 73 | if ($stat instanceof midcom_services_indexer_client) { |
| 74 | 74 | try { |
| 75 | 75 | $stat->reindex(); |
| 76 | - } catch (RequestException $e) { |
|
| 76 | + } |
|
| 77 | + catch (RequestException $e) { |
|
| 77 | 78 | if ($e->hasResponse()) { |
| 78 | 79 | $crawler = new Crawler($e->getResponse()->getBody()->getContents()); |
| 79 | 80 | $body = $crawler->filterXPath('//body')->html(); |
@@ -30,11 +30,11 @@ |
||
| 30 | 30 | $object = $dm->get_storage()->get_value(); |
| 31 | 31 | |
| 32 | 32 | $document = $indexer->new_document($dm); |
| 33 | - if ( $config->get('enable_scheduling') |
|
| 33 | + if ($config->get('enable_scheduling') |
|
| 34 | 34 | && $object instanceof org_openpsa_products_product_dba) { |
| 35 | 35 | // Check start/end for products |
| 36 | - if ( $object->start > time() |
|
| 37 | - || ( $object->end != 0 |
|
| 36 | + if ($object->start > time() |
|
| 37 | + || ($object->end != 0 |
|
| 38 | 38 | && $object->end < time())) { |
| 39 | 39 | // Not in market, remove from index |
| 40 | 40 | $indexer->delete($document->RI); |