OphCoTherapyapplication_FileCollection::getDownloadURL PHP Method

getDownloadURL() public method

return the download url for the compressed file of this collection.
public getDownloadURL ( ) : string
return string URL
    public function getDownloadURL()
    {
        if ($this->compressed_file != null) {
            return $this->compressed_file->getDownloadURL();
        } else {
            return Yii::app()->createURL('OphCoTherapyapplication/Default/DownloadFileCollection', array('id' => $this->id));
        }
    }