You are here

class HuradInstaller in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/composer/installers/src/Composer/Installers/HuradInstaller.php \Composer\Installers\HuradInstaller

Hierarchy

Expanded class hierarchy of HuradInstaller

File

vendor/composer/installers/src/Composer/Installers/HuradInstaller.php, line 4

Namespace

Composer\Installers
View source
class HuradInstaller extends BaseInstaller {
  protected $locations = array(
    'plugin' => 'plugins/{$name}/',
    'theme' => 'plugins/{$name}/',
  );

  /**
   * Format package name to CamelCase
   */
  public function inflectPackageVars($vars) {
    $nameParts = explode('/', $vars['name']);
    foreach ($nameParts as &$value) {
      $value = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $value));
      $value = str_replace(array(
        '-',
        '_',
      ), ' ', $value);
      $value = str_replace(' ', '', ucwords($value));
    }
    $vars['name'] = implode('/', $nameParts);
    return $vars;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BaseInstaller::$composer protected property
BaseInstaller::$package protected property
BaseInstaller::getInstallPath public function Return the install path based on package type. 1
BaseInstaller::getLocations public function Gets the installer's locations 1
BaseInstaller::mapCustomInstallPaths protected function Search through a passed paths array for a custom install path.
BaseInstaller::templatePath protected function Replace vars in a path
BaseInstaller::__construct public function Initializes base installer.
HuradInstaller::$locations protected property Overrides BaseInstaller::$locations
HuradInstaller::inflectPackageVars public function Format package name to CamelCase Overrides BaseInstaller::inflectPackageVars