You are here

ProductAttributeDeleteForm.php in Commerce Core 8.2

File

modules/product/src/Form/ProductAttributeDeleteForm.php
View source
<?php

namespace Drupal\commerce_product\Form;

use Drupal\Core\Entity\EntityDeleteForm;

/**
 * Builds the form to delete a product attribute.
 */
class ProductAttributeDeleteForm extends EntityDeleteForm {

  /**
   * {@inheritdoc}
   */
  public function getDescription() {
    return $this
      ->t('Deleting a product attribute will delete all of its values. This action cannot be undone.');
  }

}

Classes

Namesort descending Description
ProductAttributeDeleteForm Builds the form to delete a product attribute.