Changeset 3622 for website/lib/model/doctrine/ApiRelease.class.php
- Timestamp:
- 01/24/08 22:06:03 (3 years ago)
- Files:
-
- 1 modified
-
website/lib/model/doctrine/ApiRelease.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
website/lib/model/doctrine/ApiRelease.class.php
r3054 r3622 7 7 class ApiRelease extends BaseApiRelease 8 8 { 9 9 public function getPackageFileName() 10 { 11 return 'Doctrine' . $this->getName() . '.tgz'; 12 } 13 14 public function getPackageRoute() 15 { 16 return 'htp://www.phpdoctrine.org/download/' . $this->getPackageFileName(); 17 } 18 19 public function getSvnUrl() 20 { 21 return 'http://svn.phpdoctrine.org' . $this->getSvnPath(); 22 } 10 23 }