public function AnnotationDriver::getAllClassNames

Gets the names of all mapped classes known to this driver.

Return value

array The names of all mapped classes known to this driver.

Overrides MappingDriver::getAllClassNames

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/AnnotationDriver.php, line 164

Class

AnnotationDriver
The AnnotationDriver reads the mapping metadata from docblock annotations.

Namespace

Doctrine\Common\Persistence\Mapping\Driver

Code

public function getAllClassNames() {
  if ($this->classNames !== null) {
    return $this->classNames;
  }
  if (!$this->paths) {
    throw MappingException::pathRequired();
  }
  $classes = array();
  $includedFiles = array();
  foreach ($this->paths as $path) {
    if (!is_dir($path)) {
      throw MappingException::fileMappingDriversRequireConfiguredDirectoryPath($path);
    }
    $iterator = new \RegexIterator(new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path, \FilesystemIterator::SKIP_DOTS), \RecursiveIteratorIterator::LEAVES_ONLY), '/^.+' . str_replace('.', '\\.', $this->fileExtension) . '$/i', \RecursiveRegexIterator::GET_MATCH);
    foreach ($iterator as $file) {
      $sourceFile = realpath($file[0]);
      require_once $sourceFile;
      $includedFiles[] = $sourceFile;
    }
  }
  $declared = get_declared_classes();
  foreach ($declared as $className) {
    $rc = new \ReflectionClass($className);
    $sourceFile = $rc
      ->getFileName();
    if (in_array($sourceFile, $includedFiles) && !$this
      ->isTransient($className)) {
      $classes[] = $className;
    }
  }
  $this->classNames = $classes;
  return $classes;
}