You are here

class DisplayHelper in Lightning Core 8.2

Same name and namespace in other branches
  1. 8.5 src/DisplayHelper.php \Drupal\lightning_core\DisplayHelper
  2. 8 src/DisplayHelper.php \Drupal\lightning_core\DisplayHelper
  3. 8.3 src/DisplayHelper.php \Drupal\lightning_core\DisplayHelper
  4. 8.4 src/DisplayHelper.php \Drupal\lightning_core\DisplayHelper

Helps query and configure various display settings.

Hierarchy

Expanded class hierarchy of DisplayHelper

1 file declares its use of DisplayHelper
DisplayHelperTest.php in tests/src/Unit/DisplayHelperTest.php
1 string reference to 'DisplayHelper'
lightning_core.services.yml in ./lightning_core.services.yml
lightning_core.services.yml
1 service uses DisplayHelper
lightning.display_helper in ./lightning_core.services.yml
\Drupal\lightning_core\DisplayHelper

File

src/DisplayHelper.php, line 12

Namespace

Drupal\lightning_core
View source
class DisplayHelper {

  /**
   * The entity query factory.
   *
   * @var \Drupal\Core\Entity\Query\QueryFactory
   */
  protected $queryFactory;

  /**
   * The entity field manager.
   *
   * @var \Drupal\Core\Entity\EntityFieldManagerInterface
   */
  protected $entityFieldManager;

  /**
   * DisplayHelper constructor.
   *
   * @param \Drupal\Core\Entity\Query\QueryFactory $query_factory
   *   The entity query factory.
   * @param \Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager
   *   The entity field manager.
   */
  public function __construct(QueryFactory $query_factory, EntityFieldManagerInterface $entity_field_manager) {
    $this->queryFactory = $query_factory;
    $this->entityFieldManager = $entity_field_manager;
  }

  /**
   * Returns the first available preferred view mode.
   *
   * @param string $entity_type
   *   The entity type ID.
   * @param string $bundle
   *   The bundle.
   * @param string[] $preferences
   *   The view mode IDs to check, in descending order of preference.
   *
   * @return string
   *   The first preferred view mode ID that has a view display associated with
   *   it. If there are none, falls back to the default view mode.
   */
  public function getPreferredMode($entity_type, $bundle, array $preferences) {
    $displays = $this->queryFactory
      ->get('entity_view_display')
      ->execute();
    foreach ($preferences as $view_mode) {
      if (in_array($entity_type . '.' . $bundle . '.' . $view_mode, $displays)) {
        return $view_mode;
      }
    }
    return 'default';
  }

  /**
   * Returns the components newly added to a display.
   *
   * @param \Drupal\Core\Entity\Display\EntityDisplayInterface $display
   *   The display config entity.
   *
   * @return array
   *   The newly added components.
   */
  public function getNewComponents(EntityDisplayInterface $display) {
    if (isset($display->original)) {
      return array_diff_key($display
        ->getComponents(), $display->original
        ->getComponents());
    }
    else {
      return [];
    }
  }

  /**
   * Returns newly added field components, optionally filtered by a function.
   *
   * @param \Drupal\Core\Entity\Display\EntityDisplayInterface $display
   *   The display config entity.
   * @param callable|NULL $filter
   *   (optional) The function on which to filter the fields, accepting the
   *   field storage definition as an argument.
   *
   * @return array
   *   The newly added components.
   */
  public function getNewFields(EntityDisplayInterface $display, callable $filter = NULL) {
    $fields = $this->entityFieldManager
      ->getFieldStorageDefinitions($display
      ->getTargetEntityTypeId());
    if ($filter) {
      $fields = array_filter($fields, $filter);
    }
    return array_intersect_key($this
      ->getNewComponents($display), $fields);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DisplayHelper::$entityFieldManager protected property The entity field manager.
DisplayHelper::$queryFactory protected property The entity query factory.
DisplayHelper::getNewComponents public function Returns the components newly added to a display.
DisplayHelper::getNewFields public function Returns newly added field components, optionally filtered by a function.
DisplayHelper::getPreferredMode public function Returns the first available preferred view mode.
DisplayHelper::__construct public function DisplayHelper constructor.