Horde_Autoloader_ClassPathMapper_Application::mapToPath PHP Method

mapToPath() public method

public mapToPath ( $className )
    public function mapToPath($className)
    {
        if (preg_match($this->_classMatchRegex, $className, $matches)) {
            return $this->_appDir . $this->_mappings[$matches[self::SUFFIX_POS]] . '/' . $matches[self::ACTION_POS] . '.php';
        }
    }
Horde_Autoloader_ClassPathMapper_Application