PEAR_Command_Remote::getDownloader PHP Méthode

getDownloader() public méthode

public getDownloader ( $options )
    function &getDownloader($options)
    {
        if (!class_exists('PEAR_Downloader')) {
            require_once 'PEAR/Downloader.php';
        }
        $a =& new PEAR_Downloader($this->ui, $options, $this->config);
        return $a;
    }