Components_Component_Factory::createSource PHP Method

createSource() public method

Create a representation for a source component.
public createSource ( string $directory ) : Components_Component_Source
$directory string The directory of the component.
return Components_Component_Source The source component.
    public function createSource($directory)
    {
        $component = new Components_Component_Source($directory, $this->_config, $this);
        if ($this->_first_source === null) {
            $this->_first_source = $component;
        }
        return $component;
    }

Usage Example

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;
 }