| 1 | <?php |
||
| 6 | class SilverStripeInstaller extends BaseInstaller |
||
| 7 | { |
||
| 8 | protected $locations = array( |
||
| 9 | 'module' => '{$name}/', |
||
| 10 | 'theme' => 'themes/{$name}/', |
||
| 11 | ); |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Return the install path based on package type. |
||
| 15 | * |
||
| 16 | * Relies on built-in BaseInstaller behaviour with one exception: silverstripe/framework |
||
| 17 | * must be installed to 'sapphire' and not 'framework' if the version is <3.0.0 |
||
| 18 | * |
||
| 19 | * @param PackageInterface $package |
||
| 20 | * @param string $frameworkType |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | public function getInstallPath(PackageInterface $package, $frameworkType = '') |
||
| 35 | } |
||
| 36 |