uawdijnntqw1x1x1
IP : 216.73.216.127
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
craftcms
/
commerce
/
src
/
test
/
..
/
engines
/
Tax.php
/
/
<?php /** * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ namespace craft\commerce\engines; use craft\base\Component; use craft\commerce\adjusters\Tax as TaxAdjuster; use craft\commerce\base\TaxEngineInterface; /** * Class Tax * * @package craft\commerce\engines * @since 3.1 */ class Tax extends Component implements TaxEngineInterface { /** * @inheritDoc */ public static function displayName(): string { return 'Commerce Tax Engine'; } public function taxAdjusterClass(): string { return TaxAdjuster::class; } /** * @inheritDoc */ public function viewTaxCategories(): bool { return true; } /** * @inheritDoc */ public function createTaxCategories(): bool { return true; } /** * @inheritDoc */ public function editTaxCategories(): bool { return true; } /** * @inheritDoc */ public function deleteTaxCategories(): bool { return true; } public function taxCategoryActionHtml(): string { return ''; } /** * @inheritDoc */ public function viewTaxZones(): bool { return true; } /** * @inheritDoc */ public function editTaxZones(): bool { return true; } /** * @inheritDoc */ public function createTaxZones(): bool { return true; } /** * @inheritDoc */ public function deleteTaxZones(): bool { return true; } /** * @inheritDoc */ public function taxZoneActionHtml(): string { return ''; } /** * @inheritDoc */ public function viewTaxRates(): bool { return true; } /** * @inheritDoc */ public function createTaxRates(): bool { return true; } /** * @inheritDoc */ public function deleteTaxRates(): bool { return true; } /** * @inheritDoc */ public function editTaxRates(): bool { return true; } /** * @inheritDoc */ public function taxRateActionHtml(): string { return ''; } /** * @inheritDoc */ public function cpTaxNavSubItems(): array { return []; } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/craftcms/commerce/src/test/../engines/Tax.php