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


PHP EntityInterface::isLocked方法代码示例

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


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

示例1: checkAccess

 /**
  * {@inheritdoc}
  */
 protected function checkAccess(EntityInterface $entity, $operation, $langcode, AccountInterface $account)
 {
     if ($operation == 'delete' && $entity->isLocked()) {
         return FALSE;
     }
     return parent::checkAccess($entity, $operation, $langcode, $account);
 }
开发者ID:anatalsceo,项目名称:en-classe,代码行数:10,代码来源:NodeTypeAccessController.php

示例2: checkAccess

 /**
  * {@inheritdoc}
  */
 protected function checkAccess(EntityInterface $entity, $operation, $langcode, AccountInterface $account)
 {
     switch ($operation) {
         case 'delete':
             return AccessResult::allowedIf($account->hasPermission('administer feeds') && !$entity->isLocked());
         default:
             return AccessResult::allowedIfHasPermission($account, 'administer feeds');
     }
 }
开发者ID:Tawreh,项目名称:mtg,代码行数:12,代码来源:FeedTypeAccessControlHandler.php

示例3: checkAccess

 /**
  * {@inheritdoc}
  */
 protected function checkAccess(EntityInterface $entity, $operation, $langcode, AccountInterface $account)
 {
     // There are no restrictions on viewing a date format.
     if ($operation == 'view') {
         return TRUE;
     } elseif (in_array($operation, array('update', 'delete')) && $entity->isLocked()) {
         return FALSE;
     }
     return parent::checkAccess($entity, $operation, $langcode, $account);
 }
开发者ID:anatalsceo,项目名称:en-classe,代码行数:13,代码来源:DateFormatAccessController.php

示例4: checkAccess

 /**
  * {@inheritdoc}
  */
 protected function checkAccess(EntityInterface $feed, $operation, $langcode, AccountInterface $account)
 {
     $has_perm = $account->hasPermission('administer feeds') || $account->hasPermission("{$operation} {$feed->bundle()} feeds");
     switch ($operation) {
         case 'view':
         case 'create':
         case 'update':
             return AccessResult::allowedIf($has_perm);
         case 'import':
         case 'clear':
             return AccessResult::allowedIf($has_perm && !$feed->isLocked());
         case 'unlock':
             return AccessResult::allowedIf($has_perm && $feed->isLocked());
         case 'delete':
             return AccessResult::allowedIf($has_perm && !$feed->isLocked() && !$feed->getItemCount() && !$feed->isNew());
         default:
             return AccessResult::neutral();
     }
 }
开发者ID:Tawreh,项目名称:mtg,代码行数:22,代码来源:FeedAccessControlHandler.php

示例5: checkAccess

 /**
  * {@inheritdoc}
  */
 public function checkAccess(EntityInterface $entity, $operation, AccountInterface $account)
 {
     if ($operation == 'view') {
         // Allow viewing the configuration entity.
         return AccessResult::allowed();
     }
     if ($entity->isLocked()) {
         return AccessResult::forbidden();
     }
     return parent::checkAccess($entity, $operation, $account);
 }
开发者ID:mosswoodcreative,项目名称:d8-api-test,代码行数:14,代码来源:LockableConfigEntityAccessControlHandler.php

示例6: checkAccess

 /**
  * {@inheritdoc}
  */
 protected function checkAccess(EntityInterface $entity, $operation, $langcode, AccountInterface $account)
 {
     if ($operation == 'delete') {
         if ($entity->isLocked()) {
             return AccessResult::forbidden()->cacheUntilEntityChanges($entity);
         } else {
             return parent::checkAccess($entity, $operation, $langcode, $account)->cacheUntilEntityChanges($entity);
         }
     }
     return parent::checkAccess($entity, $operation, $langcode, $account);
 }
开发者ID:davidsoloman,项目名称:drupalconsole.com,代码行数:14,代码来源:NodeTypeAccessControlHandler.php

示例7: buildRow

 /**
  * {@inheritdoc}
  */
 public function buildRow(EntityInterface $entity)
 {
     if ($entity->isLocked()) {
         $row['id'] = $this->t('@entity_id (locked)', array('@entity_id' => $entity->id()));
     } else {
         $row['id'] = $entity->id();
     }
     $row['label'] = $this->getLabel($entity);
     $row['pattern'] = $this->dateFormatter->format(REQUEST_TIME, $entity->id());
     return $row + parent::buildRow($entity);
 }
开发者ID:davidsoloman,项目名称:drupalconsole.com,代码行数:14,代码来源:DateFormatListBuilder.php

示例8: checkAccess

 /**
  * {@inheritdoc}
  */
 protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account)
 {
     if ($operation === 'view') {
         return AccessResult::allowed();
     } elseif ($operation == 'delete') {
         if ($entity->isLocked()) {
             return AccessResult::forbidden()->addCacheableDependency($entity);
         } else {
             return parent::checkAccess($entity, $operation, $account)->addCacheableDependency($entity);
         }
     }
     return parent::checkAccess($entity, $operation, $account);
 }
开发者ID:sojo,项目名称:d8_friendsofsilence,代码行数:16,代码来源:MenuAccessControlHandler.php

示例9: checkAccess

 /**
  * {@inheritdoc}
  */
 protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account)
 {
     switch ($operation) {
         case 'create':
         case 'update':
             return AccessResult::allowedIfHasPermission($account, 'administer site configuration');
         case 'delete':
             if ($entity->isLocked()) {
                 return AccessResult::forbidden();
             }
             return AccessResult::allowedIfHasPermission($account, 'administer site configuration');
     }
     return parent::checkAccess($entity, $operation, $account);
 }
开发者ID:darrylri,项目名称:protovbmwmo,代码行数:17,代码来源:NameFormatAccessController.php

示例10: checkAccess

 /**
  * {@inheritdoc}
  */
 protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account)
 {
     // There are no restrictions on viewing a date format.
     if ($operation == 'view') {
         return AccessResult::allowed();
     } elseif (in_array($operation, array('update', 'delete'))) {
         if ($entity->isLocked()) {
             return AccessResult::forbidden()->addCacheableDependency($entity);
         } else {
             return parent::checkAccess($entity, $operation, $account)->addCacheableDependency($entity);
         }
     }
     return parent::checkAccess($entity, $operation, $account);
 }
开发者ID:aWEBoLabs,项目名称:taxi,代码行数:17,代码来源:DateFormatAccessControlHandler.php

示例11: checkAccess

 /**
  * {@inheritdoc}
  */
 protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account)
 {
     switch ($operation) {
         case 'view':
             return AccessResult::allowedIfHasPermission($account, 'access content');
         case 'delete':
             if ($entity->isLocked()) {
                 return AccessResult::forbidden()->addCacheableDependency($entity);
             } else {
                 return parent::checkAccess($entity, $operation, $account)->addCacheableDependency($entity);
             }
             break;
         default:
             return parent::checkAccess($entity, $operation, $account);
     }
 }
开发者ID:eigentor,项目名称:tommiblog,代码行数:19,代码来源:NodeTypeAccessControlHandler.php

示例12: buildRow

 /**
  * {@inheritdoc}
  */
 public function buildRow(EntityInterface $field_storage)
 {
     if ($field_storage->isLocked()) {
         $row['class'] = array('menu-disabled');
         $row['data']['id'] = $this->t('@field_name (Locked)', array('@field_name' => $field_storage->getName()));
     } else {
         $row['data']['id'] = $field_storage->getName();
     }
     $field_type = $this->fieldTypes[$field_storage->getType()];
     $row['data']['type'] = $this->t('@type (module: @module)', array('@type' => $field_type['label'], '@module' => $field_type['provider']));
     $usage = array();
     foreach ($field_storage->getBundles() as $bundle) {
         $entity_type_id = $field_storage->getTargetEntityTypeId();
         if ($route_info = FieldUI::getOverviewRouteInfo($entity_type_id, $bundle)) {
             $usage[] = \Drupal::l($this->bundles[$entity_type_id][$bundle]['label'], $route_info);
         } else {
             $usage[] = $this->bundles[$entity_type_id][$bundle]['label'];
         }
     }
     $row['data']['usage']['data'] = ['#theme' => 'item_list', '#items' => $usage, '#context' => ['list_style' => 'comma-list']];
     return $row;
 }
开发者ID:eigentor,项目名称:tommiblog,代码行数:25,代码来源:FieldStorageConfigListBuilder.php

示例13: buildRow

 /**
  * {@inheritdoc}
  */
 public function buildRow(EntityInterface $field_storage)
 {
     if ($field_storage->isLocked()) {
         $row['class'] = array('menu-disabled');
         $row['data']['id'] = $this->t('@field_name (Locked)', array('@field_name' => $field_storage->getName()));
     } else {
         $row['data']['id'] = $field_storage->getName();
     }
     $field_type = $this->fieldTypes[$field_storage->getType()];
     $row['data']['type'] = $this->t('@type (module: @module)', array('@type' => $field_type['label'], '@module' => $field_type['provider']));
     $usage = array();
     foreach ($field_storage->getBundles() as $bundle) {
         $entity_type_id = $field_storage->getTargetEntityTypeId();
         if ($route_info = FieldUI::getOverviewRouteInfo($entity_type_id, $bundle)) {
             $usage[] = \Drupal::l($this->bundles[$entity_type_id][$bundle]['label'], $route_info);
         } else {
             $usage[] = $this->bundles[$entity_type_id][$bundle]['label'];
         }
     }
     $usage_escaped = '';
     $separator = '';
     foreach ($usage as $usage_item) {
         $usage_escaped .= $separator . SafeMarkup::escape($usage_item);
         $separator = ', ';
     }
     $row['data']['usage'] = SafeMarkup::set($usage_escaped);
     return $row;
 }
开发者ID:nstielau,项目名称:drops-8,代码行数:31,代码来源:FieldStorageConfigListBuilder.php


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