PluginProbe
Code Snippets / 3.0.0
Code Snippets v3.0.0
4.0.0-beta.2 3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 All 65 releases
code-snippets / vendor / composer / installers / src / Composer / Installers / ShopwareInstaller.php

ShopwareInstaller.php in Code Snippets 3.0.0, at vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php

61 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Composer\Installers;
3
4 /**
5 * Plugin/theme installer for shopware
6 * @author Benjamin Boit
7 */
8 class ShopwareInstaller extends BaseInstaller
9 {
10 protected $locations = array(
11 'backend-plugin' => 'engine/Shopware/Plugins/Local/Backend/{$name}/',
12 'core-plugin' => 'engine/Shopware/Plugins/Local/Core/{$name}/',
13 'frontend-plugin' => 'engine/Shopware/Plugins/Local/Frontend/{$name}/',
14 'theme' => 'templates/{$name}/',
15 'plugin' => 'custom/plugins/{$name}/',
16 'frontend-theme' => 'themes/Frontend/{$name}/',
17 );
18
19 /**
20 * Transforms the names
21 * @param array $vars
22 * @return array
23 */
24 public function inflectPackageVars($vars)
25 {
26 if ($vars['type'] === 'shopware-theme') {
27 return $this->correctThemeName($vars);
28 }
29
30 return $this->correctPluginName($vars);
31 }
32
33 /**
34 * Changes the name to a camelcased combination of vendor and name
35 * @param array $vars
36 * @return array
37 */
38 private function correctPluginName($vars)
39 {
40 $camelCasedName = preg_replace_callback('/(-[a-z])/', function ($matches) {
41 return strtoupper($matches[0][1]);
42 }, $vars['name']);
43
44 $vars['name'] = ucfirst($vars['vendor']) . ucfirst($camelCasedName);
45
46 return $vars;
47 }
48
49 /**
50 * Changes the name to a underscore separated name
51 * @param array $vars
52 * @return array
53 */
54 private function correctThemeName($vars)
55 {
56 $vars['name'] = str_replace('-', '_', $vars['name']);
57
58 return $vars;
59 }
60 }
61