class RoundcubeInstaller in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php \Composer\Installers\RoundcubeInstaller
Hierarchy
- class \Composer\Installers\BaseInstaller
- class \Composer\Installers\RoundcubeInstaller
Expanded class hierarchy of RoundcubeInstaller
File
- vendor/
composer/ installers/ src/ Composer/ Installers/ RoundcubeInstaller.php, line 4
Namespace
Composer\InstallersView source
class RoundcubeInstaller extends BaseInstaller {
protected $locations = array(
'plugin' => 'plugins/{$name}/',
);
/**
* Lowercase name and changes the name to a underscores
*
* @param array $vars
* @return array
*/
public function inflectPackageVars($vars) {
$vars['name'] = strtolower(str_replace('-', '_', $vars['name']));
return $vars;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BaseInstaller:: |
protected | property | ||
BaseInstaller:: |
protected | property | ||
BaseInstaller:: |
public | function | Return the install path based on package type. | 1 |
BaseInstaller:: |
public | function | Gets the installer's locations | 1 |
BaseInstaller:: |
protected | function | Search through a passed paths array for a custom install path. | |
BaseInstaller:: |
protected | function | Replace vars in a path | |
BaseInstaller:: |
public | function | Initializes base installer. | |
RoundcubeInstaller:: |
protected | property |
Overrides BaseInstaller:: |
|
RoundcubeInstaller:: |
public | function |
Lowercase name and changes the name to a underscores Overrides BaseInstaller:: |