public function ImceFM::getConf in IMCE 8
Same name and namespace in other branches
- 8.2 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.
File
- src/
ImceFM.php, line 334
Class
- ImceFM
- Imce File Manager.
Namespace
Drupal\imceCode
public function getConf($key, $default = NULL) {
return isset($this->conf[$key]) ? $this->conf[$key] : $default;
}