Skip to content

Instantly share code, notes, and snippets.

@xndrdev
Created June 25, 2018 07:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xndrdev/840379becb69e86d302e23be1eeec74c to your computer and use it in GitHub Desktop.
Save xndrdev/840379becb69e86d302e23be1eeec74c to your computer and use it in GitHub Desktop.
<?php
namespace Shopware\Themes\DEINTHEME;
use Shopware\Components\Form as Form;
class Theme extends \Shopware\Components\Theme
{
protected $extend = 'Responsive';
protected $name = <<<'SHOPWARE_EOD'
DEINTHEME
SHOPWARE_EOD;
protected $description = <<<'SHOPWARE_EOD'
SHOPWARE_EOD;
protected $author = <<<'SHOPWARE_EOD'
SHOPWARE_EOD;
protected $license = <<<'SHOPWARE_EOD'
SHOPWARE_EOD;
protected $css = [
'src/css/hover-min.css'
];
public function createConfig(Form\Container\TabContainer $container)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment