You are here

public function ImceFM::getConf in IMCE 8.2

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

Returns a configuration option.

7 calls to ImceFM::getConf()
ImceFM::createUri in src/ImceFM.php
Creates an uri from a relative path.
ImceFM::getInitError in src/ImceFM.php
Performs the initialization and returns the first error message.
ImceFM::getThumbnailStyle in src/ImceFM.php
Returns thumbnail style.
ImceFM::run in src/ImceFM.php
Runs an operation on the file manager.
ImceFM::scanDir in src/ImceFM.php
Returns the contents of a directory.

... See full list

File

src/ImceFM.php, line 334

Class

ImceFM
Imce File Manager.

Namespace

Drupal\imce

Code

public function getConf($key, $default = NULL) {
  return isset($this->conf[$key]) ? $this->conf[$key] : $default;
}