Changeset 475
- Timestamp:
- 04/11/07 19:39:27 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/util/stubFactory.php
r440 r475 38 38 * return the uris for a resource 39 39 * 40 * @param string $fileName the resource to load 40 * @param string $fileName the resource to retrieve the uris for 41 * @return array<string> 41 42 */ 42 43 public static function getResourceURIs($fileName) … … 54 55 return $uris; 55 56 } 57 58 /** 59 * returns the uri for a resource in the real resource path 60 * 61 * @param string $filename the resource to retrieve the path for 62 * @return string 63 */ 64 public static function getFileResourceURI($fileName) 65 { 66 return self::$resourcePath . $fileName; 67 } 56 68 } 57 69 ?>
