You are here

public function TaxRate::isIncludedInPrice in Ubercart 8.4

Whether to display prices including tax.

Return value

bool TRUE if display prices include tax.

Overrides TaxRateInterface::isIncludedInPrice

File

uc_tax/src/Entity/TaxRate.php, line 230

Class

TaxRate
Defines a tax rate configuration entity.

Namespace

Drupal\uc_tax\Entity

Code

public function isIncludedInPrice() {
  return (bool) $this->display_include;
}