
| Current Path : /var/www/html/store/web/modules/contrib/commerce/modules/tax/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/store/web/modules/contrib/commerce/modules/tax/commerce_tax.module |
<?php
/**
* @file
* Provides tax functionality.
*/
use Drupal\commerce_tax\TaxableType;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Field\BaseFieldDefinition;
use Drupal\Core\Form\FormStateInterface;
use Drupal\field\FieldStorageConfigInterface;
/**
* Implements hook_theme().
*/
function commerce_tax_theme($existing, $type, $theme, $path) {
return [
'commerce_tax_resources' => [
'variables' => [],
],
];
}
/**
* Implements hook_entity_base_field_info().
*/
function commerce_tax_entity_base_field_info(EntityTypeInterface $entity_type) {
if ($entity_type->id() === 'commerce_store') {
$fields['prices_include_tax'] = BaseFieldDefinition::create('boolean')
->setLabel(t('Prices are entered with taxes included.'))
->setDisplayOptions('form', [
'type' => 'boolean_checkbox',
'settings' => [
'display_label' => TRUE,
],
'weight' => 3,
])
->setDisplayConfigurable('view', TRUE)
->setDisplayConfigurable('form', TRUE)
->setDefaultValue(FALSE);
$fields['tax_registrations'] = BaseFieldDefinition::create('list_string')
->setLabel(t('Tax registrations'))
->setDescription(t('The countries where the store is additionally registered to collect taxes.'))
->setCardinality(BaseFieldDefinition::CARDINALITY_UNLIMITED)
->setSetting('allowed_values_function', ['\Drupal\commerce_store\Entity\Store', 'getAvailableCountries'])
->setDisplayOptions('form', [
'type' => 'options_select',
'weight' => 4,
])
->setDisplayConfigurable('view', TRUE)
->setDisplayConfigurable('form', TRUE);
return $fields;
}
}
/**
* Implements hook_ENTITY_TYPE_access().
*
* Forbids the profile "tax_number" field from being deletable.
* This is an alternative to locking the field which still leaves
* the field editable.
*/
function commerce_tax_field_storage_config_access(FieldStorageConfigInterface $field_storage, $operation) {
if ($field_storage->id() == 'profile.tax_number' && $operation == 'delete') {
return AccessResult::forbidden();
}
return AccessResult::neutral();
}
/**
* Implements hook_form_BASE_FORM_ID_alter() for 'commerce_store_form'.
*/
function commerce_tax_form_commerce_store_form_alter(&$form, FormStateInterface $form_state) {
if (isset($form['prices_include_tax']) || isset($form['tax_registrations'])) {
$form['tax_settings'] = [
'#type' => 'details',
'#title' => t('Tax settings'),
'#weight' => 90,
'#open' => TRUE,
'#group' => 'advanced',
];
$form['prices_include_tax']['#group'] = 'tax_settings';
$form['tax_registrations']['#group'] = 'tax_settings';
}
}
/**
* Implements hook_form_FORM_ID_alter() for 'commerce_order_item_type_form'.
*/
function commerce_tax_form_commerce_order_item_type_form_alter(array &$form, FormStateInterface $form_state) {
/** @var \Drupal\commerce_order\Entity\OrderTypeInterface $order_item_type */
$order_item_type = $form_state->getFormObject()->getEntity();
$form['commerce_tax'] = [
'#type' => 'container',
'#weight' => 5,
];
$form['commerce_tax']['taxable_type'] = [
'#type' => 'select',
'#title' => t('Taxable type'),
'#options' => TaxableType::getLabels(),
'#default_value' => $order_item_type->getThirdPartySetting('commerce_tax', 'taxable_type', TaxableType::getDefault()),
'#required' => TRUE,
];
$form['actions']['submit']['#submit'][] = 'commerce_tax_order_item_type_form_submit';
}
/**
* Submission handler for commerce_tax_form_commerce_order_item_type_form_alter().
*/
function commerce_tax_order_item_type_form_submit($form, FormStateInterface $form_state) {
/** @var \Drupal\commerce_order\Entity\OrderTypeInterface $order_item_type */
$order_item_type = $form_state->getFormObject()->getEntity();
$settings = $form_state->getValue(['commerce_tax']);
$order_item_type->setThirdPartySetting('commerce_tax', 'taxable_type', $settings['taxable_type']);
$order_item_type->save();
}
/**
* Implements hook_field_formatter_info_alter().
*/
function commerce_tax_field_formatter_info_alter(array &$info) {
$info['string']['field_types'][] = 'commerce_tax_number';
}
/**
* Implements hook_field_widget_info_alter().
*/
function commerce_tax_field_widget_info_alter(array &$info) {
$info['string_textfield']['field_types'][] = 'commerce_tax_number';
}