protected function ImceFM::init in IMCE 8
Same name and namespace in other branches
- 8.2 src/ImceFM.php \Drupal\imce\ImceFM::init()
Initializes the file manager.
Initializes the file manager by validating the current configuration and request.
1 call to ImceFM::init()
- ImceFM::__construct in src/
ImceFM.php - Constructs the file manager.
File
- src/
ImceFM.php, line 114
Class
- ImceFM
- Imce File Manager.
Namespace
Drupal\imceCode
protected function init() {
if (!isset($this->validated)) {
// Create the root.
$root = $this
->createItem('folder', '.');
$root
->setPath('.');
// Check initialization error.
if ($error = $this
->getInitError()) {
$this
->setMessage($error);
}
else {
$this
->initSelection();
}
$this->validated = $error === FALSE;
}
}