You are here

class OctoberInstaller in Zircon Profile 8

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

Hierarchy

Expanded class hierarchy of OctoberInstaller

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

File

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

Namespace

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

  /**
   * Format package name.
   *
   * For package type october-plugin, cut off a trailing '-plugin' if present.
   *
   * For package type october-theme, cut off a trailing '-theme' if present.
   *
   */
  public function inflectPackageVars($vars) {
    if ($vars['type'] === 'october-plugin') {
      return $this
        ->inflectPluginVars($vars);
    }
    if ($vars['type'] === 'october-theme') {
      return $this
        ->inflectThemeVars($vars);
    }
    return $vars;
  }
  protected function inflectPluginVars($vars) {
    $vars['name'] = preg_replace('/-plugin$/', '', $vars['name']);
    return $vars;
  }
  protected function inflectThemeVars($vars) {
    $vars['name'] = preg_replace('/-theme$/', '', $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.
OctoberInstaller::$locations protected property Overrides BaseInstaller::$locations
OctoberInstaller::inflectPackageVars public function Format package name. Overrides BaseInstaller::inflectPackageVars
OctoberInstaller::inflectPluginVars protected function
OctoberInstaller::inflectThemeVars protected function