⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.45
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
shopware
/
vendor
/
shopware
/
core
/
System
/
Tax
/
Edit File: TaxEvents.php
<?php declare(strict_types=1); namespace Shopware\Core\System\Tax; use Shopware\Core\Framework\Log\Package; #[Package('customer-order')] class TaxEvents { /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityWrittenEvent") */ public const TAX_WRITTEN_EVENT = 'tax.written'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityDeletedEvent") */ public const TAX_DELETED_EVENT = 'tax.deleted'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityLoadedEvent") */ public const TAX_LOADED_EVENT = 'tax.loaded'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchResultLoadedEvent") */ public const TAX_SEARCH_RESULT_LOADED_EVENT = 'tax.search.result.loaded'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityAggregationResultLoadedEvent") */ public const TAX_AGGREGATION_LOADED_EVENT = 'tax.aggregation.result.loaded'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityIdSearchResultLoadedEvent") */ public const TAX_ID_SEARCH_RESULT_LOADED_EVENT = 'tax.id.search.result.loaded'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityWrittenEvent") */ public const TAX_AREA_RULE_WRITTEN_EVENT = 'tax_area_rule.written'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityDeletedEvent") */ public const TAX_AREA_RULE_DELETED_EVENT = 'tax_area_rule.deleted'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityLoadedEvent") */ public const TAX_AREA_RULE_LOADED_EVENT = 'tax_area_rule.loaded'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchResultLoadedEvent") */ public const TAX_AREA_RULE_SEARCH_RESULT_LOADED_EVENT = 'tax_area_rule.search.result.loaded'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityAggregationResultLoadedEvent") */ public const TAX_AREA_RULE_AGGREGATION_LOADED_EVENT = 'tax_area_rule.aggregation.result.loaded'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityIdSearchResultLoadedEvent") */ public const TAX_AREA_RULE_ID_SEARCH_RESULT_LOADED_EVENT = 'tax_area_rule.id.search.result.loaded'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityWrittenEvent") */ public const TAX_AREA_RULE_TRANSLATION_WRITTEN_EVENT = 'tax_area_rule_translation.written'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityDeletedEvent") */ public const TAX_AREA_RULE_TRANSLATION_DELETED_EVENT = 'tax_area_rule_translation.deleted'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityLoadedEvent") */ public const TAX_AREA_RULE_TRANSLATION_LOADED_EVENT = 'tax_area_rule_translation.loaded'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchResultLoadedEvent") */ public const TAX_AREA_RULE_TRANSLATION_SEARCH_RESULT_LOADED_EVENT = 'tax_area_rule_translation.search.result.loaded'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityAggregationResultLoadedEvent") */ public const TAX_AREA_RULE_TRANSLATION_AGGREGATION_LOADED_EVENT = 'tax_area_rule_translation.aggregation.result.loaded'; /** * @Event("Shopware\Core\Framework\DataAbstractionLayer\Event\EntityIdSearchResultLoadedEvent") */ public const TAX_AREA_RULE_TRANSLATION_ID_SEARCH_RESULT_LOADED_EVENT = 'tax_area_rule_translation.id.search.result.loaded'; }
Simpan