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


PHP EntityManagerInterface::getViewModeOptionsByBundle方法代码示例

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


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

示例1: buildForm

 /**
  * Form constructor.
  *
  * @param array $form
  *   An associative array containing the structure of the form.
  * @param \Drupal\Core\Form\FormStateInterface $form_state
  *   The current state of the form.
  * @param \Drupal\Core\Entity\EntityInterface $node
  *   The node being previews
  *
  * @return array
  *   The form structure.
  */
 public function buildForm(array $form, FormStateInterface $form_state, EntityInterface $node = NULL)
 {
     $view_mode = $node->preview_view_mode;
     $query_options = $node->isNew() ? array('query' => array('uuid' => $node->uuid())) : array();
     $form['backlink'] = array('#type' => 'link', '#title' => $this->t('Back to content editing'), '#url' => $node->isNew() ? Url::fromRoute('node.add', ['node_type' => $node->bundle()]) : $node->urlInfo('edit-form'), '#options' => array('attributes' => array('class' => array('node-preview-backlink'))) + $query_options);
     $view_mode_options = $this->entityManager->getViewModeOptionsByBundle('node', $node->bundle());
     // Unset view modes that are not used in the front end.
     unset($view_mode_options['rss']);
     unset($view_mode_options['search_index']);
     $form['uuid'] = array('#type' => 'value', '#value' => $node->uuid());
     $form['view_mode'] = array('#type' => 'select', '#title' => $this->t('View mode'), '#options' => $view_mode_options, '#default_value' => $view_mode, '#attributes' => array('data-drupal-autosubmit' => TRUE));
     $form['submit'] = array('#type' => 'submit', '#value' => $this->t('Switch'), '#attributes' => array('class' => array('js-hide')));
     return $form;
 }
开发者ID:eigentor,项目名称:tommiblog,代码行数:27,代码来源:NodePreviewForm.php

示例2: blockForm

 /**
  * Overrides \Drupal\Core\Block\BlockBase::blockForm().
  *
  * Adds body and description fields to the block configuration form.
  */
 public function blockForm($form, FormStateInterface $form_state)
 {
     $uuid = $this->getDerivativeId();
     $block = $this->entityManager->loadEntityByUuid('block_content', $uuid);
     $options = $this->entityManager->getViewModeOptionsByBundle('block_content', $block->bundle());
     $form['view_mode'] = array('#type' => 'select', '#options' => $options, '#title' => $this->t('View mode'), '#description' => $this->t('Output the block in this view mode.'), '#default_value' => $this->configuration['view_mode'], '#access' => count($options) > 1);
     $form['title']['#description'] = $this->t('The title of the block as shown to the user.');
     return $form;
 }
开发者ID:aWEBoLabs,项目名称:taxi,代码行数:14,代码来源:BlockContentBlock.php

示例3: getViewModeOptionsByBundle

 /**
  * {@inheritdoc}
  */
 public function getViewModeOptionsByBundle($entity_type_id, $bundle)
 {
     return $this->entityManager->getViewModeOptionsByBundle($entity_type_id, $bundle);
 }
开发者ID:ddrozdik,项目名称:dmaps,代码行数:7,代码来源:EntityManagerWrapper.php

示例4: getViewModes

 /**
  * Provides a list of comment view modes for the configured comment type.
  *
  * @return array
  *   Associative array keyed by view mode key and having the view mode label
  *   as value.
  */
 protected function getViewModes()
 {
     return $this->entityManager->getViewModeOptionsByBundle('comment', $this->getFieldSetting('comment_type'));
 }
开发者ID:eigentor,项目名称:tommiblog,代码行数:11,代码来源:CommentDefaultFormatter.php


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