You are here

class GravInstaller in Zircon Profile 8

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

Hierarchy

Expanded class hierarchy of GravInstaller

1 file declares its use of GravInstaller
GravInstallerTest.php in vendor/composer/installers/tests/Composer/Installers/Test/GravInstallerTest.php

File

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

Namespace

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

  /**
   * Format package name
   *
   * @param array $vars
   *
   * @return array
   */
  public function inflectPackageVars($vars) {
    $restrictedWords = implode('|', array_keys($this->locations));
    $vars['name'] = strtolower($vars['name']);
    $vars['name'] = preg_replace('/^(?:grav-)?(?:(?:' . $restrictedWords . ')-)?(.*?)(?:-(?:' . $restrictedWords . '))?$/ui', '$1', $vars['name']);
    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.
GravInstaller::$locations protected property Overrides BaseInstaller::$locations
GravInstaller::inflectPackageVars public function Format package name Overrides BaseInstaller::inflectPackageVars