Show
Ignore:
Timestamp:
01/24/08 22:06:03 (3 years ago)
Author:
pookey
Message:

Changes for the new download page.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • website/lib/model/doctrine/ApiRelease.class.php

    r3054 r3622  
    77class ApiRelease extends BaseApiRelease 
    88{ 
    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  } 
    1023}