当前位置: 首页>>代码示例>>PHP>>正文


PHP FieldStorageDefinitionInterface::isRevisionable方法代码示例

本文整理汇总了PHP中Drupal\Core\Field\FieldStorageDefinitionInterface::isRevisionable方法的典型用法代码示例。如果您正苦于以下问题:PHP FieldStorageDefinitionInterface::isRevisionable方法的具体用法?PHP FieldStorageDefinitionInterface::isRevisionable怎么用?PHP FieldStorageDefinitionInterface::isRevisionable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Drupal\Core\Field\FieldStorageDefinitionInterface的用法示例。


在下文中一共展示了FieldStorageDefinitionInterface::isRevisionable方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: createFromFieldStorageDefinition

 /**
  * Creates a new field definition based upon a field storage definition.
  *
  * In cases where one needs a field storage definitions to act like full
  * field definitions, this creates a new field definition based upon the
  * (limited) information available. That way it is possible to use the field
  * definition in places where a full field definition is required; e.g., with
  * widgets or formatters.
  *
  * @param \Drupal\Core\Field\FieldStorageDefinitionInterface $definition
  *   The field storage definition to base the new field definition upon.
  *
  * @return $this
  */
 public static function createFromFieldStorageDefinition(FieldStorageDefinitionInterface $definition)
 {
     return static::create($definition->getType())->setCardinality($definition->getCardinality())->setConstraints($definition->getConstraints())->setCustomStorage($definition->hasCustomStorage())->setDescription($definition->getDescription())->setLabel($definition->getLabel())->setName($definition->getName())->setProvider($definition->getProvider())->setQueryable($definition->isQueryable())->setRequired($definition->isRequired())->setRevisionable($definition->isRevisionable())->setSettings($definition->getSettings())->setTargetEntityTypeId($definition->getTargetEntityTypeId())->setTranslatable($definition->isTranslatable());
 }
开发者ID:anatalsceo,项目名称:en-classe,代码行数:18,代码来源:FieldDefinition.php

示例2: requiresFieldStorageSchemaChanges

 /**
  * {@inheritdoc}
  */
 public function requiresFieldStorageSchemaChanges(FieldStorageDefinitionInterface $storage_definition, FieldStorageDefinitionInterface $original)
 {
     $table_mapping = $this->storage->getTableMapping();
     if ($storage_definition->hasCustomStorage() != $original->hasCustomStorage() || $storage_definition->getSchema() != $original->getSchema() || $storage_definition->isRevisionable() != $original->isRevisionable() || $table_mapping->allowsSharedTableStorage($storage_definition) != $table_mapping->allowsSharedTableStorage($original) || $table_mapping->requiresDedicatedTableStorage($storage_definition) != $table_mapping->requiresDedicatedTableStorage($original)) {
         return TRUE;
     }
     if ($storage_definition->hasCustomStorage()) {
         // The field has custom storage, so we don't know if a schema change is
         // needed or not, but since per the initial checks earlier in this
         // function, nothing about the definition changed that we manage, we
         // return FALSE.
         return FALSE;
     }
     return $this->getSchemaFromStorageDefinition($storage_definition) != $this->loadFieldSchemaData($original);
 }
开发者ID:sgtsaughter,项目名称:d8portfolio,代码行数:18,代码来源:SqlContentEntityStorageSchema.php

示例3: requiresFieldStorageSchemaChanges

 /**
  * {@inheritdoc}
  */
 public function requiresFieldStorageSchemaChanges(FieldStorageDefinitionInterface $storage_definition, FieldStorageDefinitionInterface $original)
 {
     $table_mapping = $this->storage->getTableMapping();
     if ($storage_definition->hasCustomStorage() != $original->hasCustomStorage() || $storage_definition->getSchema() != $original->getSchema() || $storage_definition->isRevisionable() != $original->isRevisionable() || $table_mapping->allowsSharedTableStorage($storage_definition) != $table_mapping->allowsSharedTableStorage($original) || $table_mapping->requiresDedicatedTableStorage($storage_definition) != $table_mapping->requiresDedicatedTableStorage($original)) {
         return TRUE;
     }
     if ($table_mapping->requiresDedicatedTableStorage($storage_definition)) {
         return $this->getDedicatedTableSchema($storage_definition) != $this->loadFieldSchemaData($original);
     } elseif ($table_mapping->allowsSharedTableStorage($storage_definition)) {
         $field_name = $storage_definition->getName();
         $schema = array();
         foreach (array_diff($table_mapping->getTableNames(), $table_mapping->getDedicatedTableNames()) as $table_name) {
             if (in_array($field_name, $table_mapping->getFieldNames($table_name))) {
                 $column_names = $table_mapping->getColumnNames($storage_definition->getName());
                 $schema[$table_name] = $this->getSharedTableFieldSchema($storage_definition, $table_name, $column_names);
             }
         }
         return $schema != $this->loadFieldSchemaData($original);
     } else {
         // The field has custom storage, so we don't know if a schema change is
         // needed or not, but since per the initial checks earlier in this
         // function, nothing about the definition changed that we manage, we
         // return FALSE.
         return FALSE;
     }
 }
开发者ID:RealLukeMartin,项目名称:drupal8tester,代码行数:29,代码来源:SqlContentEntityStorageSchema.php


注:本文中的Drupal\Core\Field\FieldStorageDefinitionInterface::isRevisionable方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。