initial import of SmcShipcloudLive skeleton

This commit is contained in:
Harald Welte 2022-06-24 15:00:27 +02:00
commit 94950fd8f0
4 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{
"name": "swag/plugin-skeleton",
"description": "Skeleton plugin",
"type": "shopware-platform-plugin",
"license": "MIT",
"autoload": {
"psr-4": {
"SmcShipcloudLive\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "SmcShipcloudLive\\SmcShipcloudLive",
"label": {
"de-DE": "Skeleton plugin",
"en-GB": "Skeleton plugin"
}
}
}

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/shopware/platform/trunk/src/Core/System/SystemConfig/Schema/config.xsd">
<card>
<title>#SmcShipcloudLive# Settings</title>
<title lang="de-DE">#SmcShipcloudLive# Einstellungen</title>
<input-field type="bool">
<name>active</name>
<label>Active</label>
<label lang="de-DE">Aktiviert</label>
</input-field>
</card>
</config>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<services>
</services>
</container>

View File

@ -0,0 +1,9 @@
<?php declare(strict_types=1);
namespace SmcShipcloudLive;
use Shopware\Core\Framework\Plugin;
class SmcShipcloudLive extends Plugin
{
}