Я пытался программно создать пользовательский тип сущности, но получаю сообщение об ошибке, которое, похоже, не могу понять.Вот мой код:
/ src / Entity / Car.php
namespace Drupal\car\Entity;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Field\BaseFieldDefinition;
use Drupal\Core\Entity\ContentEntityBase;
use Drupal\Core\Entity\EntityChangedTrait;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\user\UserInterface;
/**
* Defines the Car entity.
*
* @ContentEntityType(
* id = "car",
* label = @Translation("Car"),
* handlers = {
* "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
* "list_builder" = "Drupal\car\CarListBuilder",
*
* "form" = {
* "default" = "Drupal\car\Form\CarForm",
* "add" = "Drupal\car\Form\CarForm",
* "edit" = "Drupal\car\Form\CarForm",
* "delete" = "Drupal\car\Form\ContentEntityDeleteForm",
* },
* "route_provider" = {
* "html" = "Drupal\Core\Entity\Routing\AdminHtmlRouteProvider"
* },
* },
* base_table = "car",
* admin_permission = "administer site entities",
* entity_keys = {
* "id" = "id",
* "label" = "name",
* "uuid" = "uuid",
* },
* links = {
* "canonical" = "/admin/structure/car/{car}",
* "add-form" = "/admin/structure/car/add",
* "edit-form" = "/admin/structure/car/{car}/edit",
* "delete-form" = "/admin/structure/car/{car}/delete",
* "collection" = "/admin/structure/car",
* },
* )
*/
class Car extends ContentEntityBase implements CarInterface {
use EntityChangedTrait;
/**
* {@inheritdoc}
*/
public function getName() {
return $this->get('name')->value;
}
/**
* {@inheritdoc}
*/
public function setName($name) {
$this->set('name', $name);
return $this;
}
/**
* {@inheritdoc}
*/
public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
$fields = parent::baseFieldDefinitions($entity_type);
$fields['name'] = BaseFieldDefinition::create('string')
->setLabel(t('Name'))
->setDescription(t('The name of the car entity.'))
->setSettings([
'max_length' => 50,
'text_processing' => 0,
])
->setDefaultValue('')
->setDisplayOptions('view', [
'label' => 'above',
'type' => 'string',
'weight' => -4,
])
->setDisplayOptions('form', [
'type' => 'string_textfield',
'weight' => -4,
])
->setDisplayConfigurable('form', TRUE)
->setDisplayConfigurable('view', TRUE)
->setRequired(TRUE);
$fields['created'] = BaseFieldDefinition::create('created')
->setLabel(t('Created'))
->setDescription(t('The time that the entity was created.'));
$fields['changed'] = BaseFieldDefinition::create('changed')
->setLabel(t('Changed'))
->setDescription(t('The time that the entity was last edited.'));
return $fields;
}
}
/ src / Entity / CarInterface.php
namespace Drupal\car\Entity;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
/**
* Provides an interface for defining Car entities.
*/
interface CarInterface extends ContentEntityInterface, EntityChangedInterface {
/**
* Gets the Car name.
*
* @return string
* Name of the Car.
*/
public function getName();
/**
* Sets the Car name.
*
* @param string $name
* The Car name.
*
* @return \Drupal\car\Entity\CarInterface
* The called Car entity.
*/
public function setName($name);
}
/ car.links.menu.yml
# Car menu items definition
entity.car.collection:
title: 'Car list'
route_name: entity.car.collection
description: 'List Car entities'
parent: system.admin_structure
weight: 100
У меня также есть src / CarListBuilder.php (я думаю, что контент не имеет отношения к проблеме)
Я получаю ошибку:
Маршрут "entity.car.collection" не существует.in ...
Я проверил в таблице маршрутизатора, и похоже, что только четыре из пяти ссылок ("канонические", "add-form", "edit-form", "delete-form")были созданы, но не "коллекцией".
Я проверил код, сгенерированный консолью Drupal: generate: entity: content, но я не могу найти ни в одном коде другое место, где ссылка на коллекцию определена отдельно от аннотации,
Кроме того, еще одна вещь, которую я заметил, это то, что нет "car" base_table.
Что мне здесь не хватает?