custom/plugins/mzmudaDetailPage/src/mzmudaDetailPage.php line 12

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Mzmuda\mzmudaDetailPage;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  5. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  6. use Symfony\Component\Config\FileLocator;
  7. use Symfony\Component\DependencyInjection\ContainerBuilder;
  8. use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
  9. class mzmudaDetailPage extends Plugin
  10. {
  11.     public function build(ContainerBuilder $container): void
  12.     {
  13.         parent::build($container);
  14.     }
  15.     /**
  16.      * @param InstallContext $installContext
  17.      */
  18.     public function install(InstallContext $installContext): void
  19.     {
  20.     }
  21.     /**
  22.      * @param UninstallContext $uninstallContext
  23.      */
  24.     public function uninstall(Plugin\Context\UninstallContext $uninstallContext): void
  25.     {
  26.         parent::uninstall($uninstallContext);
  27.         if ($uninstallContext->keepUserData()) {
  28.             return;
  29.         }
  30.     }
  31. }