カスタムモジュールをインストールしました。
次に、entity: content type
をdrupal generate:entity:content
で作成しました
今、私はエンティティをインストールするためにモジュールを更新しようとしていますが、手掛かりはありません。
コードはエンティティテーブルを探しているため、モジュールをアンインストールすることもできません。
私もhttp://domain.com/admin/modules/update
をチェックインしましたが、アップデートはありません。
.info.yml
でモジュールのバージョンを変更してみましたが、うまくいきません。
drupalに、モジュールの更新が必要であることを知らせるための最良の方法は何ですか?
更新1
私のRewardNotification.php
<?php
namespace Drupal\reward\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 Reward notification entity.
*
* @ingroup reward
*
* @ContentEntityType(
* id = "reward_notification",
* label = @Translation("Reward notification"),
* bundle_label = @Translation("Reward notification type"),
* handlers = {
* "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
* "list_builder" = "Drupal\reward\RewardNotificationListBuilder",
* "views_data" = "Drupal\reward\Entity\RewardNotificationViewsData",
*
* "form" = {
* "default" = "Drupal\reward\Form\RewardNotificationForm",
* "add" = "Drupal\reward\Form\RewardNotificationForm",
* "edit" = "Drupal\reward\Form\RewardNotificationForm",
* "delete" = "Drupal\reward\Form\RewardNotificationDeleteForm",
* },
* "access" = "Drupal\reward\RewardNotificationAccessControlHandler",
* "route_provider" = {
* "html" = "Drupal\reward\RewardNotificationHtmlRouteProvider",
* },
* },
* base_table = "reward_notification",
* admin_permission = "administer reward notification entities",
* entity_keys = {
* "id" = "id",
* "bundle" = "type",
* "label" = "entity_type",
* "uuid" = "uuid",
* "uid" = "user_id",
* "read" = "read",
* },
* links = {
* "canonical" = "/admin/structure/reward_notification/{reward_notification}",
* "add-page" = "/admin/structure/reward_notification/add",
* "add-form" = "/admin/structure/reward_notification/add/{reward_notification_type}",
* "edit-form" = "/admin/structure/reward_notification/{reward_notification}/edit",
* "delete-form" = "/admin/structure/reward_notification/{reward_notification}/delete",
* "collection" = "/admin/structure/reward_notification",
* },
* bundle_entity_type = "reward_notification_type",
* field_ui_base_route = "entity.reward_notification_type.edit_form"
* )
*/
class RewardNotification extends ContentEntityBase implements RewardNotificationInterface {
use EntityChangedTrait;
/**
* {@inheritdoc}
*/
public static function preCreate(EntityStorageInterface $storage_controller, array &$values) {
parent::preCreate($storage_controller, $values);
$values += array(
'user_id' => \Drupal::currentUser()->id(),
);
}
/**
* {@inheritdoc}
*/
public function getType() {
return $this->bundle();
}
/**
* {@inheritdoc}
*/
public function getEntityType() {
return $this->get('entity_type')->value;
}
/**
* {@inheritdoc}
*/
public function setEntityType($entity_type) {
$this->set('entity_type', $entity_type);
return $this;
}
/**
* {@inheritdoc}
*/
public function getEntityId() {
return $this->get('entity_id')->value;
}
/**
* {@inheritdoc}
*/
public function setEntityId($entity_id) {
$this->set('entity_id', $entity_id);
return $this;
}
/**
* {@inheritdoc}
*/
function getValue() {
return $this->get('value')->value;
}
/**
* {@inheritdoc}
*/
function setValue($value) {
return $this->set('value', $value);
}
/**
* {@inheritdoc}
*/
public function getCreatedTime() {
return $this->get('created')->value;
}
/**
* {@inheritdoc}
*/
public function setCreatedTime($timestamp) {
$this->set('created', $timestamp);
return $this;
}
/**
* {@inheritdoc}
*/
public function getOwner() {
return $this->get('user_id')->entity;
}
/**
* {@inheritdoc}
*/
public function getOwnerId() {
return $this->get('user_id')->target_id;
}
/**
* {@inheritdoc}
*/
public function setOwnerId($uid) {
$this->set('user_id', $uid);
return $this;
}
/**
* {@inheritdoc}
*/
public function setOwner(UserInterface $account) {
$this->set('user_id', $account->id());
return $this;
}
/**
* {@inheritdoc}
*/
public function getRead() {
return (bool) $this->getEntityKey('read');
}
/**
* {@inheritdoc}
*/
public function setRead($read) {
$this->set('read', $read ? TRUE : FALSE);
return $this;
}
/**
* {@inheritdoc}
*/
public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
$fields = parent::baseFieldDefinitions($entity_type);
$fields['user_id'] = BaseFieldDefinition::create('entity_reference')
->setLabel(t('Authored by'))
->setDescription(t('The user ID of author of the Reward notification entity.'))
->setRevisionable(TRUE)
->setSetting('target_type', 'user')
->setSetting('handler', 'default')
->setTranslatable(TRUE)
->setDisplayOptions('view', array(
'label' => 'hidden',
'type' => 'author',
'weight' => 0,
))
->setDisplayOptions('form', array(
'type' => 'entity_reference_autocomplete',
'weight' => 5,
'settings' => array(
'match_operator' => 'CONTAINS',
'size' => '60',
'autocomplete_type' => 'tags',
'placeholder' => '',
),
))
->setDisplayConfigurable('form', TRUE)
->setDisplayConfigurable('view', TRUE);
$fields['uuid'] = BaseFieldDefinition::create('uuid')
->setLabel(t('UUID'))
->setDescription(t('The notification UUID.'))
->setReadOnly(TRUE);
$fields['type'] = BaseFieldDefinition::create('entity_reference')
->setLabel(t('Type'))
->setDescription(t('The notification type.'))
->setSetting('target_type', 'reward_notification_type')
->setReadOnly(TRUE);
$fields['entity_type'] = BaseFieldDefinition::create('string')
->setLabel(t('Entity Type'))
->setDescription(t('The type from the notified entity.'))
->setDefaultValue('node')
->setSettings(array(
'max_length' => 64
))
->setRequired(TRUE);
$fields['entity_id'] = BaseFieldDefinition::create('entity_reference')
->setLabel(t('Notified entity'))
->setDescription(t('The ID from the notified entity'))
->setDefaultValue(0)
->setRequired(TRUE);
$fields['value'] = BaseFieldDefinition::create('float')
->setLabel(t('Value'))
->setDescription(t('The numeric value of the notification.'))
->setDefaultValue(0)
->setRequired(FALSE);
$fields['read'] = BaseFieldDefinition::create('boolean')
->setLabel(t('Has user viewed notification'))
->setDescription(t('A boolean indicating whether the Notification is visited.'))
->setDefaultValue(FALSE);
$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;
}
}
これを行うにはいくつかの異なる方法があり、私はあなたの設定が完全にわからないので、ここにそれらすべてをリストしますが、以下の#3はおそらくあなたの状況に必要なものです。エンティティを作成する方法は非常にたくさんあるので、さまざまな方法を一覧表示すると、あなたや将来の誰かを助けることができると思いました。
これはおそらくあなたが望むものではありませんが、この方法で単純な更新を書くのはかなり簡単なので、ここに追加します。私があなたを正しく理解しているかどうかは完全にはわかりませんが、カスタムモジュールで更新を実行しようとしている、または実行する必要がある場合は、モジュールに必要な更新を含む更新フックが必要です。したがって、 hook_update_N()
を使用できます。モジュールに更新が存在することは一般的なDrupalタスクであり、アプリケーション/サイトのカスタムモジュールを構築する場合は、各環境(Dev、Test、Prod、Local )必要に応じて。hook_update_N()
は更新システムと統合され、「N」はマイナーバージョンの変更を表すため、更新コマンドが実行されると、Drupalはこれらのフックを探しますそして、そのときに実行する必要があるバージョンを実行します。通常は、MODULENAME_update_8001()
または同様の何かで開始し、将来的に変更するたびに番号をインクリメントして、更新は次の各更新コマンドを取得しますこれにより、基本的な更新を行う上での基本的な理由がわかります。ほぼすべてのdb更新をこの方法で実行できますが、私が言ったように、これはおそらく単なる追加情報です。
構成システムを使用して、エンティティフィールドを変更し、構成の更新を実行できます。これは非常に基本的な方法であり、複数のサイトで実行する必要があるモジュールにはあまり使用できません。
モジュールにエンティティを登録し、src/Entity/ENTITYNAME.phpでスキーマを宣言している場合、これはスキーマを制御するファイルであり、モジュールの初期インストール時にテーブルがセットアップされます。エンティティスキーマファイルを追加する前にモジュールを有効にしていない場合は、drush updatedb --entity-updates
またはdrupal update:entities
を使用して、開発中または変更のデプロイ中に新しいエンティティまたはエンティティに対して行った更新を取得できます。 。ドキュメンテーションの例は Drupal 8 でコンテンツエンティティタイプを作成する)にあります。その例を読むだけで、必要なその他の情報が得られます。この問題。
また、エンティティを作成したと言いました。コマンドラインから実行したと思いますが、そのタスクを自動化したいと思います。 3番目のポイントでエンティティ情報をモジュールに追加するためのリンクを提供しました。具体的には、src/Entity/Contact.phpセクションを確認してください。このセクションが存在している必要があります。次に、エンティティ更新コマンドを実行してエンティティを登録します。 Drupalが新しいエンティティークラスを登録するように、そのプロセス中にキャッシュを再構築する必要があるかもしれません。これは基本的なエンティティーマネージャータスクです;これを実行すると、他のいかなるものにも戻れなくなります方法 エンティティチートシート も参照してください。
以下を使用できます。
drush updatedb --entity-updates
--entity-updates
更新フックの最後にエンティティスキーマの自動更新を実行します。
カスタムモジュールのエンティティ/フィールド定義を変更した場合、これを更新にすばやく適用できます。