/** @return Array of arrays with class name and path relative to ../classes * describing the actual part inclusion that will be tried for the specified Part. * @param string $partName */ function getPartIncludeTryParams($partName) { $paths = array(); $paths = array_merge( $paths , $this->getTryUseClassTryParams($this->getSpecificPartPrefix($partName).$partName, $this->getDir()) , $this->getTryUseClassTryParams($partName, $this->getDir()) ); return $paths; } |