Issue #2933777 by Rajeshreeputra, Berdir, ridhimaabrol24: REST/Serializer improvements in...
1 open thread
Closes #3001618
Merge request reports
Activity
added 5 commits
-
1a65ed37...674b4caf - 4 commits from branch
project:2.0.x
- 440b85f9 - Add drush dcer --bundles option to limit export
-
1a65ed37...674b4caf - 4 commits from branch
61 64 * @option folder Folder to export to, entities are grouped by entity type into directories. 62 65 * @aliases dcer 63 66 */ 64 public function contentExportReferences($entity_type_id, $entity_id = NULL, $options = ['folder' => NULL]) { 67 public function contentExportReferences($entity_type_id, $entity_id = NULL, $options = [ 68 'folder' => NULL, 69 'bundles' => NULL, 70 ]) { 65 71 $folder = $options['folder']; 66 72 if (is_null($entity_id)) { 67 $entities = \Drupal::entityQuery($entity_type_id)->accessCheck(FALSE)->execute(); 73 /** @var \Drupal\Core\Entity\EntityStorageInterface $storage */ 74 $storage = \Drupal::entityTypeManager()->getStorage($entity_type_id);
Please register or sign in to reply