-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dennis Eichhorn
committed
May 12, 2024
1 parent
c8152cc
commit e246180
Showing
14 changed files
with
218 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[ | ||
{ | ||
"name": "item_demo_download", | ||
"l11n": { | ||
"en": "Item Download", | ||
"de": "Artikel Download" | ||
} | ||
}, | ||
{ | ||
"name": "item_private_download", | ||
"l11n": { | ||
"en": "Private Item Download", | ||
"de": "Privater Artikel Download" | ||
} | ||
}, | ||
{ | ||
"name": "item_purchase_download", | ||
"l11n": { | ||
"en": "Purchased Download", | ||
"de": "Gekaufter Download" | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
/** | ||
* Jingga | ||
* | ||
* PHP Version 8.2 | ||
* | ||
* @package Modules\ItemManagement\Admin\Install | ||
* @copyright Dennis Eichhorn | ||
* @license OMS License 2.0 | ||
* @version 1.0.0 | ||
* @link https://jingga.app | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Modules\ItemManagement\Admin\Install; | ||
|
||
use phpOMS\Application\ApplicationAbstract; | ||
|
||
/** | ||
* Tag class. | ||
* | ||
* @package Modules\ItemManagement\Admin\Install | ||
* @license OMS License 2.0 | ||
* @link https://jingga.app | ||
* @since 1.0.0 | ||
*/ | ||
class Tag | ||
{ | ||
/** | ||
* Install media providing | ||
* | ||
* @param ApplicationAbstract $app Application | ||
* @param string $path Module path | ||
* | ||
* @return void | ||
* | ||
* @since 1.0.0 | ||
*/ | ||
public static function install(ApplicationAbstract $app, string $path) : void | ||
{ | ||
\Modules\Tag\Admin\Installer::installExternal($app, ['path' => __DIR__ . '/Tag.install.json']); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.