You are here

class ShopwareInstaller in Zircon Profile 8

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

Plugin/theme installer for shopware @author Benjamin Boit

Hierarchy

Expanded class hierarchy of ShopwareInstaller

File

vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php, line 8

Namespace

Composer\Installers
View source
class ShopwareInstaller extends BaseInstaller {
  protected $locations = array(
    'backend-plugin' => 'engine/Shopware/Plugins/Local/Backend/{$name}/',
    'core-plugin' => 'engine/Shopware/Plugins/Local/Core/{$name}/',
    'frontend-plugin' => 'engine/Shopware/Plugins/Local/Frontend/{$name}/',
    'theme' => 'templates/{$name}/',
  );

  /**
   * Transforms the names
   * @param  array $vars
   * @return array
   */
  public function inflectPackageVars($vars) {
    if ($vars['type'] === 'shopware-theme') {
      return $this
        ->correctThemeName($vars);
    }
    else {
      return $this
        ->correctPluginName($vars);
    }
  }

  /**
   * Changes the name to a camelcased combination of vendor and name
   * @param  array $vars
   * @return array
   */
  private function correctPluginName($vars) {
    $camelCasedName = preg_replace_callback('/(-[a-z])/', function ($matches) {
      return strtoupper($matches[0][1]);
    }, $vars['name']);
    $vars['name'] = ucfirst($vars['vendor']) . ucfirst($camelCasedName);
    return $vars;
  }

  /**
   * Changes the name to a underscore separated name
   * @param  array $vars
   * @return array
   */
  private function correctThemeName($vars) {
    $vars['name'] = str_replace('-', '_', $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.
ShopwareInstaller::$locations protected property Overrides BaseInstaller::$locations
ShopwareInstaller::correctPluginName private function Changes the name to a camelcased combination of vendor and name
ShopwareInstaller::correctThemeName private function Changes the name to a underscore separated name
ShopwareInstaller::inflectPackageVars public function Transforms the names Overrides BaseInstaller::inflectPackageVars