# easy-invoice/2.2.0/includes/Helpers/TaxHelper.php

Easy Invoice – Invoice Generator, PDF Quotes &amp; Payments, version 2.2.0. 18 lines.

- Page: https://pluginprobe.com/plugins/easy-invoice/2.2.0/code/includes/Helpers/TaxHelper.php
- Raw: https://pluginprobe.com/plugins/easy-invoice/2.2.0/raw/includes/Helpers/TaxHelper.php
- Modified: 2025-08-14T09:51:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/easy-invoice/2.2.0/code/includes/Helpers/TaxHelper.php#L10-L20`.

```php
<?php

// Tax Settings Helper Functions
function easy_invoice_get_tax_enabled() {
    return get_option('easy_invoice_tax_enabled', 'no') === 'yes';
}

function easy_invoice_get_tax_entry_method() {
    return get_option('easy_invoice_tax_entry_method', 'exclusive');
}

function easy_invoice_get_tax_rate() {
    return floatval(get_option('easy_invoice_tax_rate', '0'));
}

function easy_invoice_get_tax_name() {
    return get_option('easy_invoice_tax_name', __('Tax', 'easy-invoice'));
}
```
