formatting fixes, bug fixes and support impl.
0
.directory
Normal file → Executable file
|
|
@ -455,7 +455,7 @@ final class ApiController extends Controller
|
|||
$upload->preserveFileName = false;
|
||||
$upload->outputDir = __DIR__ . '/../../../Web/Backend/img';
|
||||
|
||||
$status = $upload->upload($uploadedFiles, 'logo.png', true);
|
||||
$status = $upload->upload($uploadedFiles, ['logo.png'], true);
|
||||
}
|
||||
|
||||
$this->fillJsonResponse($request, $response, NotificationLevel::OK, 'Design', 'Design successfully updated', []);
|
||||
|
|
|
|||
BIN
Docs/Help/img/general/settings-localization-area.png
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
Docs/Help/img/general/settings-localization-length.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
Docs/Help/img/general/settings-localization-numeric.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
Docs/Help/img/general/settings-localization-precision.png
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
Docs/Help/img/general/settings-localization-speed.png
Normal file
|
After Width: | Height: | Size: 8.6 KiB |
BIN
Docs/Help/img/general/settings-localization-time.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
Docs/Help/img/general/settings-localization-volume.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
Docs/Help/img/general/settings-localization-weight.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
Docs/Help/img/general/settings-localization.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
|
|
@ -217,7 +217,7 @@ $l11n = $this->getData('defaultlocalization') ?? new NullLocalization();
|
|||
</div>
|
||||
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<div class="portlet">
|
||||
<div id="settings-localization-time" class="portlet">
|
||||
<div class="portlet-head"><?= $this->getHtml('Time'); ?></div>
|
||||
<div class="portlet-body">
|
||||
<div class="form-group">
|
||||
|
|
@ -260,7 +260,7 @@ $l11n = $this->getData('defaultlocalization') ?? new NullLocalization();
|
|||
</div>
|
||||
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<div class="portlet">
|
||||
<div id="settings-localization-numeric" class="portlet">
|
||||
<div class="portlet-head"><?= $this->getHtml('Numeric'); ?></div>
|
||||
<div class="portlet-body">
|
||||
<div class="form-group">
|
||||
|
|
@ -298,7 +298,7 @@ $l11n = $this->getData('defaultlocalization') ?? new NullLocalization();
|
|||
</div>
|
||||
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<div class="portlet">
|
||||
<div id="settings-localization-precision" class="portlet">
|
||||
<div class="portlet-head"><?= $this->getHtml('Precision'); ?></div>
|
||||
<div class="portlet-body">
|
||||
<div class="form-group">
|
||||
|
|
@ -330,7 +330,7 @@ $l11n = $this->getData('defaultlocalization') ?? new NullLocalization();
|
|||
</div>
|
||||
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<div class="portlet">
|
||||
<div id="settings-localization-weight" class="portlet">
|
||||
<div class="portlet-head"><?= $this->getHtml('Weight'); ?></div>
|
||||
<div class="portlet-body">
|
||||
<div class="form-group">
|
||||
|
|
@ -382,7 +382,7 @@ $l11n = $this->getData('defaultlocalization') ?? new NullLocalization();
|
|||
</div>
|
||||
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<div class="portlet">
|
||||
<div id="settings-localization-speed" class="portlet">
|
||||
<div class="portlet-head"><?= $this->getHtml('Speed'); ?></div>
|
||||
<div class="portlet-body">
|
||||
<div class="form-group">
|
||||
|
|
@ -443,7 +443,7 @@ $l11n = $this->getData('defaultlocalization') ?? new NullLocalization();
|
|||
</div>
|
||||
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<div class="portlet">
|
||||
<div id="settings-localization-length" class="portlet">
|
||||
<div class="portlet-head"><?= $this->getHtml('Length'); ?></div>
|
||||
<div class="portlet-body">
|
||||
<div class="form-group">
|
||||
|
|
@ -504,7 +504,7 @@ $l11n = $this->getData('defaultlocalization') ?? new NullLocalization();
|
|||
</div>
|
||||
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<div class="portlet">
|
||||
<div id="settings-localization-area" class="portlet">
|
||||
<div class="portlet-head"><?= $this->getHtml('Area'); ?></div>
|
||||
<div class="portlet-body">
|
||||
<div class="form-group">
|
||||
|
|
@ -556,7 +556,7 @@ $l11n = $this->getData('defaultlocalization') ?? new NullLocalization();
|
|||
</div>
|
||||
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<div class="portlet">
|
||||
<div id="settings-localization-volume" class="portlet">
|
||||
<div class="portlet-head"><?= $this->getHtml('Volume'); ?></div>
|
||||
<div class="portlet-body">
|
||||
<div class="form-group">
|
||||
|
|
|
|||