1 | <?php |
||
6 | class ExpressionEngineInstaller extends BaseInstaller |
||
7 | { |
||
8 | |||
9 | protected $locations = array(); |
||
10 | |||
11 | private $ee2Locations = array( |
||
12 | 'addon' => 'system/expressionengine/third_party/{$name}/', |
||
13 | 'theme' => 'themes/third_party/{$name}/', |
||
14 | ); |
||
15 | |||
16 | private $ee3Locations = array( |
||
17 | 'addon' => 'system/user/addons/{$name}/', |
||
18 | 'theme' => 'themes/user/{$name}/', |
||
19 | ); |
||
20 | |||
21 | public function getInstallPath(PackageInterface $package, $frameworkType = '') |
||
29 | } |
||
30 |