You are here

public function ImceFM::__construct in IMCE 8.2

Same name and namespace in other branches
  1. 8 src/ImceFM.php \Drupal\imce\ImceFM::__construct()

Constructs the file manager.

Parameters

array $conf: File manager configuration.

\Drupal\Core\Session\AccountProxyInterface $user: The active user.

\Symfony\Component\HttpFoundation\Request $request: The active request that contains parameters for file manager operations.

File

src/ImceFM.php, line 101

Class

ImceFM
Imce File Manager.

Namespace

Drupal\imce

Code

public function __construct(array $conf, AccountProxyInterface $user = NULL, Request $request = NULL) {
  $this->conf = $conf;
  $this->user = $user ?: \Drupal::currentUser();
  $this->request = $request;
  $this
    ->init();
}