mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 20:21:16 +00:00
call hook checkConfig() which outputs messages in the right column
This commit is contained in:
parent
96423e1388
commit
7610eacf1f
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue
Block a user