StoreType.php in Commerce Core 8.2
Namespace
Drupal\commerce_store\EntityFile
modules/store/src/Entity/StoreType.phpView source
<?php
namespace Drupal\commerce_store\Entity;
use Drupal\commerce\Entity\CommerceBundleEntityBase;
/**
* Defines the store type entity class.
*
* @ConfigEntityType(
* id = "commerce_store_type",
* label = @Translation("Store type", context = "Commerce"),
* label_collection = @Translation("Store types", context = "Commerce"),
* label_singular = @Translation("store type", context = "Commerce"),
* label_plural = @Translation("store types", context = "Commerce"),
* label_count = @PluralTranslation(
* singular = "@count store type",
* plural = "@count store types",
* context = "Commerce",
* ),
* handlers = {
* "access" = "Drupal\commerce\CommerceBundleAccessControlHandler",
* "list_builder" = "Drupal\commerce_store\StoreTypeListBuilder",
* "form" = {
* "add" = "Drupal\commerce_store\Form\StoreTypeForm",
* "edit" = "Drupal\commerce_store\Form\StoreTypeForm",
* "duplicate" = "Drupal\commerce_store\Form\StoreTypeForm",
* "delete" = "Drupal\commerce\Form\CommerceBundleEntityDeleteFormBase"
* },
* "local_task_provider" = {
* "default" = "Drupal\entity\Menu\DefaultEntityLocalTaskProvider",
* },
* "route_provider" = {
* "default" = "Drupal\entity\Routing\DefaultHtmlRouteProvider",
* },
* },
* admin_permission = "administer commerce_store_type",
* config_prefix = "commerce_store_type",
* bundle_of = "commerce_store",
* entity_keys = {
* "id" = "id",
* "label" = "label",
* "uuid" = "uuid",
* },
* config_export = {
* "id",
* "label",
* "uuid",
* "description",
* "traits",
* "locked",
* },
* links = {
* "add-form" = "/admin/commerce/config/store-types/add",
* "edit-form" = "/admin/commerce/config/store-types/{commerce_store_type}/edit",
* "duplicate-form" = "/admin/commerce/config/store-types/{commerce_store_type}/duplicate",
* "delete-form" = "/admin/commerce/config/store-types/{commerce_store_type}/delete",
* "collection" = "/admin/commerce/config/store-types",
* }
* )
*/
class StoreType extends CommerceBundleEntityBase implements StoreTypeInterface {
/**
* A brief description of this store type.
*
* @var string
*/
protected $description;
/**
* {@inheritdoc}
*/
public function getDescription() {
return $this->description;
}
/**
* {@inheritdoc}
*/
public function setDescription($description) {
$this->description = $description;
return $this;
}
}