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

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

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