Blame view

vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php 1.08 KB
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  <?php
  namespace Composer\Installers;
  
  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;
      }
  }