pax-1.0.0-rc1/pax.module
pax.module
<?php
use Drupal\pax\ShardingFileStorage;
/**
* Implements hook_entity_type_build().
*/
function pax_entity_type_build(array &$entity_types) {
$key = ShardingFileStorage::PAX_SHARDS;
$entity_types['entity_view_display']->set($key, ['content']);
$entity_types['entity_form_display']->set($key, [
'content',
'third_party_settings.field_group',
]);
$entity_types['field_config']->set($key, ['settings.handler_settings.target_bundles_drag_drop']);
}
