custom/plugins/BrandCrockIndustryarc/src/BrandCrockIndustryarc.php line 24

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. /**
  3.  * To Install Industryarc theme and its Shopping experience elements for the layout design.
  4.  *
  5.  * Copyright (C) BrandCrock GmbH. All rights reserved.
  6.  *
  7.  * If you have found this script useful a small
  8.  * recommendation as well as a comment on our
  9.  * home page(https://brandcrock.com/)
  10.  * would be greatly appreciated.
  11.  *
  12.  * @author  BrandCrock GmbH
  13.  * @package BrandCrockIndustryarc
  14.  * @support support@brandcrock.com
  15.  *
  16.  * License proprietary.
  17.  */
  18. namespace Bc\BrandCrockIndustryarc;
  19. use Shopware\Core\Framework\Plugin;
  20. use Shopware\Storefront\Framework\ThemeInterface;
  21. class BrandCrockIndustryarc extends Plugin implements ThemeInterface
  22. {
  23.     /**
  24.      * Get the theme config path
  25.      * @return string
  26.      */
  27.    public function getThemeConfigPath(): string
  28.    {
  29.        return 'theme.json';
  30.    }
  31. }