# depicter/1.5.2/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php

Depicter — Popup &amp; Slider Builder, version 1.5.2. 30 lines.

- Page: https://pluginprobe.com/plugins/depicter/1.5.2/code/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php
- Raw: https://pluginprobe.com/plugins/depicter/1.5.2/raw/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php
- Modified: 2022-06-01T06:26:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/depicter/1.5.2/code/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php#L10-L20`.

```php
<?php
namespace Composer\Installers;

use Composer\Package\PackageInterface;

class ExpressionEngineInstaller extends BaseInstaller
{

    protected $locations = array();

    private $ee2Locations = array(
        'addon'   => 'system/expressionengine/third_party/{$name}/',
        'theme'   => 'themes/third_party/{$name}/',
    );

    private $ee3Locations = array(
        'addon'   => 'system/user/addons/{$name}/',
        'theme'   => 'themes/user/{$name}/',
    );

    public function getInstallPath(PackageInterface $package, $frameworkType = '')
    {

        $version = "{$frameworkType}Locations";
        $this->locations = $this->$version;

        return parent::getInstallPath($package, $frameworkType);
    }
}

```
