You are here

public function ImceFM::createUri in IMCE 8

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

Creates an uri from a relative path.

1 call to ImceFM::createUri()
ImceFM::getInitError in src/ImceFM.php
Performs the initialization and returns the first error message.

File

src/ImceFM.php, line 313

Class

ImceFM
Imce File Manager.

Namespace

Drupal\imce

Code

public function createUri($path) {
  return Imce::joinPaths($this
    ->getConf('root_uri'), $path);
}