Created
May 29, 2019 15:55
-
-
Save DanLaufer/3c1fe3caf49f7a7ad113cc160317c0c5 to your computer and use it in GitHub Desktop.
Drupal 8 - PHP Script to list all fields on all content types of a certain type (ex. text_long)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// get node types | |
$node_types = \Drupal::entityTypeManager() | |
->getStorage('node_type') | |
->loadMultiple(); | |
$entityManager = \Drupal::service('entity_field.manager'); | |
// for each content type, get the text_long fields for that content type | |
foreach(array_keys($node_types) as $key => $value) { | |
print_r(PHP_EOL . PHP_EOL . $value . PHP_EOL); | |
$fields = $entityManager->getFieldDefinitions("node", $value); | |
$text_long_fields = array_filter( | |
$fields, | |
function ($field_value, $field_key) { | |
// only keep fields of type 'text_long' | |
return (strpos($field_value->getType(), 'text_long') > -1); | |
}, ARRAY_FILTER_USE_BOTH | |
); | |
print_r(array_keys($text_long_fields)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment