當前位置: 首頁>>代碼示例>>PHP>>正文


PHP EntityTypeInterface::getDataTable方法代碼示例

本文整理匯總了PHP中Drupal\Core\Entity\EntityTypeInterface::getDataTable方法的典型用法代碼示例。如果您正苦於以下問題:PHP EntityTypeInterface::getDataTable方法的具體用法?PHP EntityTypeInterface::getDataTable怎麽用?PHP EntityTypeInterface::getDataTable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Drupal\Core\Entity\EntityTypeInterface的用法示例。


在下文中一共展示了EntityTypeInterface::getDataTable方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: init

 /**
  * {@inheritdoc}
  */
 public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL)
 {
     parent::init($view, $display, $options);
     $this->entityTypeId = $this->definition['entity_type'];
     $this->entityType = $this->entityManager->getDefinition($this->entityTypeId);
     $this->base_table = $this->entityType->getDataTable() ?: $this->entityType->getBaseTable();
     $this->base_field = $this->entityType->getKey('id');
 }
開發者ID:HakS,項目名稱:drupal8_training,代碼行數:11,代碼來源:EntityRow.php

示例2: processViewsDataForLanguage

 /**
  * Processes the views data for a language field.
  *
  * @param string $table
  *   The table the language field is added to.
  * @param \Drupal\Core\Field\FieldDefinitionInterface $field_definition
  *   The field definition.
  * @param array $views_field
  *   The views field data.
  * @param string $field_column_name
  *   The field column being processed.
  */
 protected function processViewsDataForLanguage($table, FieldDefinitionInterface $field_definition, array &$views_field, $field_column_name)
 {
     // Apply special titles for the langcode field.
     if ($field_definition->getName() == 'langcode') {
         if ($table == $this->entityType->getDataTable() || $table == $this->entityType->getRevisionDataTable()) {
             $views_field['title'] = $this->t('Translation language');
         }
         if ($table == $this->entityType->getBaseTable() || $table == $this->entityType->getRevisionTable()) {
             $views_field['title'] = $this->t('Original language');
         }
     }
 }
開發者ID:davidsoloman,項目名稱:drupalconsole.com,代碼行數:24,代碼來源:EntityViewsData.php

示例3: hasSharedTableNameChanges

 /**
  * Detects whether any table name got renamed in an entity type update.
  *
  * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  *   The new entity type.
  * @param \Drupal\Core\Entity\EntityTypeInterface $original
  *   The origin entity type.
  *
  * @return bool
  *   Returns TRUE if there have been changes.
  */
 protected function hasSharedTableNameChanges(EntityTypeInterface $entity_type, EntityTypeInterface $original)
 {
     return $entity_type->getBaseTable() != $original->getBaseTable() || $entity_type->getDataTable() != $original->getDataTable() || $entity_type->getRevisionTable() != $original->getRevisionTable() || $entity_type->getRevisionDataTable() != $original->getRevisionDataTable();
 }
開發者ID:sgtsaughter,項目名稱:d8portfolio,代碼行數:15,代碼來源:SqlContentEntityStorageSchema.php

示例4: onEntityTypeDelete

 /**
  * {@inheritdoc}
  */
 public function onEntityTypeDelete(EntityTypeInterface $entity_type)
 {
     $tables = [$entity_type->getBaseTable(), $entity_type->getDataTable(), $entity_type->getRevisionTable(), $entity_type->getRevisionDataTable()];
     $all_views = $this->entityManager->getStorage('view')->loadMultiple(NULL);
     /** @var \Drupal\views\Entity\View $view */
     foreach ($all_views as $id => $view) {
         // First check just the base table.
         if (in_array($view->get('base_table'), $tables)) {
             $view->disable();
             $view->save();
         }
     }
 }
開發者ID:aWEBoLabs,項目名稱:taxi,代碼行數:16,代碼來源:ViewsEntitySchemaSubscriber.php

示例5: getViewsTableForEntityType

 /**
  * Gets the table of an entity type to be used as base table in views.
  *
  * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  *   The entity type.
  *
  * @return string
  *   The name of the base table in views.
  */
 protected function getViewsTableForEntityType(EntityTypeInterface $entity_type)
 {
     return $entity_type->getDataTable() ?: $entity_type->getBaseTable();
 }
開發者ID:brstde,項目名稱:gap1,代碼行數:13,代碼來源:EntityViewsData.php


注:本文中的Drupal\Core\Entity\EntityTypeInterface::getDataTable方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。