30 lines
521 B
PHP
30 lines
521 B
PHP
|
<?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)
|
||
|
{
|
||
|
}
|
||
|
}
|