Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save spolischook/bb5209272e1023345d0a to your computer and use it in GitHub Desktop.

Select an option

Save spolischook/bb5209272e1023345d0a to your computer and use it in GitHub Desktop.
Get all documents from DocumentManager
<?php
$this->dm = $this->getContainer()->get('doctrine.odm.mongodb.document_manager');
$meta = $this->dm->getMetadataFactory()->getAllMetadata();
$documents = array();
foreach ($meta as $m) {
$documents[] = $m->getName();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment