custom/static-plugins/product-labels/src/WexoProductLabels.php line 13

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Wexo\ProductLabels;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  5. use Doctrine\DBAL\Connection;
  6. /**
  7.  * Class WexoProductLabels
  8.  * @package Wexo\ProductLabels
  9.  */
  10. class WexoProductLabels extends Plugin
  11. {
  12.     public const LOG_CHANNEL 'product-labels';
  13.     public const PRODUCT_LABEL_UPDATE_SUCCESS 'product-labels.update.success';
  14.     public const PRODUCT_LABEL_UPDATE_ERROR 'product-labels.update.error';
  15.     public const CUSTOM_LABELS_NAME 'customLabels';
  16. }