You are here

search_api_solr_devel.module in Search API Solr 4.x

Same filename and directory in other branches
  1. 8.3 modules/search_api_solr_devel/search_api_solr_devel.module

File

modules/search_api_solr_devel/search_api_solr_devel.module
View source
<?php

/**
 * Implements hook_entity_type_alter().
 */
function search_api_solr_devel_entity_type_alter(array &$entity_types) {

  /** @var $entity_types \Drupal\Core\Entity\EntityTypeInterface[] */
  foreach ($entity_types as $entity_type_id => $entity_type) {
    if ($entity_type
      ->hasLinkTemplate('devel-render') || $entity_type
      ->hasLinkTemplate('devel-load')) {
      $entity_type
        ->setLinkTemplate('devel-solr', "/devel/{$entity_type_id}/{{$entity_type_id}}/solr");
    }
  }
}