Git-Konfiguration

This commit is contained in:
akarl
2020-01-17 13:33:30 +01:00
parent 91bd94907f
commit fea49714d0
2 changed files with 30 additions and 28 deletions

30
Theme.php Normal file
View File

@@ -0,0 +1,30 @@
<?php
namespace Shopware\Themes\GastroShop;
use Shopware\Components\Form as Form;
class Theme extends \Shopware\Components\Theme
{
protected $extend = 'Responsive';
protected $name = <<<'SHOPWARE_EOD'
Theme Horn Gastronomieshop
SHOPWARE_EOD;
protected $description = <<<'SHOPWARE_EOD'
SHOPWARE_EOD;
protected $author = <<<'SHOPWARE_EOD'
SHOPWARE_EOD;
protected $license = <<<'SHOPWARE_EOD'
SHOPWARE_EOD;
public function createConfig(Form\Container\TabContainer $container)
{
}
}