class Psr0FindFile

Finds a class in a PSR-0 structure.

@author Karoly Negyesi <karoly@negyesi.net>

Hierarchy

Expanded class hierarchy of Psr0FindFile

2 files declare their use of Psr0FindFile
AbstractReaderTest.php in drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Annotations/AbstractReaderTest.php
StaticReflectionParserTest.php in drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Reflection/StaticReflectionParserTest.php

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Reflection/Psr0FindFile.php, line 27

Namespace

Doctrine\Common\Reflection
View source
class Psr0FindFile implements ClassFinderInterface {

  /**
   * The PSR-0 prefixes.
   *
   * @var string
   */
  protected $prefixes;

  /**
   * @param string $prefixes
   *     An array of prefixes. Each key is a PHP namespace and each value is
   *     a list of directories.
   */
  public function __construct($prefixes) {
    $this->prefixes = $prefixes;
  }

  /**
   * Finds a class.
   *
   * @param string $class The name of the class.
   *
   * @return
   *     The name of the class or NULL if not found.
   */
  public function findFile($class) {
    $lastNsPos = strrpos($class, '\\');
    if ('\\' == $class[0]) {
      $class = substr($class, 1);
    }
    if (false !== $lastNsPos) {

      // namespaced class name
      $classPath = str_replace('\\', DIRECTORY_SEPARATOR, substr($class, 0, $lastNsPos)) . DIRECTORY_SEPARATOR;
      $className = substr($class, $lastNsPos + 1);
    }
    else {

      // PEAR-like class name
      $classPath = null;
      $className = $class;
    }
    $classPath .= str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php';
    foreach ($this->prefixes as $prefix => $dirs) {
      if (0 === strpos($class, $prefix)) {
        foreach ($dirs as $dir) {
          if (file_exists($dir . DIRECTORY_SEPARATOR . $classPath)) {
            return $dir . DIRECTORY_SEPARATOR . $classPath;
          }
        }
      }
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Psr0FindFile::$prefixes protected property The PSR-0 prefixes.
Psr0FindFile::findFile public function Finds a class. Overrides ClassFinderInterface::findFile
Psr0FindFile::__construct public function