30 lines
576 B
PHP
30 lines
576 B
PHP
<?php
|
|
|
|
namespace Shopware\Themes\THW;
|
|
|
|
use Shopware\Components\Form as Form;
|
|
|
|
class Theme extends \Shopware\Components\Theme
|
|
{
|
|
protected $extend = 'Responsive';
|
|
|
|
protected $name = <<<'SHOPWARE_EOD'
|
|
THW Template
|
|
SHOPWARE_EOD;
|
|
|
|
protected $description = <<<'SHOPWARE_EOD'
|
|
Überschreibt Template dinge definiert
|
|
SHOPWARE_EOD;
|
|
|
|
protected $author = <<<'SHOPWARE_EOD'
|
|
BlubbFish
|
|
SHOPWARE_EOD;
|
|
|
|
protected $license = <<<'SHOPWARE_EOD'
|
|
|
|
SHOPWARE_EOD;
|
|
|
|
public function createConfig(Form\Container\TabContainer $container)
|
|
{
|
|
}
|
|
} |