ProtectedFile::beforeDelete PHP Method

beforeDelete() public method

ensure we keep track of path to file before deleting from database.
See also: BaseActiveRecord::beforeDelete()
public beforeDelete ( ) : boolean
return boolean (non-PHPdoc)
    public function beforeDelete()
    {
        $this->_stored_path = $this->getPath();
        return parent::beforeDelete();
    }