createArchive() public method

Create a representation for a component archive.
public createArchive ( string $archive ) : Components_Component_Archive
$archive string The path to the component archive.
return Components_Component_Archive The archive component.
Esempio n. 1
0
 /**
  * Try to resolve the given name and channel into a component.
  *
  * @param string $name    The name of the component.
  * @param string $channel The channel origin of the component.
  * @param array  $options Additional options.
  *
  * @return Components_Component|boolean The component if the name could be
  *                                      resolved.
  */
 public function resolveName($name, $channel, $options)
 {
     foreach ($this->_getAttempts($options) as $attempt) {
         if ($attempt == 'git' && $channel == 'pear.horde.org') {
             try {
                 $path = $this->_root->getPackageXml($name);
                 return $this->_factory->createSource(dirname($path));
             } catch (Components_Exception $e) {
             }
         }
         if ($attempt == 'snapshot') {
             if ($local = $this->_identifyMatchingLocalPackage($name, $channel, $options)) {
                 return $this->_factory->createArchive($local);
             }
         }
         if (!empty($options['allow_remote'])) {
             $remote = $this->_getRemote($channel);
             if ($remote->getLatestRelease($name, $attempt)) {
                 return $this->_factory->createRemote($name, $attempt, $channel, $remote);
             }
         }
     }
     return false;
 }