do not add anchor for extension config, if no config exists

This commit is contained in:
Uwe Steinmann 2024-04-08 18:01:29 +02:00
parent 9558075a2f
commit b6a1339bd7

View File

@ -613,7 +613,8 @@ if(($kkk = $this->callHook('getFullSearchEngine')) && is_array($kkk))
-->
<?php
foreach($extmgr->getExtensionConfiguration() as $extname=>$extconf) {
echo '<a class="scrollto" data-target="#'.$extname.'">'.$extconf['title']."</a> ● ";
if($extconf['config'])
echo '<a class="scrollto" data-target="#'.$extname.'">'.$extconf['title']."</a> ● ";
}
foreach($extmgr->getExtensionConfiguration() as $extname=>$extconf) {
if($this->hasHook('processConfig'))