call hook checkConfig() which outputs messages in the right column

This commit is contained in:
Uwe Steinmann 2023-04-28 11:23:01 +02:00
parent 96423e1388
commit 7610eacf1f

View File

@ -730,6 +730,11 @@ if(is_writeable($settings->_configFilePath)) {
if($settings->_enableLargeFileUpload && $mus2 < $mus1) {
$this->warningMsg(getMLText("settings_partionsize_below_max_filesize"));
}
foreach($extmgr->getExtensionConfiguration() as $extname=>$extconf) {
if($this->hasHook('checkConfig'))
$this->callHook('checkConfig', $extname, $extconf);
}
$this->columnEnd(4);
$this->rowEnd(4);
$this->contentEnd();