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 / AsgardInstaller.php

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

50 lines 1.3 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 class AsgardInstaller extends BaseInstaller
5 {
6 protected $locations = array(
7 'module' => 'Modules/{$name}/',
8 'theme' => 'Themes/{$name}/'
9 );
10
11 /**
12 * Format package name.
13 *
14 * For package type asgard-module, cut off a trailing '-plugin' if present.
15 *
16 * For package type asgard-theme, cut off a trailing '-theme' if present.
17 *
18 */
19 public function inflectPackageVars($vars)
20 {
21 if ($vars['type'] === 'asgard-module') {
22 return $this->inflectPluginVars($vars);
23 }
24
25 if ($vars['type'] === 'asgard-theme') {
26 return $this->inflectThemeVars($vars);
27 }
28
29 return $vars;
30 }
31
32 protected function inflectPluginVars($vars)
33 {
34 $vars['name'] = preg_replace('/-module$/', '', $vars['name']);
35 $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
36 $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
37
38 return $vars;
39 }
40
41 protected function inflectThemeVars($vars)
42 {
43 $vars['name'] = preg_replace('/-theme$/', '', $vars['name']);
44 $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
45 $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
46
47 return $vars;
48 }
49 }
50