Created
June 25, 2018 07:14
-
-
Save xndrdev/840379becb69e86d302e23be1eeec74c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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