TaxEngineInterface ​
- Type
- Interface
- Namespace
- craft\commerce\base
- Extends
- craft\base\ComponentInterface
- Implemented by
- craft\commerce\engines\Tax, craft\commerce\services\Taxes
- Since
- 3.1
Tax Engine Interface
Public Methods ​
| Method | Description |
|---|---|
| cpTaxNavSubItems() | The tax subNav items |
| createTaxCategories() | Whether Craft Commerce should allow tax categories to be created by users. |
| createTaxRates() | Whether Craft Commerce should allow tax rates to be created by users. |
| createTaxZones() | Whether Craft Commerce should allow tax zones to be created by users. |
| deleteTaxCategories() | Whether Craft Commerce should allow tax categories to be deleted. |
| deleteTaxRates() | Whether Craft Commerce should allow tax rates to be deleted. |
| deleteTaxZones() | Whether Craft Commerce should allow tax zones to be deleted. |
| displayName() | Returns the display name of this class. |
| editTaxCategories() | Whether Craft Commerce should allow tax categories to be edited. |
| editTaxRates() | Whether Craft Commerce should allow tax rates to be edited. |
| editTaxZones() | Whether Craft Commerce should allow tax zones to be edited. |
| extraFields() | Returns the list of additional fields that can be returned by toArray() in addition to those listed in fields(). |
| fields() | Returns the list of fields that should be returned by default by toArray() when no specific fields are specified. |
| instance() | Returns static class instance, which can be used to obtain meta information. |
| isSelectable() | Returns whether the component should be selectable in component Type selects. |
| taxAdjusterClass() | Return class name for the Adjuster to be used for tax |
| taxCategoryActionHtml() | Any action html to be added to the tax categories index header |
| taxRateActionHtml() | Any action html to be added to the tax rates index header |
| taxZoneActionHtml() | Any action html to be added to the tax zones index header |
| toArray() | Converts the object into an array. |
| viewTaxCategories() | Whether Craft Commerce should show the tax categories interface and allow tax categories to be edited. |
| viewTaxRates() | Whether Craft Commerce should show the tax rates interface and allow tax rates to be edited. |
| viewTaxZones() | Whether Craft Commerce should show the tax zones interface and allow tax zones to be edited. |
cpTaxNavSubItems() ​
The tax subNav items
createTaxCategories() ​
Whether Craft Commerce should allow tax categories to be created by users.
will not be called if viewTaxCategories is returned as false;
createTaxRates() ​
Whether Craft Commerce should allow tax rates to be created by users.
will not be called if viewTaxRates is returned as false;
createTaxZones() ​
Whether Craft Commerce should allow tax zones to be created by users.
will not be called if viewTaxZones is returned as false;
deleteTaxCategories() ​
Whether Craft Commerce should allow tax categories to be deleted.
will not be called if viewTaxCategories is returned as false;
deleteTaxRates() ​
Whether Craft Commerce should allow tax rates to be deleted.
will not be called if viewTaxRates is returned as false;
deleteTaxZones() ​
Whether Craft Commerce should allow tax zones to be deleted.
will not be called if viewTaxZones is returned as false;
editTaxCategories() ​
Whether Craft Commerce should allow tax categories to be edited.
will not be called if viewTaxCategories is returned as false;
editTaxRates() ​
Whether Craft Commerce should allow tax rates to be edited.
will not be called if viewTaxRates is returned as false;
editTaxZones() ​
Whether Craft Commerce should allow tax zones to be edited.
will not be called if viewTaxZones is returned as false;
taxAdjusterClass() ​
Return class name for the Adjuster to be used for tax
taxCategoryActionHtml() ​
Any action html to be added to the tax categories index header
taxRateActionHtml() ​
Any action html to be added to the tax rates index header
taxZoneActionHtml() ​
Any action html to be added to the tax zones index header
viewTaxCategories() ​
Whether Craft Commerce should show the tax categories interface and allow tax categories to be edited.
viewTaxRates() ​
Whether Craft Commerce should show the tax rates interface and allow tax rates to be edited.
viewTaxZones() ​
Whether Craft Commerce should show the tax zones interface and allow tax zones to be edited.