mirror of
https://github.com/Karaka-Management/oms-Media.git
synced 2026-02-12 15:28:41 +00:00
fix php version, lang files, basic tpl and sales impl.
This commit is contained in:
parent
78f0f3753d
commit
2a15ff4b77
1
Theme/Backend/Lang/de.lang.php
Executable file → Normal file
1
Theme/Backend/Lang/de.lang.php
Executable file → Normal file
|
|
@ -4,6 +4,7 @@
|
||||||
*
|
*
|
||||||
* PHP Version 8.0
|
* PHP Version 8.0
|
||||||
*
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
* @copyright Dennis Eichhorn
|
* @copyright Dennis Eichhorn
|
||||||
* @license OMS License 1.0
|
* @license OMS License 1.0
|
||||||
* @version 1.0.0
|
* @version 1.0.0
|
||||||
|
|
|
||||||
5
Theme/Backend/Lang/en.lang.php
Executable file → Normal file
5
Theme/Backend/Lang/en.lang.php
Executable file → Normal file
|
|
@ -4,6 +4,7 @@
|
||||||
*
|
*
|
||||||
* PHP Version 8.0
|
* PHP Version 8.0
|
||||||
*
|
*
|
||||||
|
* @package Modules\Localization
|
||||||
* @copyright Dennis Eichhorn
|
* @copyright Dennis Eichhorn
|
||||||
* @license OMS License 1.0
|
* @license OMS License 1.0
|
||||||
* @version 1.0.0
|
* @version 1.0.0
|
||||||
|
|
@ -13,7 +14,7 @@ declare(strict_types=1);
|
||||||
|
|
||||||
return ['Media' => [
|
return ['Media' => [
|
||||||
'Account' => 'Account',
|
'Account' => 'Account',
|
||||||
'Add' => '',
|
'Add' => 'Add',
|
||||||
'AddToCollection' => 'Add to collection',
|
'AddToCollection' => 'Add to collection',
|
||||||
'Author' => 'Author',
|
'Author' => 'Author',
|
||||||
'Back' => 'Back',
|
'Back' => 'Back',
|
||||||
|
|
@ -30,7 +31,7 @@ return ['Media' => [
|
||||||
'Extension' => 'Extension',
|
'Extension' => 'Extension',
|
||||||
'FilePath' => 'File Path',
|
'FilePath' => 'File Path',
|
||||||
'Files' => 'Files',
|
'Files' => 'Files',
|
||||||
'GroupUser' => '',
|
'GroupUser' => 'Group User',
|
||||||
'Media' => 'Media',
|
'Media' => 'Media',
|
||||||
'Name' => 'Name',
|
'Name' => 'Name',
|
||||||
'Path' => 'Path',
|
'Path' => 'Path',
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ echo $this->getData('nav')->render();
|
||||||
<?php if ($this->request->getData('path') !== null) : ?>
|
<?php if ($this->request->getData('path') !== null) : ?>
|
||||||
<a tabindex="0" class="button" href="<?= UriFactory::build('{/prefix}media/list?path=' . ($media->getId() === 0 ? $media->getVirtualPath() : '{?path}')); ?>"><?= $this->getHtml('Back'); ?></a>
|
<a tabindex="0" class="button" href="<?= UriFactory::build('{/prefix}media/list?path=' . ($media->getId() === 0 ? $media->getVirtualPath() : '{?path}')); ?>"><?= $this->getHtml('Back'); ?></a>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<a tabindex="0" class="button" href="<?= UriFactory::build('{/prefix}media/list'); ?>"><?= $this->getHtml('Back'); ?></a>
|
<a tabindex="0" class="button" href="<?= $this->request->getReferer() !== '' ? $this->request->getReferer() : UriFactory::build('{/prefix}media/list'); ?>"><?= $this->getHtml('Back'); ?></a>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user