Skip to content

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

View source

Public Methods ​

MethodDescription
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

View source

createTaxCategories() ​

Whether Craft Commerce should allow tax categories to be created by users.

will not be called if viewTaxCategories is returned as false;

View source

createTaxRates() ​

Whether Craft Commerce should allow tax rates to be created by users.

will not be called if viewTaxRates is returned as false;

View source

createTaxZones() ​

Whether Craft Commerce should allow tax zones to be created by users.

will not be called if viewTaxZones is returned as false;

View source

deleteTaxCategories() ​

Whether Craft Commerce should allow tax categories to be deleted.

will not be called if viewTaxCategories is returned as false;

View source

deleteTaxRates() ​

Whether Craft Commerce should allow tax rates to be deleted.

will not be called if viewTaxRates is returned as false;

View source

deleteTaxZones() ​

Whether Craft Commerce should allow tax zones to be deleted.

will not be called if viewTaxZones is returned as false;

View source

editTaxCategories() ​

Whether Craft Commerce should allow tax categories to be edited.

will not be called if viewTaxCategories is returned as false;

View source

editTaxRates() ​

Whether Craft Commerce should allow tax rates to be edited.

will not be called if viewTaxRates is returned as false;

View source

editTaxZones() ​

Whether Craft Commerce should allow tax zones to be edited.

will not be called if viewTaxZones is returned as false;

View source

taxAdjusterClass() ​

Return class name for the Adjuster to be used for tax

View source

taxCategoryActionHtml() ​

Any action html to be added to the tax categories index header

View source

taxRateActionHtml() ​

Any action html to be added to the tax rates index header

View source

taxZoneActionHtml() ​

Any action html to be added to the tax zones index header

View source

viewTaxCategories() ​

Whether Craft Commerce should show the tax categories interface and allow tax categories to be edited.

View source

viewTaxRates() ​

Whether Craft Commerce should show the tax rates interface and allow tax rates to be edited.

View source

viewTaxZones() ​

Whether Craft Commerce should show the tax zones interface and allow tax zones to be edited.

View source